From 958e7853d0031e5020e5a8b7754805a8a93018f0 Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 22 Feb 2021 16:31:59 -0800 Subject: [PATCH 001/696] initial docs + tailwind config --- .gitignore | 13 + CHANGELOG.md | 5 + CONTRIBUTING.md | 68 ++ README.md | 85 +++ docs/index.html | 1528 ++++++++++++++++++++++++++++++++++++++++++++ package.json | 52 ++ postcss.config.js | 7 + tailwind.config.js | 226 +++++++ tailwind.css | 3 + 9 files changed, 1987 insertions(+) create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 CONTRIBUTING.md create mode 100644 README.md create mode 100644 docs/index.html create mode 100644 package.json create mode 100644 postcss.config.js create mode 100644 tailwind.config.js create mode 100644 tailwind.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..85e070862c1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Logs +logs +*.log + +# Dependency directory +# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- +node_modules + +# macOS metadata +.DS_Store + +dist/ +docs/tailwind.css diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000000..d6637e04998 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000000..1d3f58ddb51 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,68 @@ +# Contributing to calcite-tailwind + +You want to contribute? Nice! Below are some guidelines for ensuring that your contribution makes sense for everybody. + +## Reporting Issues + +Found a problem? Want a new feature? + +- See if your issue or idea has [already been reported](issues). +- Provide detailed reproduction instructions as well as what behavior is expected. + +## Submitting Pull Requests + +Pull requests are the greatest contributions, so be sure they are focused in scope. + +1. To begin, [fork this project](fork), clone your fork, and add our upstream. +```bash +# Clone your fork of the repo into the current directory +git clone https://github.com//calcite-tailwind +# Navigate to the newly cloned directory +cd calcite-tailwind +# Assign the original repo to a remote called "upstream" +git remote add upstream https://github.com/esri/calcite-tailwind +# Install the tools necessary for development +npm install +``` + +2. Create a branch for your feature or fix: +```bash +# Move into a new branch for a feature +git checkout -b feature/thing +``` +```bash +# Move into a new branch for a fix +git checkout -b fix/something +``` + +3. Start up a local development server: +```bash +# Use the start script to run the default dev environment +npm start +``` + +4. Be sure your code follows our practices. +```bash +# Test current code +npm run test +``` + +5. Push your branch up to your fork: +```bash +# Push a feature branch +git push origin feature/thing +``` +```bash +# Push a fix branch +git push origin fix/something +``` + +6. Now [open a pull request](https://help.github.com/articles/using-pull-requests/) with a clear title and description. + +## Bumping the Version + +1. Change the version number in `package.json` to the desired version number. +2. Write a description of the changes, additions, and bug fixes in `CHANGELOG.md`. +3. Run `npm run dist` to make sure the `dist/` files are updated. +4. Make sure `Esri/calcite-tailwind` is up-to-date with your changes (via Pull Request). +5. Run `npm run release`. If prompted enter your GitHub credentials. diff --git a/README.md b/README.md new file mode 100644 index 00000000000..a1e45c22555 --- /dev/null +++ b/README.md @@ -0,0 +1,85 @@ +# Calcite Base + +The calcite-tailwind repository holds the tailwind configuration used to build calcite-components. + +## Install + +If you use npm, installation is as easy as: + +``` +npm install @esri/calcite-tailwind +``` + +You can also [download the latest release manually](https://github.com/Esri/calcite-tailwind/releases). + +_Note_: this project assumes you have the light and dark theme variables defined on your page. If you're using calcite components, these will already be defined for you. If not, please see [calcite-colors](https://github.com/Esri/calcite-colors/) for steps on how to import the theme. + +### PostCSS/Tailwind + +To add Calcite's Tailwind configuration to your project you can simply import it in your `tailwind.config.js` file: + +```js +var calciteTheme = require("@esri/calcite-tailwind/tailwind.config"); + +module.exports = { + purge: ["./public/**/*.html"], // make sure to purge any unused CSS by passing in your HTML here + ...calciteTheme +}; +``` + +### CSS + +A static CSS file is also provided at `dist/tailwind.css`. When using this option it's a good idea to use nano or another CSS optimization tool to remove the unused classes as the default build can be quite large. + + +### Use + +In HTML, you can use the classes directly: + +``` +
+

+

+``` + +If you'd like to add styles from the tailwind set to an existing set, you can use `@apply`: + +```css +.my-class { + @apply font-medium text-0 mb-4; +} +``` + +_Note_: this requires you set up via PostCSS (see above). + +### Tips + +If you're a VS Code user, the [Tailwind CSS IntelliSense](https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss) plugin will provide auto-complete for the classes, making it much faster to develop styles! + +## Licensing + +COPYRIGHT © 2021 Esri + +All rights reserved under the copyright laws of the United States +and applicable international laws, treaties, and conventions. + +This material is licensed for use under the Esri Master License +Agreement (MLA), and is bound by the terms of that agreement. +You may redistribute and use this code without modification, +provided you adhere to the terms of the MLA and include this +copyright notice. + +See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english + +For additional information, contact: +Environmental Systems Research Institute, Inc. +Attn: Contracts and Legal Services Department +380 New York Street +Redlands, California, USA 92373 +USA + +email: contracts@esri.com + +## Contributing + +Please read the [contribute document](CONTRIBUTING.md). diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 00000000000..bcd24539d64 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,1528 @@ + + + + + Calcite Base + + + + + + + + +
+ + +
+
+ +
+
+

Overview

+

For the most part, Calcite leverages the built in classes supplied by Tailwind. For more information about tailwind classes, see the tailwind documentation. This guide is intended to be a "cheat sheet" for quickly viewing what's available.

+

Calcite base includes some customization of Tailwind in terms of how to use color, etc. Browse the sections below to see what classes are included in Calcite's tailwind config.

+
+
+

Spacing

+

The spacing scale used is the default Tailwind scale. This scale is used for many concepts from width/height to padding/margin.

+
+
0
+
+
+
+
px
+
+
+
+
1
+
+
+
+
2
+
+
+
+
3
+
+
+
+
4
+
+
+
+
5
+
+
+
+
6
+
+
+
+
8
+
+
+
+
10
+
+
+
+
12
+
+
+
+
16
+
+
+
+
20
+
+
+
+
24
+
+
+
+
32
+
+
+
+
40
+
+
+
+
48
+
+
+
+
56
+
+
+
+
64
+
+
+
+
+

Colors

+

The following colors are made available for multiple classes such as borders, backgrounds, text, etc. The colors can be customized via the underlying CSS Variables, see calcite components docs regarding theming for more information.

+
+
+
+
+

brand

+
+
+
+
+
+

brand-hover

+
+
+
+
+
+

brand-press

+
+
+
+
+
+

info

+
+
+
+
+
+

success

+
+
+
+
+
+

warning

+
+
+
+
+
+

danger

+
+
+
+
+
+

danger-hover

+
+
+
+
+
+

danger-press

+
+
+
+
+
+

background

+
+
+
+
+
+

foreground-1

+
+
+
+
+
+

foreground-2

+
+
+
+
+
+

foreground-3

+
+
+
+
+
+ Aa +
+

text-1

+
+
+
+
+
+ Aa +
+

text-2

+
+
+
+
+
+ Aa +
+

text-3

+
+
+
+
+
+ Aa +
+

text-link

+
+
+
+
+
+

Typography

+

Classes used for the type scale are custom to Calcite. Some helpers provided by the default Tailwind config have been removed.

+ +
+
+

Sizes

+

.text--3

+

Hamburgevons

+

.text--2

+

Hamburgevons

+

.text--1

+

Hamburgevons

+

.text-0

+

Hamburgevons

+

.text-1

+

Hamburgevons

+

.text-2

+

Hamburgevons

+

.text-3

+

Hamburgevons

+

.text-4

+

Hamburgevons

+

.text-5

+

Hamburgevons

+

.text-6

+

Hamburgevons

+

.text-7

+

Hamburgevons

+

.text-8

+

Hamburgevons

+
+
+

Colors

+
+
+
+ Aa +
+

.text-color-1

+
+
+
+
+
+ Aa +
+

.text-color-2

+
+
+
+
+
+ Aa +
+

.text-color-3

+
+
+
+
+
+ Aa +
+

.text-color-link

+
+
+
+
+
+ Aa +
+

.text-color-inverse

+
+
+
+
+
+
+
+

family

+
+
.font-sans
+
+
+
.font-mono
+
+
+
+

weight

+
+
.font-light
+
+
+
.font-normal
+
+
+
.font-medium
+
+
+
.font-bold
+
+
+
+

letter-spacing

+
+
.tracking-tighter
+
+
+
.tracking-tight
+
+
+
.tracking-normal
+
+
+
.tracking-wide
+
+
+
.tracking-wider
+
+
+
.tracking-widest
+
+
+
+

line-height

+
+
.leading-none
+
+
+
.leading-tight
+
+
+
.leading-snug
+
+
+
.leading-normal
+
+
+
.leading-relaxed
+
+
+
.leading-loose
+
+
+
+

list-style-type

+
+
.list-none
+
+
+
.list-disc
+
+
+
.list-decimal
+
+
+
+
+
+

style

+
+
.italic
+
+
+
.not-italic
+
+
+
+

smoothing

+
+
.antialiased
+
+
+
.subpixel-antialiased
+
+
+
+

list-style-positions

+
+
.list-inside
+
+
+
.list-outside
+
+
+
+

text-align

+
+
.text-left
+
+
+
.text-right
+
+
+
.text-center
+
+
+
.text-justify
+
+
+
+

text-decoration

+
+
.underline
+
+
+
.no-underline
+
+
+
.line-through
+
+
+
+
+
+
+

Flexbox

+

Flexbox classes are all directly from Tailwind with no changes.

+ +
+
+
+

direction

+
+
.flex-row
+
+
+
.flex-col
+
+
+
.flex-row-reverse
+
+
+
.flex-col-reverse
+
+
+
+

wrap

+
+
.flex-wrap
+
+
+
.flex-no-wrap
+
+
+
.flex-wrap-reverse
+
+
+
+

align-items

+
+
.items-stretch
+
+
+
.items-start
+
+
+
.items-center
+
+
+
.items-end
+
+
+
.items-baseline
+
+
+
+

align-content

+
+
.content-start
+
+
+
.content-center
+
+
+
.content-end
+
+
+
.content-between
+
+
+
.content-around
+
+
+
+

justify-content

+
+
.justify-start
+
+
+
.justify-center
+
+
+
.justify-end
+
+
+
.justify-between
+
+
+
.justify-around
+
+
+
+
+
+

align-self

+
+
.self-auto
+
+
+
.self-start
+
+
+
.self-center
+
+
+
.self-end
+
+
+
.self-stretch
+
+
+
+

flex

+
+
.flex-initial
+
+
+
.flex-1
+
+
+
.flex-auto
+
+
+
.flex-none
+
+
+
+

flex-grow

+
+
.flex-grow
+
+
+
.flex-grow-0
+
+
+
+

flex-shrink

+
+
.flex-shrink
+
+
+
.flex-shrink-0
+
+
+
+

flex-order

+
+
.order-first
+
+
+
.order-last
+
+
+
.order-none
+
+
+
.order-{1-12}
+
+
+
+
+
+
+

Sizing

+

Sizing classes are all directly from Tailwind with no changes.

+
+
+
+

width

+
+
.w-0
+
+
+
.w-px
+
+
+
.w-auto
+
+
+
.w-{0-64}
+
+
+
.w-1/2
+
+
+
.w-{1-2}/3
+
+
+
.w-{1-3}/4
+
+
+
.w-{1-4}/5
+
+
+
.w-{1-5}/6
+
+
+
.w-{1-11}/12
+
+
+
.w-full
+
+
+
.w-screen
+
+
+
+
+
+
+

min-width

+
+
.min-w-0
+
+
+
.min-w-full
+
+
+
+

max-width

+
+
.max-w-xs
+
+
+
.max-w-sm
+
+
+
.max-w-md
+
+
+
.max-w-lg
+
+
+
.max-w-xl
+
+
+
.max-w-{2-6}xl
+
+
+
.max-w-full
+
+
+
+
+
+
+

height

+
+
.h-{0-64}
+
+
+
.h-px
+
+
+
.h-auto
+
+
+
.h-full
+
+
+
.h-screen
+
+
+
+

min-height

+
+
.min-h-0
+
+
+
.min-h-full
+
+
+
.min-h-screen
+
+
+
+

max-height

+
+
.max-h-full
+
+
+
.max-h-screen
+
+
+
+
+
+
+

Background

+

Background colors have their own classes named for their suggested use.

+
+
+
+

bg-color

+
+
.bg-brand
+
+
+
.bg-brand-hover
+
+
+
.bg-brand-press
+
+
+
.bg-info
+
+
+
.bg-success
+
+
+
.bg-warning
+
+
+
.bg-danger
+
+
+
.bg-danger-hover
+
+
+
.bg-danger-press
+
+
+
.bg-background
+
+
+
.bg-foreground-1
+
+
+
.bg-foreground-2
+
+
+
.bg-foreground-3
+
+
+
.bg-transparent
+
+
+
+
+
+

bg-attachment

+
+
.bg-fixed
+
+
+
.bg-local
+
+
+
.bg-scroll
+
+
+
+

bg-position

+
+
.bg-{left|right|top|bottom}
+
+
+
.bg-center
+
+
+
.bg-{left|right}-{top|bottom}
+
+
+
+

bg-repeat

+
+
.bg-repeat
+
+
+
.bg-norepeat
+
+
+
.bg-repeat-{x|y}
+
+
+
.bg-repeat-{round|space}
+
+
+
+

bg-size

+
+
.bg-auto
+
+
+
.bg-cover
+
+
+
.bg-contain
+
+
+
+
+
+
+

Border

+

Border colors are custom to Calcite, other border classes are inhertied from Tailwind's defaults.

+
+

border-color

+
+
+
+
.border-color-1
+
+
+
+
+
.border-color-2
+
+
+
+
+
.border-color-3
+
+
+
+
+
.border-color-input
+
+
+
+
+
.border-color-brand
+
+
+
+
+
.border-color-brand-hover
+
+
+
+
+
.border-color-brand-press
+
+
+
+
+
.border-color-info
+
+
+
+
+
.border-color-success
+
+
+
+
+
.border-color-warning
+
+
+
+
+
.border-color-danger
+
+
+
+
+
.border-color-danger-hover
+
+
+
+
+
.border-color-danger-press
+
+
+
+
+
+
+

border-style

+
+
.border-solid
+
+
+
.border-dotted
+
+
+
.border-dashed
+
+
+
.border-double
+
+
+
.border-none
+
+
+
+

border-width

+
+
.border-0
+
+
+
.border
+
+
+
.border-{2/4/8}
+
+
+
.border-{t/r/b/l}
+
+
+
.border-{t/r/b/l}-0
+
+
+
.border-{t/r/b/l}-{2/4/8}
+
+
+
+
+
+

border-radius

+
+
.rounded
+
+
+
.rounded-none
+
+
+
.rounded-sm
+
+
+
.rounded-md
+
+
+
.rounded-lg
+
+
+
.rounded-xl
+
+
+
.rounded-2xl
+
+
+
.rounded-3xl
+
+
+
.rounded-full
+
+
+
.rounded-half
+
+
+
.rounded-{t/r/b/l}
+
+
+
.rounded-{t/r/b/l}-{size}
+
+
+
.rounded-{t/r/b/l}-{lg/full}
+
+
+
.rounded-{tr/tl/br/bl}
+
+
+
.rounded-{tr/tl/br/bl}-{size}
+
+
+
+
+
+
+

Layout

+

Tailwind provides helpers for things like flex layouts, floats, positioning, display, etc.

+
+
+
+

Container

+
+
.container
+
+
+
+

Display

+
+
.block
+
+
+
.inline-block
+
+
+
.inline
+
+
+
.flex
+
+
+
.inline-flex
+
+
+
.table
+
+
+
.table-row
+
+
+
.table-cell
+
+
+
.hidden
+
+
+
+

Float

+
+
.float-right
+
+
+
.float-left
+
+
+
.float-none
+
+
+
.clearfix
+
+
+
+

Overflow

+
+
.overflow-auto
+
+
+
.overflow-hidden
+
+
+
.overflow-visible
+
+
+
.overflow-scroll
+
+
+
.object-left-top
+
+
+
.overflow-x-auto
+
+
+
.overflow-y-auto
+
+
+
.overflow-x-hidden
+
+
+
.overflow-y-hidden
+
+
+
.overflow-x-visible
+
+
+
.overflow-y-visible
+
+
+
.overflow-x-scroll
+
+
+
.overflow-y-scroll
+
+
+
.scrolling-touch (webkit)
+
+
+
.scrolling-auto (webkit)
+
+
+
+ +
+
+

Object-Fit

+
+
.object-contain
+
+
+
.object-cover
+
+
+
.object-fill
+
+
+
.object-none
+
+
+
+

Object-Positions

+
+
.object-bottom
+
+
+
.object-center
+
+
+
.object-left
+
+
+
.object-left-bottom
+
+
+
.object-scale-down
+
+
+
.object-right
+
+
+
.object-right-bottom
+
+
+
.object-right-top
+
+
+
.object-top
+
+
+
+

Positions

+
+
.static
+
+
+
.relative
+
+
+
.absolute
+
+
+
.fixed
+
+
+
.sticky
+
+
+
+

Positions-TRBL

+
+
.{top|right|bottom|left}-0
+
+
+
.{top|right|bottom|left}-auto
+
+
+
.inset-0
+
+
+
.inset-auto
+
+
+
.inset-{x|y}-0
+
+
+
.inset-{x|y}-auto
+
+
+
+
+
+

Visible

+
+
.visible
+
+
+
.invisible
+
+
+
+

z-index

+
+
.z-0
+
+
+
.z-10
+
+
+
.z-20
+
+
+
.z-30
+
+
+
.z-40
+
+
+
.z-50
+
+
+
.z-auto
+
+
+
+
+
+
+

Margin and Padding

+

Margin and padding can be applied to any cardinal direction in any value on the spacing scale. These classes come directly from the Tailwind defaults.

+
+
+
+

padding

+
+
.p-px
+
+
+
.p-{0-64}
+
+
+
.p{x/y}-px
+
+
+
.p{x/y}-{0-64}
+
+
+
.p{t/r/b/l}-px
+
+
+
.p{t/r/b/l}-{0-64}
+
+
+
+
+
+

margin

+
+
.{-}m-px
+
+
+
.m-auto
+
+
+
.{-}m-{0-64}
+
+
+
.{-}m{x/y}-px
+
+
+
.{-}m{x/y}-{0-64}
+
+
+
.{-}m{t/r/b/l}-px
+
+
+
.{-}m{t/r/b/l}-{0-64}
+
+
+
+
+
+
+

Effect

+

Shadows are custom to Calcite values. Generally, shadows will grow on hover (lg) and lessen during click/active (sm).

+
+
+

Opacity

+
+
+
+
+
.opacity-0
+
+
+
+
+
+
.opacity-25
+
+
+
+
+
+
.opacity-50
+
+
+
+
+
+
.opacity-75
+
+
+
+
+
+
.opacity-100
+
+
+
+

Shadow

+
+
+
.shadow/.shadow-1
+
+
+
.shadow-1-lg
+
+
+
.shadow-1-sm
+
+
+
.shadow-2
+
+
+
.shadow-2-lg
+
+
+
.shadow-2-sm
+
+
+
.shadow-border-bottom
+
+
+
.shadow-outline-active
+
+
+
.shadow-none
+
+
+
+
+
+
+

Table

+
+
+
+

collapse

+
+
.border-collapse
+
+
+
.border-separate
+
+
+
+
+
+

Layout

+
+
.table-auto
+
+
+
.table-fixed
+
+
+
+
+
+
+

Interactivity

+
+
+
+

cursor

+
+
.cursor-auto
+
+
+
.cursor-default
+
+
+
.cursor-pointer
+
+
+
.cursor-wait
+
+
+
.cursor-text
+
+
+
.cursor-move
+
+
+
.cursor-not-allowed
+
+
+
+

user-select

+
+
.select-none
+
+
+
.select-text
+
+
+
.select-all
+
+
+
.select-auto
+
+
+
+
+
+

resize

+
+
.resize
+
+
+
.resize-{x/y}
+
+
+
.resize-none
+
+
+
+

pointer-events

+
+
.pointer-events-auto
+
+
+
.pointer-events-none
+
+
+
+
+
+
+

outline

+
+
.outline-none
+
+
+
+

appearance

+
+
.appearance-none
+
+
+
+
+
+
+
+

SVG

+
+
+

fill

+
+
.fill-current
+
+
+
+

stroke

+
+
.stroke-current
+
+
+
+
+
+
+
+
+ + diff --git a/package.json b/package.json new file mode 100644 index 00000000000..aa662635b88 --- /dev/null +++ b/package.json @@ -0,0 +1,52 @@ +{ + "name": "@esri/calcite-tailwind", + "version": "0.1.0", + "description": "Shared Tailwind CSS Configuration for Esri's Calcite Design System", + "homepage": "https://github.com/Esri/calcite-tailwind", + "main": "tailwind.config.js", + "repository": { + "type": "git", + "url": "git://github.com/Esri/calcite-tailwind.git" + }, + "author": { + "name": "Esri" + }, + "contributors": [ + { + "name": "Julio Ochoa", + "email": "jochoa@esri.com" + }, + { + "name": "Adam Tirella", + "email": "atirella@esri.com" + }, + { + "name": "Paul Pederson", + "email": "ppederson@esri.com" + } + ], + "license": "SEE LICENSE IN README.md", + "bugs": { + "url": "https://github.com/esri/calcite-tailwind/issues" + }, + "files": [ + "dist/" + ], + "dependencies": { + "tailwindcss": "^1.7.2" + }, + "devDependencies": { + "concurrently": "^6.0.0", + "cross-env": "^7.0.3", + "gh-release": "3.5.0", + "live-server": "^1.2.1", + "postcss-cli": "^7.1.1", + "autoprefixer": "^9.8.6" + }, + "scripts": { + "release": "gh-release", + "start": "cross-env NODE_ENV=development concurrently \"postcss tailwind.css -o docs/tailwind.css --watch\" \"live-server ./docs\" ", + "development": "cross-env NODE_ENV=development postcss tailwind.css -o docs/tailwind.css", + "production": "cross-env NODE_ENV=production postcss tailwind.css -o dist/tailwind.css" + } +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 00000000000..8985e91fef0 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,7 @@ +module.exports = { + plugins: [ + require("tailwindcss"), + require("autoprefixer"), + ...(process.env.NODE_ENV === "production" ? [require("cssnano")] : []), + ], +}; diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 00000000000..bf561990da5 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,226 @@ +var flattenColorPalette = require('tailwindcss/lib/util/flattenColorPalette').default; +module.exports = { + theme: { + borderColor: theme => ({ + color: { + 1: "var(--calcite-ui-border-1)", + 2: "var(--calcite-ui-border-2)", + 3: "var(--calcite-ui-border-3)", + input: "var(--calcite-ui-border-input)" + }, + "color-brand": theme("colors.brand"), + "color-brand-hover": theme("colors.brand-hover"), + "color-brand-press": theme("colors.brand-press"), + "color-info": theme("colors.info"), + "color-success": theme("colors.success"), + "color-warning": theme("colors.warning"), + "color-danger": theme("colors.danger"), + "color-danger-hover": theme("colors.danger-hover"), + "color-danger-press": theme("colors.danger-press"), + }), + colors: { + "brand": "var(--calcite-ui-brand)", + "brand-hover": "var(--calcite-ui-brand-hover)", + "brand-press": "var(--calcite-ui-brand-press)", + "info": "var(--calcite-ui-info)", + "success": "var(--calcite-ui-success)", + "warning": "var(--calcite-ui-warning)", + "danger": "var(--calcite-ui-danger)", + "danger-hover": "var(--calcite-ui-danger-hover)", + "danger-press": "var(--calcite-ui-danger-press)", + background: { + background: "var(--calcite-ui-background)", + foreground: { + 1: "var(--calcite-ui-foreground-1)", + 2: "var(--calcite-ui-foreground-2)", + 3: "var(--calcite-ui-foreground-3)" + }, + }, + text: { + 1: "var(--calcite-ui-text-1)", + 2: "var(--calcite-ui-text-2)", + 3: "var(--calcite-ui-text-3)", + inverse: "var(--calcite-ui-text-inverse)", + link: "var(--calcite-ui-text-link)" + }, + transparent: "transparent" + }, + fontFamily: { + // assets/styles/_type + sans: "var(--calcite-sans-family)", + mono: "var(--calcite-code-family)", + inherit: "inherit" + }, + fontSize: { + // assets/styles/_type + "-3": "var(--calcite-font-size--3)", // 10px + "-2": "var(--calcite-font-size--2)", // 12px + "-1": "var(--calcite-font-size--1)", // 14px + 0: "var(--calcite-font-size-0)", // 16px + 1: "var(--calcite-font-size-1)", // 18px + 2: "var(--calcite-font-size-2)", // 20px + 3: "var(--calcite-font-size-3)", // 26px + 4: "var(--calcite-font-size-4)", // 32px + 5: "var(--calcite-font-size-5)", // 40px + 6: "var(--calcite-font-size-6)", // 48px + 7: "var(--calcite-font-size-7)", // 56px + 8: "var(--calcite-font-size-8)", // 64px + }, + fontWeight: { + // assets/styles/_type + light: "var(--calcite-font-weight-light)", + normal: "var(--calcite-font-weight-normal)", + medium: "var(--calcite-font-weight-medium)", + bold: "var(--calcite-font-weight-bold)" + }, + screens: { + 's': '480px', + 'm': '864px', + 'l': '1024px', + 'xl': '1440px' + }, + textColor: theme => ({ + color: theme("colors.text") + }), + backgroundColor: theme => ({ + ...theme("colors.background"), + transparent: theme("colors.transparent"), + brand: theme("colors.brand"), + "brand-hover": theme("colors.brand-hover"), + "brand-press": theme("colors.brand-press"), + "brand": theme("colors.brand"), + "info": theme("colors.info"), + "success": theme("colors.success"), + "warning": theme("colors.warning"), + "danger": theme("colors.danger"), + "danger-hover": theme("colors.danger-hover"), + "danger-press": theme("colors.danger-press"), + }), + extend: { + animation: { + "in": "in 300ms ease-in-out", + "in-down": "in-down 300ms ease-in-out", + "in-up": "in-up 300ms ease-in-out", + "in-scale": "in-scale 300ms linear" + }, + borderRadius: { + half: "50%" + }, + boxShadow: { + 0: "0 4px 8px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04)", + 1: "0 4px 8px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04)", + "1-lg": "0 4px 16px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.04)", + "1-sm": "0 1px 6px -1px rgba(0, 0, 0, 0.16), 0 1px 2px -1px rgba(0, 0, 0, 0.08)", + 2: "0 6px 20px -4px rgba(0, 0, 0, 0.1), 0 4px 12px -2px rgba(0, 0, 0, 0.08)", + "2-lg": "0 12px 32px -2px rgba(0, 0, 0, 0.1), 0 4px 20px 0 rgba(0, 0, 0, 0.08)", + "2-sm": "0 2px 12px -4px rgba(0, 0, 0, 0.2), 0 2px 4px -2px rgba(0, 0, 0, 0.16)", + 'border-bottom': '0 1px 0 var(--calcite-ui-border-3)', + 'outline-active': '0 0 0 1px var(--calcite-ui-brand)', + 'none': 'none', + }, + fill: theme => ({ + color: theme("colors.text") + }), + keyframes: { + "in": { + "0%": { + opacity: 0 + }, + "100%": { + opacity: 1 + } + }, + "in-down": { + "0%": { + opacity: 0, + transform: "translate3D(0, -5px, 0)" + }, + "100%": { + opacity: 1, + transform: "translate3D(0, 0, 0)" + } + }, + "in-up": { + "0%": { + opacity: 0, + transform: "translate3D(0, 5px, 0)" + }, + "100%": { + opacity: 1, + transform: "translate3D(0, 0, 0)" + } + }, + "in-scale": { + "0%": { + opacity: 0, + transform: "scale3D(0.95, 0.95, 1)" + }, + "100%": { + opacity: 1, + transform: "scale3D(1, 1, 1)" + } + } + }, + opacity: { + disabled: "0.5" + }, + spacing: { + "0.5": "0.125rem", + "2.5": "0.625rem", + "3.5": "0.875rem" + }, + transitionProperty: { + margin: "margin", + color: "color" + }, + transitionTimingFunction: { + cubic: "cubic-bezier(0.215, 0.440, 0.420, 0.880)" + } + } + }, + plugins: [ + ({ addUtilities }) => { + const newUtilities = { + ".word-break": { + "word-wrap": "break-word", + "word-break": "break-word" + }, + ".focus-base": { + "outline-offset": 0, + "outline-color": "transparent", + "transition": "outline-offset 100ms ease-in-out, outline-color 100ms ease-in-out" + }, + ".focus-outset": { + "outline": "2px solid var(--calcite-ui-brand)", + "outline-offset": "2px" + }, + ".focus-inset": { + "outline": "2px solid var(--calcite-ui-brand)", + "outline-offset": "-2px" + } + } + addUtilities(newUtilities); + }, + ({ addUtilities, e, theme, variants }) => { + const colors = flattenColorPalette(theme('borderColor')); + delete colors['default']; + + const colorMap = Object.keys(colors) + .map(color => ({ + [`.border-t-${color}`]: {borderTopColor: colors[color]}, + [`.border-r-${color}`]: {borderRightColor: colors[color]}, + [`.border-b-${color}`]: {borderBottomColor: colors[color]}, + [`.border-l-${color}`]: {borderLeftColor: colors[color]}, + })); + const utilities = Object.assign({}, ...colorMap); + + addUtilities(utilities, variants('borderColor')); + }, + ], + future: { + removeDeprecatedGapUtilities: true, + }, + variants: { + boxShadow: ['responsive', 'hover', 'focus', 'active'] + } +} diff --git a/tailwind.css b/tailwind.css new file mode 100644 index 00000000000..b5c61c95671 --- /dev/null +++ b/tailwind.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; From 7005227ec58f8070ed3ff15447ec3671aca2bb9d Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 22 Feb 2021 16:33:40 -0800 Subject: [PATCH 002/696] update readme title --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1e45c22555..dbbf70594d9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Calcite Base +# Calcite Tailwind The calcite-tailwind repository holds the tailwind configuration used to build calcite-components. From 041ad7b88a9d086ae0ef0b75fb4517848be6b672 Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 22 Feb 2021 16:54:46 -0800 Subject: [PATCH 003/696] add working cssnano minification --- README.md | 4 +- package-lock.json | 6315 +++++++++++++++++++++++++++++++++++++++++++++ package.json | 8 +- 3 files changed, 6321 insertions(+), 6 deletions(-) create mode 100644 package-lock.json diff --git a/README.md b/README.md index dbbf70594d9..e20eb8264b7 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ _Note_: this project assumes you have the light and dark theme variables defined To add Calcite's Tailwind configuration to your project you can simply import it in your `tailwind.config.js` file: ```js -var calciteTheme = require("@esri/calcite-tailwind/tailwind.config"); +var calciteTheme = require("@esri/calcite-tailwind"); module.exports = { purge: ["./public/**/*.html"], // make sure to purge any unused CSS by passing in your HTML here @@ -36,7 +36,7 @@ A static CSS file is also provided at `dist/tailwind.css`. When using this optio In HTML, you can use the classes directly: -``` +```html

diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000000..484c140bfff --- /dev/null +++ b/package-lock.json @@ -0,0 +1,6315 @@ +{ + "name": "@esri/calcite-tailwind", + "version": "0.1.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", + "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "dev": true, + "requires": { + "@babel/highlight": "^7.12.13" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "dev": true + }, + "@babel/highlight": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz", + "integrity": "sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.12.11", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@fullhuman/postcss-purgecss": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@fullhuman/postcss-purgecss/-/postcss-purgecss-2.3.0.tgz", + "integrity": "sha512-qnKm5dIOyPGJ70kPZ5jiz0I9foVOic0j+cOzNDoo8KoCf6HjicIZ99UfO2OmE7vCYSKAAepEwJtNzpiiZAh9xw==", + "requires": { + "postcss": "7.0.32", + "purgecss": "^2.3.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", + "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", + "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.4", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", + "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.4", + "fastq": "^1.6.0" + } + }, + "@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", + "dev": true + }, + "@types/q": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", + "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dev": true, + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + }, + "acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "requires": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + } + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", + "dev": true + }, + "ansi-align": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", + "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", + "dev": true, + "requires": { + "string-width": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "apache-crypt": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.4.tgz", + "integrity": "sha512-Icze5ny5W5uv3xgMgl8U+iGmRCC0iIDrb2PVPuRBtL3Zy1Y5TMewXP1Vtc4r5X9eNNBEk7KYPu0Qby9m/PmcHg==", + "dev": true, + "requires": { + "unix-crypt-td-js": "^1.1.4" + } + }, + "apache-md5": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.5.tgz", + "integrity": "sha512-sbLEIMQrkV7RkIruqTPXxeCMkAAycv4yzTkBzRgOR1BrR5UB7qZtupqxkersTJSf0HZ3sbaNRrNV80TnnM7cUw==", + "dev": true + }, + "application-config": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/application-config/-/application-config-1.0.1.tgz", + "integrity": "sha1-WqLipe1qvS5dHUc9NZb1dARP6ec=", + "dev": true, + "requires": { + "application-config-path": "^0.1.0", + "mkdirp": "^0.5.1" + } + }, + "application-config-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", + "integrity": "sha1-GTxfCoZUGkxm+6Hi3DhYM2LqXo8=", + "dev": true + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "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" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "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-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", + "dev": true + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "autoprefixer": { + "version": "9.8.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", + "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bcryptjs": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", + "integrity": "sha1-mrVie5PmBiH/fNrF2pczAn3x0Ms=", + "dev": true + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bl": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz", + "integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=", + "dev": true, + "requires": { + "readable-stream": "~2.0.5" + }, + "dependencies": { + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "dev": true + }, + "boxen": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", + "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", + "dev": true, + "requires": { + "ansi-align": "^2.0.0", + "camelcase": "^4.0.0", + "chalk": "^2.0.1", + "cli-boxes": "^1.0.0", + "string-width": "^2.0.0", + "term-size": "^1.2.0", + "widest-line": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "browserslist": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz", + "integrity": "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==", + "requires": { + "caniuse-lite": "^1.0.30001181", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.649", + "escalade": "^3.1.1", + "node-releases": "^1.1.70" + } + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dev": true, + "requires": { + "callsites": "^2.0.0" + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dev": true, + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "dev": true + }, + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001191", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz", + "integrity": "sha512-xJJqzyd+7GCJXkcoBiQ1GuxEiOBCLQ0aVW9HMekifZsAVGdj5eJ4mFB9fEhSHipq9IOk/QXFJUiIr9lZT+EsGw==" + }, + "capture-stack-trace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", + "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "changelog-parser": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/changelog-parser/-/changelog-parser-2.8.0.tgz", + "integrity": "sha512-ZtSwN0hY7t+WpvaXqqXz98RHCNhWX9HsvCRAv1aBLlqJ7BpKtqdM6Nu6JOiUhRAWR7Gov0aN0fUnmflTz0WgZg==", + "dev": true, + "requires": { + "line-reader": "^0.2.4", + "remove-markdown": "^0.2.2" + } + }, + "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": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "ci-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", + "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "cli-boxes": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", + "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", + "dev": true + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "cli-width": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", + "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", + "dev": true + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", + "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + } + }, + "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==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "color-string": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", + "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colorette": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", + "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==" + }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concurrently": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-6.0.0.tgz", + "integrity": "sha512-Ik9Igqnef2ONLjN2o/OVx1Ow5tymVvvEwQeYCQdD/oV+CN9oWhxLk7ibcBdOtv0UzBqHCEKRwbKceYoTK8t3fQ==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "date-fns": "^2.16.1", + "lodash": "^4.17.20", + "read-pkg": "^5.2.0", + "rxjs": "^6.6.3", + "spawn-command": "^0.0.2-1", + "supports-color": "^8.1.0", + "tree-kill": "^1.2.2", + "yargs": "^16.2.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.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "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" + } + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "configstore": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.5.tgz", + "integrity": "sha512-nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA==", + "dev": true, + "requires": { + "dot-prop": "^4.2.1", + "graceful-fs": "^4.1.2", + "make-dir": "^1.0.0", + "unique-string": "^1.0.0", + "write-file-atomic": "^2.0.0", + "xdg-basedir": "^3.0.0" + } + }, + "connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "dev": true, + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + } + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "dev": true, + "requires": { + "object-assign": "^4", + "vary": "^1" + } + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + } + } + }, + "create-error-class": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", + "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", + "dev": true, + "requires": { + "capture-stack-trace": "^1.0.0" + } + }, + "cross-env": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", + "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.1" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", + "dev": true + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "dev": true + }, + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dev": true, + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dev": true, + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + } + }, + "css-unit-converter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", + "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssnano": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", + "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.7", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "cssnano-preset-default": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", + "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", + "dev": true, + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.2", + "postcss-unique-selectors": "^4.0.1" + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", + "dev": true + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", + "dev": true + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "dev": true + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz", + "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==", + "dev": true, + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + } + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "date-fns": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.17.0.tgz", + "integrity": "sha512-ZEhqxUtEZeGgg9eHNSOAJ8O9xqSgiJdrL0lzSSfMF54x6KXWJiOH/xntSJ9YomJPrYH/p08t6gWjGWq1SDJlSA==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true + }, + "dependency-graph": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.9.0.tgz", + "integrity": "sha512-9YLIBURXj4DJMFALxXw9K3Y3rwb5Fk0X5/8ipCzaN84+gKxoHK43tVKRNakCQbiEx07E8Uwhuq21BpUagFhZ8w==", + "dev": true + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detective": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", + "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", + "requires": { + "acorn-node": "^1.6.1", + "defined": "^1.0.0", + "minimist": "^1.1.1" + } + }, + "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" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "dev": true + } + } + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-prop": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz", + "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==", + "dev": true, + "requires": { + "is-obj": "^1.0.0" + } + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "duplexer2": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", + "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", + "dev": true, + "requires": { + "readable-stream": "~1.1.9" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + } + } + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "electron-to-chromium": { + "version": "1.3.671", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.671.tgz", + "integrity": "sha512-RTD97QkdrJKaKwRv9h/wGAaoR2lGxNXEcBXS31vjitgTPwTWAbLdS7cEsBK68eEQy7p6YyT8D5BxBEYHu2SuwQ==" + }, + "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 + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "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.18.0-next.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", + "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.1", + "object-inspect": "^1.9.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.3", + "string.prototype.trimstart": "^1.0.3" + } + }, + "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==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "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": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "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 + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "event-stream": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", + "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", + "dev": true, + "requires": { + "duplexer": "~0.1.1", + "from": "~0", + "map-stream": "~0.1.0", + "pause-stream": "0.0.11", + "split": "0.3", + "stream-combiner": "~0.0.4", + "through": "~2.3.1" + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "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": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "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" + } + } + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "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" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", + "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + }, + "dependencies": { + "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" + } + }, + "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" + } + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "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 + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "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" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fastq": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.10.1.tgz", + "integrity": "sha512-AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + } + }, + "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" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true + }, + "from": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", + "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", + "dev": true + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "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.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-stdin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "dev": true + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "gh-release": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gh-release/-/gh-release-3.5.0.tgz", + "integrity": "sha512-CVp5ConOSXhSzO/975jraffwa0ZF7exl/vWJNsAXf4dZsEC9bcjG7QEhadDbJxrtaEVaByZ1jdK2AzLtw/cagQ==", + "dev": true, + "requires": { + "chalk": "^1.0.0", + "changelog-parser": "^2.0.0", + "deep-extend": "^0.6.0", + "gauge": "^2.7.4", + "gh-release-assets": "^1.1.0", + "ghauth": "^3.2.0", + "github-url-to-object": "^3.0.0", + "inquirer": "^6.2.0", + "request": "^2.82.0", + "shelljs": "^0.3.0", + "update-notifier": "^2.2.0", + "yargs": "^2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + }, + "yargs": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-2.3.0.tgz", + "integrity": "sha1-6QDIclDsXNCA22AJ/j3WMVbx1/s=", + "dev": true, + "requires": { + "wordwrap": "0.0.2" + } + } + } + }, + "gh-release-assets": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/gh-release-assets/-/gh-release-assets-1.1.2.tgz", + "integrity": "sha1-771OrzKUoZhWNr/2s7lkXY/9lFc=", + "dev": true, + "requires": { + "async": "^0.9.0", + "mime": "^1.3.4", + "progress-stream": "^2.0.0", + "request": "^2.85.0", + "util-extend": "^1.0.1" + } + }, + "ghauth": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ghauth/-/ghauth-3.2.1.tgz", + "integrity": "sha1-RddVZDcWSti0sDfALGJ/1VAZ4xo=", + "dev": true, + "requires": { + "application-config": "~1.0.0", + "bl": "~1.1.2", + "hyperquest": "~2.0.0", + "mkdirp": "~0.5.1", + "read": "~1.0.7", + "xtend": "~4.0.1" + } + }, + "github-url-to-object": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/github-url-to-object/-/github-url-to-object-3.1.0.tgz", + "integrity": "sha1-FgpdVa188EWeB1f3kS1xgHa37X0=", + "dev": true, + "requires": { + "is-url": "^1.1.0" + } + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", + "dev": true, + "requires": { + "ini": "^1.3.4" + } + }, + "globby": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz", + "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "got": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", + "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", + "dev": true, + "requires": { + "create-error-class": "^3.0.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-redirect": "^1.0.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "lowercase-keys": "^1.0.0", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "unzip-response": "^2.0.1", + "url-parse-lax": "^1.0.0" + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "dev": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "has-symbols": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "dev": true + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "hosted-git-info": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "dev": true + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", + "dev": true + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "dev": true + }, + "html-comment-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", + "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==", + "dev": true + }, + "html-tags": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", + "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==" + }, + "http-auth": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/http-auth/-/http-auth-3.1.3.tgz", + "integrity": "sha1-lFz63WZSHq+PfISRPTd9exXyTjE=", + "dev": true, + "requires": { + "apache-crypt": "^1.1.2", + "apache-md5": "^1.0.6", + "bcryptjs": "^2.3.0", + "uuid": "^3.0.0" + } + }, + "http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", + "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + } + } + }, + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==", + "dev": true + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "hyperquest": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hyperquest/-/hyperquest-2.0.0.tgz", + "integrity": "sha1-PRoMXYMpW83lx1qXjdquQJb4PAI=", + "dev": true, + "requires": { + "duplexer2": "~0.0.2", + "through2": "~0.6.3" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true, + "requires": { + "readable-stream": ">=1.0.33-1 <1.1.0-0", + "xtend": ">=4.0.0 <4.1.0-0" + } + } + } + }, + "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.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "dev": true, + "requires": { + "import-from": "^2.1.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "dev": true + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "inquirer": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz", + "integrity": "sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==", + "dev": true, + "requires": { + "ansi-escapes": "^3.2.0", + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.3", + "figures": "^2.0.0", + "lodash": "^4.17.12", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rxjs": "^6.4.0", + "string-width": "^2.1.0", + "strip-ansi": "^5.1.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + } + } + } + } + }, + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", + "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", + "dev": true + }, + "is-ci": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", + "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "dev": true, + "requires": { + "ci-info": "^1.5.0" + } + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dev": true, + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", + "dev": true + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-installed-globally": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", + "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", + "dev": true, + "requires": { + "global-dirs": "^0.1.0", + "is-path-inside": "^1.0.0" + } + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "dev": true + }, + "is-npm": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", + "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "dev": true + }, + "is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "dev": true, + "requires": { + "path-is-inside": "^1.0.1" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-redirect": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", + "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", + "dev": true + }, + "is-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", + "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.1" + } + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "is-retry-allowed": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "is-svg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", + "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", + "dev": true, + "requires": { + "html-comment-regex": "^1.1.0" + } + }, + "is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-url": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", + "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", + "dev": true + }, + "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 + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "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" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "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" + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "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 + }, + "latest-version": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", + "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", + "dev": true, + "requires": { + "package-json": "^4.0.0" + } + }, + "line-reader": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/line-reader/-/line-reader-0.2.4.tgz", + "integrity": "sha1-xDkrWH3qOFgMlnhXDm6OSfzlJiI=", + "dev": true + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "dev": true + }, + "live-server": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/live-server/-/live-server-1.2.1.tgz", + "integrity": "sha512-Yn2XCVjErTkqnM3FfTmM7/kWy3zP7+cEtC7x6u+wUzlQ+1UW3zEYbbyJrc0jNDwiMDZI0m4a0i3dxlGHVyXczw==", + "dev": true, + "requires": { + "chokidar": "^2.0.4", + "colors": "^1.4.0", + "connect": "^3.6.6", + "cors": "^2.8.5", + "event-stream": "3.3.4", + "faye-websocket": "0.11.x", + "http-auth": "3.1.x", + "morgan": "^1.9.1", + "object-assign": "^4.1.1", + "opn": "^6.0.0", + "proxy-middleware": "^0.15.0", + "send": "^0.17.1", + "serve-index": "^1.9.1" + }, + "dependencies": { + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "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" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "lodash.toarray": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", + "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "dev": true + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "dev": true, + "requires": { + "chalk": "^2.0.1" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, + "lru-cache": { + "version": "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" + } + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-stream": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", + "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "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": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.46.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", + "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", + "dev": true + }, + "mime-types": { + "version": "2.1.29", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", + "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", + "dev": true, + "requires": { + "mime-db": "1.46.0" + } + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "morgan": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", + "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", + "dev": true, + "requires": { + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "nan": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", + "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", + "dev": true, + "optional": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "dev": true + }, + "node-emoji": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz", + "integrity": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==", + "requires": { + "lodash.toarray": "^4.4.0" + } + }, + "node-releases": { + "version": "1.1.70", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz", + "integrity": "sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==" + }, + "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" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "dev": true + }, + "normalize.css": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz", + "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + } + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "requires": { + "boolbase": "~1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-hash": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.1.1.tgz", + "integrity": "sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ==" + }, + "object-inspect": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", + "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-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", + "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz", + "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + } + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "opn": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-6.0.0.tgz", + "integrity": "sha512-I9PKfIZC+e4RXZ/qr1RhgyCnGgYX0UEIlXgWnCOVACIvFgaC9rz6Won7xbdhoHrd8IIhV7YEpHjreNUNkqCGkQ==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-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 + }, + "package-json": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", + "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", + "dev": true, + "requires": { + "got": "^6.7.1", + "registry-auth-token": "^3.0.1", + "registry-url": "^3.0.3", + "semver": "^5.1.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "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-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "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.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + }, + "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 + }, + "pause-stream": { + "version": "0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", + "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", + "dev": true, + "requires": { + "through": "~2.3" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", + "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dev": true, + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "postcss-cli": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-7.1.2.tgz", + "integrity": "sha512-3mlEmN1v2NVuosMWZM2tP8bgZn7rO5PYxRRrXtdSyL5KipcgBDjJ9ct8/LKxImMCJJi3x5nYhCGFJOkGyEqXBQ==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "chokidar": "^3.3.0", + "dependency-graph": "^0.9.0", + "fs-extra": "^9.0.0", + "get-stdin": "^8.0.0", + "globby": "^11.0.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "postcss-reporter": "^6.0.0", + "pretty-hrtime": "^1.0.3", + "read-cache": "^1.0.0", + "yargs": "^15.0.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" + } + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "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 + }, + "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" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", + "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "dev": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.3.1", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + } + }, + "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" + } + }, + "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 + }, + "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" + } + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "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-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "dev": true, + "requires": { + "picomatch": "^2.2.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" + } + }, + "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" + } + }, + "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.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "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" + } + }, + "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" + } + } + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-functions": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-functions/-/postcss-functions-3.0.0.tgz", + "integrity": "sha1-DpTQFERwCkgd4g3k1V+yZAVkJQ4=", + "requires": { + "glob": "^7.1.2", + "object-assign": "^4.1.1", + "postcss": "^6.0.9", + "postcss-value-parser": "^3.3.0" + }, + "dependencies": { + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-js": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-2.0.3.tgz", + "integrity": "sha512-zS59pAk3deu6dVHyrGqmC3oDXBdNdajk4k1RyxeVXCrcEDBUBHoIhE4QTsmhxgzXxsaqFDAkUZfmMa5f/N/79w==", + "requires": { + "camelcase-css": "^2.0.1", + "postcss": "^7.0.18" + } + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "dev": true, + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dev": true, + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "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" + } + }, + "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 + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "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" + } + }, + "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 + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-nested": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-4.2.3.tgz", + "integrity": "sha512-rOv0W1HquRCamWy2kFl3QazJMMe1ku6rCFoAAH+9AcxdbpDeBr6k968MLWuLjvjMcGEip01ak09hKOEgpK9hvw==", + "requires": { + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2" + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dev": true, + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dev": true, + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dev": true, + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dev": true, + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dev": true, + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-reporter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-6.0.1.tgz", + "integrity": "sha512-LpmQjfRWyabc+fRygxZjpRxfhRf9u/fdlKf4VHG4TSPbV2XNsuISzYW1KL+1aQzx53CAppa1bKG4APIB/DOXXw==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "lodash": "^4.17.11", + "log-symbols": "^2.2.0", + "postcss": "^7.0.7" + } + }, + "postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", + "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", + "dev": true, + "requires": { + "is-svg": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dev": true, + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "dev": true + }, + "pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-2.0.0.tgz", + "integrity": "sha1-+sY6Cz0R3qy7CWmrzJOyFLzhntU=", + "dev": true, + "requires": { + "speedometer": "~1.0.0", + "through2": "~2.0.3" + } + }, + "proxy-middleware": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.15.0.tgz", + "integrity": "sha1-o/3xvvtzD5UZZYcqwvYHTGFHelY=", + "dev": true + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": true + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "purgecss": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-2.3.0.tgz", + "integrity": "sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==", + "requires": { + "commander": "^5.0.0", + "glob": "^7.0.0", + "postcss": "7.0.32", + "postcss-selector-parser": "^6.0.2" + }, + "dependencies": { + "postcss": { + "version": "7.0.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", + "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + } + } + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "dev": true + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz", + "integrity": "sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==", + "dev": true + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + } + }, + "read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", + "dev": true, + "requires": { + "mute-stream": "~0.0.4" + } + }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", + "dev": true, + "requires": { + "pify": "^2.3.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "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" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "reduce-css-calc": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", + "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", + "requires": { + "css-unit-converter": "^1.1.1", + "postcss-value-parser": "^3.3.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "registry-auth-token": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz", + "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==", + "dev": true, + "requires": { + "rc": "^1.1.6", + "safe-buffer": "^5.0.1" + } + }, + "registry-url": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", + "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", + "dev": true, + "requires": { + "rc": "^1.0.1" + } + }, + "remove-markdown": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/remove-markdown/-/remove-markdown-0.2.2.tgz", + "integrity": "sha1-ZrDO66n7d8qWNrsbAwfOIaMqEqY=", + "dev": true + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "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.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "dev": true + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "dev": true + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "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" + } + }, + "rxjs": { + "version": "6.6.3", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz", + "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "semver-diff": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", + "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", + "dev": true, + "requires": { + "semver": "^5.0.3" + } + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + } + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "shelljs": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz", + "integrity": "sha1-NZbmMHp4FUT1kfN9phg2DzHbV7E=", + "dev": true + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "dev": true + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "spawn-command": { + "version": "0.0.2-1", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", + "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", + "dev": true + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", + "dev": true + }, + "speedometer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz", + "integrity": "sha1-zWccsGdSwivKM3Di8zREC+T8YuI=", + "dev": true + }, + "split": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", + "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", + "dev": true, + "requires": { + "through": "2" + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dev": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + }, + "stream-combiner": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", + "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", + "dev": true, + "requires": { + "duplexer": "~0.1.1" + } + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "string.prototype.trimend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", + "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", + "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dev": true, + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "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" + } + }, + "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 + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + } + }, + "tailwindcss": { + "version": "1.9.6", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-1.9.6.tgz", + "integrity": "sha512-nY8WYM/RLPqGsPEGEV2z63riyQPcHYZUJpAwdyBzVpxQHOHqHE+F/fvbCeXhdF1+TA5l72vSkZrtYCB9hRcwkQ==", + "requires": { + "@fullhuman/postcss-purgecss": "^2.1.2", + "autoprefixer": "^9.4.5", + "browserslist": "^4.12.0", + "bytes": "^3.0.0", + "chalk": "^3.0.0 || ^4.0.0", + "color": "^3.1.2", + "detective": "^5.2.0", + "fs-extra": "^8.0.0", + "html-tags": "^3.1.0", + "lodash": "^4.17.20", + "node-emoji": "^1.8.1", + "normalize.css": "^8.0.1", + "object-hash": "^2.0.3", + "postcss": "^7.0.11", + "postcss-functions": "^3.0.0", + "postcss-js": "^2.0.0", + "postcss-nested": "^4.1.1", + "postcss-selector-parser": "^6.0.0", + "postcss-value-parser": "^4.1.0", + "pretty-hrtime": "^1.0.3", + "reduce-css-calc": "^2.1.6", + "resolve": "^1.14.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==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "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==" + }, + "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==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + } + }, + "term-size": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", + "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", + "dev": true, + "requires": { + "execa": "^0.7.0" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "dev": true + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "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-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "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 + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", + "dev": true + }, + "unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "dev": true, + "requires": { + "crypto-random-string": "^1.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unix-crypt-td-js": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz", + "integrity": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "unzip-response": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", + "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", + "dev": true + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "update-notifier": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", + "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", + "dev": true, + "requires": { + "boxen": "^1.2.1", + "chalk": "^2.0.1", + "configstore": "^3.0.0", + "import-lazy": "^2.1.0", + "is-ci": "^1.0.10", + "is-installed-globally": "^0.1.0", + "is-npm": "^1.0.0", + "latest-version": "^3.0.0", + "semver-diff": "^2.0.0", + "xdg-basedir": "^3.0.0" + } + }, + "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" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "dev": true, + "requires": { + "prepend-http": "^1.0.1" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "util-extend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", + "integrity": "sha1-p8IW0mdUUWljeztu3GypEZ4v+T8=", + "dev": true + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", + "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } + } + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "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" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "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-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "widest-line": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", + "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", + "dev": true, + "requires": { + "string-width": "^2.1.1" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "xdg-basedir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", + "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "y18n": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz", + "integrity": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==", + "dev": true + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.6", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.6.tgz", + "integrity": "sha512-AP1+fQIWSM/sMiET8fyayjx/J+JmTPt2Mr0FkrgqB4todtfa53sOsrSAcIrJRD5XS20bKUwaDIuMkWKCEiQLKA==", + "dev": true + } + } +} diff --git a/package.json b/package.json index aa662635b88..0521bd9b02a 100644 --- a/package.json +++ b/package.json @@ -36,17 +36,17 @@ "tailwindcss": "^1.7.2" }, "devDependencies": { + "autoprefixer": "^9.8.6", "concurrently": "^6.0.0", "cross-env": "^7.0.3", + "cssnano": "^4.1.10", "gh-release": "3.5.0", "live-server": "^1.2.1", - "postcss-cli": "^7.1.1", - "autoprefixer": "^9.8.6" + "postcss-cli": "^7.1.1" }, "scripts": { "release": "gh-release", "start": "cross-env NODE_ENV=development concurrently \"postcss tailwind.css -o docs/tailwind.css --watch\" \"live-server ./docs\" ", - "development": "cross-env NODE_ENV=development postcss tailwind.css -o docs/tailwind.css", - "production": "cross-env NODE_ENV=production postcss tailwind.css -o dist/tailwind.css" + "dist": "cross-env NODE_ENV=production postcss tailwind.css -o dist/tailwind.css" } } From 24712ed14024aa1f94a90efe951aa7ef090b3cb3 Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 22 Feb 2021 17:21:46 -0800 Subject: [PATCH 004/696] purge CSS on docs build --- CONTRIBUTING.md | 4 ++++ docs/index.html | 6 +++--- docs/postcss.config.js | 9 +++++++++ docs/tailwind.config.js | 5 +++++ package-lock.json | 10 ++++++++++ package.json | 5 ++++- 6 files changed, 35 insertions(+), 4 deletions(-) create mode 100644 docs/postcss.config.js create mode 100644 docs/tailwind.config.js diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1d3f58ddb51..3b2ac8abc5b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -66,3 +66,7 @@ git push origin fix/something 3. Run `npm run dist` to make sure the `dist/` files are updated. 4. Make sure `Esri/calcite-tailwind` is up-to-date with your changes (via Pull Request). 5. Run `npm run release`. If prompted enter your GitHub credentials. + +## Updating the documentation + +1. `npm run gh-pages` to build the docs and deploy to https://esri.github.io/calcite-tailwind diff --git a/docs/index.html b/docs/index.html index bcd24539d64..b3947c9ca5a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,7 +2,7 @@ - Calcite Base + Calcite Tailwind @@ -14,7 +14,7 @@
@@ -68,7 +68,7 @@

Calcite Base

Overview

For the most part, Calcite leverages the built in classes supplied by Tailwind. For more information about tailwind classes, see the tailwind documentation. This guide is intended to be a "cheat sheet" for quickly viewing what's available.

-

Calcite base includes some customization of Tailwind in terms of how to use color, etc. Browse the sections below to see what classes are included in Calcite's tailwind config.

+

Calcite Tailwind includes some customization of Tailwind in terms of how to use color, etc. Browse the sections below to see what classes are included in Calcite's tailwind config.

Spacing

diff --git a/docs/postcss.config.js b/docs/postcss.config.js new file mode 100644 index 00000000000..2b28849bae4 --- /dev/null +++ b/docs/postcss.config.js @@ -0,0 +1,9 @@ +module.exports = { + plugins: [ + require("tailwindcss")({ + config: 'docs/tailwind.config.js' + }), + require("autoprefixer"), + ...(process.env.NODE_ENV === "production" ? [require("cssnano")] : []), + ], +}; diff --git a/docs/tailwind.config.js b/docs/tailwind.config.js new file mode 100644 index 00000000000..c364961c317 --- /dev/null +++ b/docs/tailwind.config.js @@ -0,0 +1,5 @@ +var config = require("../tailwind.config"); +module.exports = { + purge: ["./docs/index.html"], + ...config +} diff --git a/package-lock.json b/package-lock.json index 484c140bfff..953805e127d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2267,6 +2267,16 @@ "xtend": "~4.0.1" } }, + "git-directory-deploy": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/git-directory-deploy/-/git-directory-deploy-1.5.1.tgz", + "integrity": "sha1-xPrYwnDWeNXzCfvd6sHtpgytf9I=", + "dev": true, + "requires": { + "lodash": "^4.14.2", + "minimist": "^1.1.0" + } + }, "github-url-to-object": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/github-url-to-object/-/github-url-to-object-3.1.0.tgz", diff --git a/package.json b/package.json index 0521bd9b02a..86dbd775ecb 100644 --- a/package.json +++ b/package.json @@ -41,12 +41,15 @@ "cross-env": "^7.0.3", "cssnano": "^4.1.10", "gh-release": "3.5.0", + "git-directory-deploy": "^1.5.1", "live-server": "^1.2.1", "postcss-cli": "^7.1.1" }, "scripts": { "release": "gh-release", "start": "cross-env NODE_ENV=development concurrently \"postcss tailwind.css -o docs/tailwind.css --watch\" \"live-server ./docs\" ", - "dist": "cross-env NODE_ENV=production postcss tailwind.css -o dist/tailwind.css" + "docs": "cross-env NODE_ENV=production concurrently \"postcss tailwind.css -o docs/tailwind.css --config ./docs/postcss.config.js\"", + "dist": "cross-env NODE_ENV=production postcss tailwind.css -o dist/tailwind.css", + "gh-pages": "npm run docs && git-directory-deploy --directory dist --branch gh-pages" } } From 2dc6f81655f8afaf09423aa1f50fa2a9a37fdd26 Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 22 Feb 2021 17:34:15 -0800 Subject: [PATCH 005/696] add gh-pages deploy --- package-lock.json | 232 ++++++++++++++++++++++++++++++++++++++++++++-- package.json | 4 +- 2 files changed, 228 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index 953805e127d..66388886e1f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -77,6 +77,119 @@ "fastq": "^1.6.0" } }, + "@storybook/storybook-deployer": { + "version": "2.8.7", + "resolved": "https://registry.npmjs.org/@storybook/storybook-deployer/-/storybook-deployer-2.8.7.tgz", + "integrity": "sha512-O0hKHV6hg93fPMvKGC5M/sd7KTL473+SzMKm+WZNVEyLEfXXcVU+Ts9/VL1IhmC1P2A8Bg9oBnkcPqAqjAN46w==", + "dev": true, + "requires": { + "git-url-parse": "^11.1.2", + "glob": "^7.1.3", + "parse-repo": "^1.0.4", + "shelljs": "^0.8.1", + "yargs": "^15.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "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" + } + }, + "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 + }, + "shelljs": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz", + "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, + "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.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "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" + } + }, + "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" + } + } + } + }, "@types/normalize-package-data": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", @@ -1970,6 +2083,12 @@ } } }, + "filter-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", + "integrity": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=", + "dev": true + }, "finalhandler": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", @@ -2267,14 +2386,23 @@ "xtend": "~4.0.1" } }, - "git-directory-deploy": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/git-directory-deploy/-/git-directory-deploy-1.5.1.tgz", - "integrity": "sha1-xPrYwnDWeNXzCfvd6sHtpgytf9I=", + "git-up": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-4.0.2.tgz", + "integrity": "sha512-kbuvus1dWQB2sSW4cbfTeGpCMd8ge9jx9RKnhXhuJ7tnvT+NIrTVfYZxjtflZddQYcmdOTlkAcjmx7bor+15AQ==", "dev": true, "requires": { - "lodash": "^4.14.2", - "minimist": "^1.1.0" + "is-ssh": "^1.3.0", + "parse-url": "^5.0.0" + } + }, + "git-url-parse": { + "version": "11.4.4", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.4.4.tgz", + "integrity": "sha512-Y4o9o7vQngQDIU9IjyCmRJBin5iYjI5u9ZITnddRZpD7dcCFQj2sL2XuMNbLRE4b4B/4ENPsp2Q8P44fjAZ0Pw==", + "dev": true, + "requires": { + "git-up": "^4.0.0" } }, "github-url-to-object": { @@ -2747,6 +2875,12 @@ } } }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, "is-absolute-url": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", @@ -3003,6 +3137,15 @@ "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", "dev": true }, + "is-ssh": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.2.tgz", + "integrity": "sha512-elEw0/0c2UscLrNG+OAorbP539E3rhliKPg+hDMWN9VwrDXfYK+4PBEykDPfxlYYtQvl84TascnQyobfQLHEhQ==", + "dev": true, + "requires": { + "protocols": "^1.1.0" + } + }, "is-stream": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", @@ -3748,6 +3891,44 @@ "lines-and-columns": "^1.1.6" } }, + "parse-path": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-4.0.3.tgz", + "integrity": "sha512-9Cepbp2asKnWTJ9x2kpw6Fe8y9JDbqwahGCTvklzd/cEq5C5JC59x2Xb0Kx+x0QZ8bvNquGO8/BWP0cwBHzSAA==", + "dev": true, + "requires": { + "is-ssh": "^1.3.0", + "protocols": "^1.4.0", + "qs": "^6.9.4", + "query-string": "^6.13.8" + }, + "dependencies": { + "qs": { + "version": "6.9.6", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz", + "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==", + "dev": true + } + } + }, + "parse-repo": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/parse-repo/-/parse-repo-1.0.4.tgz", + "integrity": "sha1-dLkdLLhnXRG5mXagBl9s4X+hvMg=", + "dev": true + }, + "parse-url": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-5.0.2.tgz", + "integrity": "sha512-Czj+GIit4cdWtxo3ISZCvLiUjErSo0iI3wJ+q9Oi3QuMYTI6OZu+7cewMWZ+C1YAnKhYTk6/TLuhIgCypLthPA==", + "dev": true, + "requires": { + "is-ssh": "^1.3.0", + "normalize-url": "^3.3.0", + "parse-path": "^4.0.0", + "protocols": "^1.4.0" + } + }, "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -4688,6 +4869,12 @@ "through2": "~2.0.3" } }, + "protocols": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", + "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==", + "dev": true + }, "proxy-middleware": { "version": "0.15.0", "resolved": "https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.15.0.tgz", @@ -4747,6 +4934,18 @@ "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", "dev": true }, + "query-string": { + "version": "6.14.0", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.0.tgz", + "integrity": "sha512-In3o+lUxlgejoVJgwEdYtdxrmlL0cQWJXj0+kkI7RWVo7hg5AhFtybeKlC9Dpgbr8eOC4ydpEh8017WwyfzqVQ==", + "dev": true, + "requires": { + "decode-uri-component": "^0.2.0", + "filter-obj": "^1.1.0", + "split-on-first": "^1.0.0", + "strict-uri-encode": "^2.0.0" + } + }, "queue-microtask": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz", @@ -4835,6 +5034,15 @@ "readable-stream": "^2.0.2" } }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, "reduce-css-calc": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", @@ -5420,6 +5628,12 @@ "through": "2" } }, + "split-on-first": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", + "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", + "dev": true + }, "split-string": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", @@ -5494,6 +5708,12 @@ "duplexer": "~0.1.1" } }, + "strict-uri-encode": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", + "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", + "dev": true + }, "string-width": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", diff --git a/package.json b/package.json index 86dbd775ecb..5f9e9316d38 100644 --- a/package.json +++ b/package.json @@ -36,12 +36,12 @@ "tailwindcss": "^1.7.2" }, "devDependencies": { + "@storybook/storybook-deployer": "^2.8.7", "autoprefixer": "^9.8.6", "concurrently": "^6.0.0", "cross-env": "^7.0.3", "cssnano": "^4.1.10", "gh-release": "3.5.0", - "git-directory-deploy": "^1.5.1", "live-server": "^1.2.1", "postcss-cli": "^7.1.1" }, @@ -50,6 +50,6 @@ "start": "cross-env NODE_ENV=development concurrently \"postcss tailwind.css -o docs/tailwind.css --watch\" \"live-server ./docs\" ", "docs": "cross-env NODE_ENV=production concurrently \"postcss tailwind.css -o docs/tailwind.css --config ./docs/postcss.config.js\"", "dist": "cross-env NODE_ENV=production postcss tailwind.css -o dist/tailwind.css", - "gh-pages": "npm run docs && git-directory-deploy --directory dist --branch gh-pages" + "gh-pages": "npm run docs && storybook-to-ghpages --existing-output-dir=docs" } } From 2d8460c5fb42a98bc0c8e50947af3b76dbdf2fb0 Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 22 Feb 2021 17:36:38 -0800 Subject: [PATCH 006/696] clean up after gh-pages deployments --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 5f9e9316d38..ffe44032ccd 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,7 @@ "start": "cross-env NODE_ENV=development concurrently \"postcss tailwind.css -o docs/tailwind.css --watch\" \"live-server ./docs\" ", "docs": "cross-env NODE_ENV=production concurrently \"postcss tailwind.css -o docs/tailwind.css --config ./docs/postcss.config.js\"", "dist": "cross-env NODE_ENV=production postcss tailwind.css -o dist/tailwind.css", - "gh-pages": "npm run docs && storybook-to-ghpages --existing-output-dir=docs" + "gh-pages": "npm run docs && storybook-to-ghpages --existing-output-dir=docs", + "postgh-pages": "git checkout -- docs" } } From ede3541cd860a6607cebfea9f40d0e8431ef80a1 Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 22 Feb 2021 17:39:10 -0800 Subject: [PATCH 007/696] add warning to README --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e20eb8264b7..1c75dbfb29d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ The calcite-tailwind repository holds the tailwind configuration used to build calcite-components. +:warning: Warning! :warning: + +> This package is currently in its very early stages of development. The Tailwind config will change as we begin to adopt it. Until version 1.0.0 minor versions could contain breaking changes to class names! + ## Install If you use npm, installation is as easy as: From d8ff1d608463a6e29090a1488cfb96afdc219cf3 Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 22 Feb 2021 17:48:03 -0800 Subject: [PATCH 008/696] :package: v0.1.0 --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6637e04998..acf7870e05a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,3 +3,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [0.1.0] - 2021-02-22 +### Added +- Initial tailwind config version featuring: + - colors + - borders + - shadows + - typography + - layout + - + more! From 742c70616932b98b39a00b3912513f9324fbfd1b Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 22 Feb 2021 17:52:26 -0800 Subject: [PATCH 009/696] update docs meta description --- docs/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index b3947c9ca5a..c6c682260ac 100644 --- a/docs/index.html +++ b/docs/index.html @@ -3,7 +3,7 @@ Calcite Tailwind - + From c172d506c3228cc3d8f42f5eae9a751477b1cdd4 Mon Sep 17 00:00:00 2001 From: Paul C Pederson Date: Mon, 5 Apr 2021 15:46:43 -0700 Subject: [PATCH 010/696] update name, update tailwind config --- README.md | 22 +- docs/index.html | 4 +- package-lock.json | 1156 ++++++++++++++++++++++++-------------------- package.json | 8 +- tailwind.config.js | 35 +- 5 files changed, 673 insertions(+), 552 deletions(-) diff --git a/README.md b/README.md index 1c75dbfb29d..d2b0fcc13a2 100644 --- a/README.md +++ b/README.md @@ -1,29 +1,29 @@ -# Calcite Tailwind +# Calcite Styles -The calcite-tailwind repository holds the tailwind configuration used to build calcite-components. +The calcite-styles repository holds the shared styles and Tailwind configuration used to build calcite-components. :warning: Warning! :warning: -> This package is currently in its very early stages of development. The Tailwind config will change as we begin to adopt it. Until version 1.0.0 minor versions could contain breaking changes to class names! +> This package is currently in its very early stages of development. The styles config will change as we begin to adopt it. Until version 1.0.0 minor versions could contain breaking changes to class names! ## Install If you use npm, installation is as easy as: ``` -npm install @esri/calcite-tailwind +npm install @esri/calcite-styles ``` -You can also [download the latest release manually](https://github.com/Esri/calcite-tailwind/releases). +You can also [download the latest release manually](https://github.com/Esri/calcite-styles/releases). _Note_: this project assumes you have the light and dark theme variables defined on your page. If you're using calcite components, these will already be defined for you. If not, please see [calcite-colors](https://github.com/Esri/calcite-colors/) for steps on how to import the theme. -### PostCSS/Tailwind +### PostCSS/styles -To add Calcite's Tailwind configuration to your project you can simply import it in your `tailwind.config.js` file: +To add Calcite's tailwind configuration to your project you can simply import it in your `styles.config.js` file: ```js -var calciteTheme = require("@esri/calcite-tailwind"); +var calciteTheme = require("@esri/calcite-styles"); module.exports = { purge: ["./public/**/*.html"], // make sure to purge any unused CSS by passing in your HTML here @@ -33,7 +33,7 @@ module.exports = { ### CSS -A static CSS file is also provided at `dist/tailwind.css`. When using this option it's a good idea to use nano or another CSS optimization tool to remove the unused classes as the default build can be quite large. +A static CSS file is also provided at `dist/styles.css`. This file is a full build of the Tailwind utility classes. When using this option it's a good idea to use nano or another CSS optimization tool to remove the unused classes as the default build can be quite large. ### Use @@ -46,7 +46,7 @@ In HTML, you can use the classes directly:

``` -If you'd like to add styles from the tailwind set to an existing set, you can use `@apply`: +If you'd like to add styles from the the tailwind set to an existing element in CSS, you can use `@apply`: ```css .my-class { @@ -58,7 +58,7 @@ _Note_: this requires you set up via PostCSS (see above). ### Tips -If you're a VS Code user, the [Tailwind CSS IntelliSense](https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-tailwindcss) plugin will provide auto-complete for the classes, making it much faster to develop styles! +If you're a VS Code user, the [styles CSS IntelliSense](https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-stylescss) plugin will provide auto-complete for the classes, making it much faster to develop styles! ## Licensing diff --git a/docs/index.html b/docs/index.html index c6c682260ac..565119afc98 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,7 +2,7 @@ - Calcite Tailwind + Calcite Styles @@ -14,7 +14,7 @@
diff --git a/package-lock.json b/package-lock.json index 66388886e1f..9650f91cb48 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "@esri/calcite-tailwind", + "name": "@esri/calcite-styles", "version": "0.1.0", "lockfileVersion": 1, "requires": true, @@ -20,14 +20,36 @@ "dev": true }, "@babel/highlight": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz", - "integrity": "sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==", + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz", + "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==", "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.12.11", "chalk": "^2.0.0", "js-tokens": "^4.0.0" + }, + "dependencies": { + "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" + } + }, + "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" + } + } } }, "@fullhuman/postcss-purgecss": { @@ -39,6 +61,26 @@ "purgecss": "^2.3.0" }, "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, "postcss": { "version": "7.0.32", "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", @@ -88,106 +130,6 @@ "parse-repo": "^1.0.4", "shelljs": "^0.8.1", "yargs": "^15.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "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" - } - }, - "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 - }, - "shelljs": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz", - "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", - "dev": true, - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - } - }, - "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.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", - "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", - "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" - } - }, - "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" - } - } } }, "@types/normalize-package-data": { @@ -656,6 +598,23 @@ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", "dev": true }, + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true + }, + "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" + } + }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", @@ -680,6 +639,15 @@ "requires": { "ansi-regex": "^3.0.0" } + }, + "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" + } } } }, @@ -790,9 +758,9 @@ "dev": true }, "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, "camelcase-css": { @@ -813,9 +781,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001191", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz", - "integrity": "sha512-xJJqzyd+7GCJXkcoBiQ1GuxEiOBCLQ0aVW9HMekifZsAVGdj5eJ4mFB9fEhSHipq9IOk/QXFJUiIr9lZT+EsGw==" + "version": "1.0.30001207", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001207.tgz", + "integrity": "sha512-UPQZdmAsyp2qfCTiMU/zqGSWOYaY9F9LL61V8f+8MrubsaDGpaHD9HRV/EWZGULZn0Hxu48SKzI5DgFwTvHuYw==" }, "capture-stack-trace": { "version": "1.0.1", @@ -830,21 +798,46 @@ "dev": true }, "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.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==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "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==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "requires": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" } } } @@ -936,14 +929,14 @@ "dev": true }, "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "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": "^7.0.0" + "wrap-ansi": "^6.2.0" } }, "coa": { @@ -955,6 +948,28 @@ "@types/q": "^1.5.1", "chalk": "^2.4.1", "q": "^1.1.2" + }, + "dependencies": { + "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" + } + }, + "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" + } + } } }, "code-point-at": { @@ -996,18 +1011,18 @@ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "color-string": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", - "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", + "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", "requires": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" } }, "colorette": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", - "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==" + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", + "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" }, "colors": { "version": "1.4.0", @@ -1041,9 +1056,9 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "concurrently": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-6.0.0.tgz", - "integrity": "sha512-Ik9Igqnef2ONLjN2o/OVx1Ow5tymVvvEwQeYCQdD/oV+CN9oWhxLk7ibcBdOtv0UzBqHCEKRwbKceYoTK8t3fQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-6.0.1.tgz", + "integrity": "sha512-YCF/Wf31a910hXu7eGN9/SyHKD/usw3Shw4IPYuqIsxxC39v92engYlIlOs/zXnBJtX/6aVuhgzfhZeGJkhU4w==", "dev": true, "requires": { "chalk": "^4.1.0", @@ -1066,25 +1081,15 @@ "color-convert": "^2.0.1" } }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "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" - } - } + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, "color-convert": { @@ -1116,6 +1121,44 @@ "requires": { "has-flag": "^4.0.0" } + }, + "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" + } + }, + "y18n": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.6.tgz", + "integrity": "sha512-PlVX4Y0lDTN6E2V4ES2tEdyvXkeKzxa8c/vo0pxPr/TqbztddTP0yn7zZylIyiAuxerqj0Q5GhpJ1YJCP8LaZQ==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.7", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz", + "integrity": "sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==", + "dev": true } } }, @@ -1131,6 +1174,23 @@ "unique-string": "^1.0.0", "write-file-atomic": "^2.0.0", "xdg-basedir": "^3.0.0" + }, + "dependencies": { + "dot-prop": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz", + "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==", + "dev": true, + "requires": { + "is-obj": "^1.0.0" + } + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "dev": true + } } }, "connect": { @@ -1379,9 +1439,9 @@ }, "dependencies": { "css-tree": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz", - "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", "dev": true, "requires": { "mdn-data": "2.0.14", @@ -1406,9 +1466,9 @@ } }, "date-fns": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.17.0.tgz", - "integrity": "sha512-ZEhqxUtEZeGgg9eHNSOAJ8O9xqSgiJdrL0lzSSfMF54x6KXWJiOH/xntSJ9YomJPrYH/p08t6gWjGWq1SDJlSA==", + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.19.0.tgz", + "integrity": "sha512-X3bf2iTPgCAQp9wvjOQytnf5vO5rESYRXlPIVcgSbtT5OTScPcsf9eZU+B/YIkKAtYr5WeCii58BgATrNitlWg==", "dev": true }, "debug": { @@ -1547,9 +1607,9 @@ }, "dependencies": { "domelementtype": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", - "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", "dev": true } } @@ -1571,12 +1631,12 @@ } }, "dot-prop": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz", - "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==", + "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": "^1.0.0" + "is-obj": "^2.0.0" } }, "duplexer": { @@ -1643,9 +1703,9 @@ "dev": true }, "electron-to-chromium": { - "version": "1.3.671", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.671.tgz", - "integrity": "sha512-RTD97QkdrJKaKwRv9h/wGAaoR2lGxNXEcBXS31vjitgTPwTWAbLdS7cEsBK68eEQy7p6YyT8D5BxBEYHu2SuwQ==" + "version": "1.3.708", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.708.tgz", + "integrity": "sha512-+A8ggYZ5riOLMcVAuzHx6bforaPzaiLnW1QOMD2SlMYQVi7QQTyQ/WrlZoebIH9ikmgr+tLJGpNITFFCUiQcPw==" }, "emoji-regex": { "version": "8.0.0", @@ -1672,28 +1732,38 @@ "dev": true, "requires": { "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + } } }, "es-abstract": { - "version": "1.18.0-next.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", - "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", + "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", "dev": true, "requires": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2", + "get-intrinsic": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.1", + "is-regex": "^1.1.2", + "is-string": "^1.0.5", "object-inspect": "^1.9.0", "object-keys": "^1.1.1", "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.3", - "string.prototype.trimstart": "^1.0.3" + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.0" } }, "es-to-primitive": { @@ -1985,9 +2055,9 @@ } }, "glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "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" @@ -2027,9 +2097,9 @@ "dev": true }, "fastq": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.10.1.tgz", - "integrity": "sha512-AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA==", + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", + "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", "dev": true, "requires": { "reusify": "^1.0.4" @@ -2159,15 +2229,13 @@ "dev": true }, "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "requires": { - "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" } }, "fs.realpath": { @@ -2333,6 +2401,12 @@ "supports-color": "^2.0.0" } }, + "shelljs": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz", + "integrity": "sha1-NZbmMHp4FUT1kfN9phg2DzHbV7E=", + "dev": true + }, "strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", @@ -2458,9 +2532,9 @@ } }, "globby": { - "version": "11.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz", - "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", + "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", "dev": true, "requires": { "array-union": "^2.1.0", @@ -2536,15 +2610,21 @@ } } }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "dev": true + }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, "has-symbols": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", - "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", "dev": true }, "has-unicode": { @@ -2823,6 +2903,17 @@ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", "dev": true }, + "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" + } + }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", @@ -2872,6 +2963,15 @@ "dev": true } } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -2908,9 +3008,14 @@ } }, "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "is-bigint": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", + "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==", "dev": true }, "is-binary-path": { @@ -2922,6 +3027,15 @@ "binary-extensions": "^1.0.0" } }, + "is-boolean-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", + "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", + "dev": true, + "requires": { + "call-bind": "^1.0.0" + } + }, "is-buffer": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", @@ -3085,10 +3199,16 @@ } } }, + "is-number-object": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", + "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==", + "dev": true + }, "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true }, "is-path-inside": { @@ -3152,6 +3272,12 @@ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", "dev": true }, + "is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", + "dev": true + }, "is-svg": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", @@ -3271,13 +3397,11 @@ "dev": true }, "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" + "graceful-fs": "^4.1.6" } }, "jsprim": { @@ -3386,6 +3510,28 @@ "dev": true, "requires": { "chalk": "^2.0.1" + }, + "dependencies": { + "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" + } + }, + "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" + } + } } }, "lowercase-keys": { @@ -3474,18 +3620,18 @@ "dev": true }, "mime-db": { - "version": "1.46.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", - "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", + "version": "1.47.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz", + "integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==", "dev": true }, "mime-types": { - "version": "2.1.29", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", - "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", + "version": "2.1.30", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz", + "integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==", "dev": true, "requires": { - "mime-db": "1.46.0" + "mime-db": "1.47.0" } }, "mimic-fn": { @@ -3603,9 +3749,9 @@ } }, "node-releases": { - "version": "1.1.70", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz", - "integrity": "sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==" + "version": "1.1.71", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", + "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" }, "normalize-package-data": { "version": "2.5.0", @@ -3779,14 +3925,14 @@ } }, "object.values": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz", - "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz", + "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==", "dev": true, "requires": { - "call-bind": "^1.0.0", + "call-bind": "^1.0.2", "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.1", + "es-abstract": "^1.18.0-next.2", "has": "^1.0.3" } }, @@ -3901,14 +4047,6 @@ "protocols": "^1.4.0", "qs": "^6.9.4", "query-string": "^6.13.8" - }, - "dependencies": { - "qs": { - "version": "6.9.6", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz", - "integrity": "sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ==", - "dev": true - } } }, "parse-repo": { @@ -4022,6 +4160,28 @@ "chalk": "^2.4.2", "source-map": "^0.6.1", "supports-color": "^6.1.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + } } }, "postcss-calc": { @@ -4055,15 +4215,6 @@ "yargs": "^15.0.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" - } - }, "anymatch": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", @@ -4089,22 +4240,6 @@ "fill-range": "^7.0.1" } }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, "chokidar": { "version": "3.5.1", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", @@ -4121,32 +4256,6 @@ "readdirp": "~3.5.0" } }, - "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" - } - }, - "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 - }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -4156,6 +4265,18 @@ "to-regex-range": "^5.0.1" } }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, "fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", @@ -4164,20 +4285,14 @@ "optional": true }, "glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "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" } }, - "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 - }, "is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", @@ -4193,6 +4308,16 @@ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, "readdirp": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", @@ -4202,15 +4327,6 @@ "picomatch": "^2.2.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" - } - }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -4220,51 +4336,11 @@ "is-number": "^7.0.0" } }, - "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.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", - "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "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" - } - }, - "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" - } } } }, @@ -4354,6 +4430,16 @@ "postcss-value-parser": "^3.3.0" }, "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, "postcss": { "version": "6.0.23", "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", @@ -4432,21 +4518,6 @@ "vendors": "^1.0.0" }, "dependencies": { - "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" - } - }, - "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 - }, "postcss-selector-parser": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", @@ -4532,21 +4603,6 @@ "postcss-selector-parser": "^3.0.0" }, "dependencies": { - "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" - } - }, - "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 - }, "postcss-selector-parser": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", @@ -4793,6 +4849,28 @@ "lodash": "^4.17.11", "log-symbols": "^2.2.0", "postcss": "^7.0.7" + }, + "dependencies": { + "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" + } + }, + "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" + } + } } }, "postcss-selector-parser": { @@ -4910,6 +4988,26 @@ "postcss-selector-parser": "^6.0.2" }, "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, "postcss": { "version": "7.0.32", "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", @@ -4929,15 +5027,18 @@ "dev": true }, "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true + "version": "6.10.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", + "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } }, "query-string": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.0.tgz", - "integrity": "sha512-In3o+lUxlgejoVJgwEdYtdxrmlL0cQWJXj0+kkI7RWVo7hg5AhFtybeKlC9Dpgbr8eOC4ydpEh8017WwyfzqVQ==", + "version": "6.14.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz", + "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==", "dev": true, "requires": { "decode-uri-component": "^0.2.0", @@ -4947,9 +5048,9 @@ } }, "queue-microtask": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz", - "integrity": "sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, "range-parser": { @@ -5138,6 +5239,14 @@ "tough-cookie": "~2.5.0", "tunnel-agent": "^0.6.0", "uuid": "^3.3.2" + }, + "dependencies": { + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + } } }, "require-directory": { @@ -5223,9 +5332,9 @@ } }, "rxjs": { - "version": "6.6.3", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz", - "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==", + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, "requires": { "tslib": "^1.9.0" @@ -5406,10 +5515,26 @@ "dev": true }, "shelljs": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz", - "integrity": "sha1-NZbmMHp4FUT1kfN9phg2DzHbV7E=", - "dev": true + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz", + "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, + "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.3", @@ -5423,13 +5548,6 @@ "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", "requires": { "is-arrayish": "^0.3.1" - }, - "dependencies": { - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } } }, "slash": { @@ -5715,9 +5833,9 @@ "dev": true }, "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", "dev": true, "requires": { "emoji-regex": "^8.0.0", @@ -5726,22 +5844,22 @@ } }, "string.prototype.trimend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", - "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", "dev": true, "requires": { - "call-bind": "^1.0.0", + "call-bind": "^1.0.2", "define-properties": "^1.1.3" } }, "string.prototype.trimstart": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", - "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", "dev": true, "requires": { - "call-bind": "^1.0.0", + "call-bind": "^1.0.2", "define-properties": "^1.1.3" } }, @@ -5786,21 +5904,6 @@ "postcss-selector-parser": "^3.0.0" }, "dependencies": { - "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" - } - }, - "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 - }, "postcss-selector-parser": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", @@ -5841,6 +5944,28 @@ "stable": "^0.1.8", "unquote": "~1.1.1", "util.promisify": "~1.0.0" + }, + "dependencies": { + "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" + } + }, + "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" + } + } } }, "tailwindcss": { @@ -5870,74 +5995,6 @@ "pretty-hrtime": "^1.0.3", "reduce-css-calc": "^2.1.6", "resolve": "^1.14.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==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "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==" - }, - "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==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } } }, "term-size": { @@ -6077,6 +6134,18 @@ "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, "union-value": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", @@ -6110,10 +6179,9 @@ } }, "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" }, "unix-crypt-td-js": { "version": "1.1.4", @@ -6201,6 +6269,28 @@ "latest-version": "^3.0.0", "semver-diff": "^2.0.0", "xdg-basedir": "^3.0.0" + }, + "dependencies": { + "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" + } + }, + "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" + } + } } }, "uri-js": { @@ -6254,27 +6344,6 @@ "es-abstract": "^1.17.2", "has-symbols": "^1.0.1", "object.getownpropertydescriptors": "^2.1.0" - }, - "dependencies": { - "es-abstract": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", - "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", - "dev": true, - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.2", - "is-regex": "^1.1.1", - "object-inspect": "^1.8.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.1", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" - } - } } }, "utils-merge": { @@ -6348,6 +6417,19 @@ "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.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", @@ -6445,9 +6527,9 @@ "dev": true }, "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "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", @@ -6509,9 +6591,9 @@ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" }, "y18n": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz", - "integrity": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", "dev": true }, "yallist": { @@ -6521,25 +6603,33 @@ "dev": true }, "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "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": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", + "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", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" } }, "yargs-parser": { - "version": "20.2.6", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.6.tgz", - "integrity": "sha512-AP1+fQIWSM/sMiET8fyayjx/J+JmTPt2Mr0FkrgqB4todtfa53sOsrSAcIrJRD5XS20bKUwaDIuMkWKCEiQLKA==", - "dev": true + "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" + } } } } diff --git a/package.json b/package.json index ffe44032ccd..39aae13a2b3 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { - "name": "@esri/calcite-tailwind", + "name": "@esri/calcite-styles", "version": "0.1.0", "description": "Shared Tailwind CSS Configuration for Esri's Calcite Design System", - "homepage": "https://github.com/Esri/calcite-tailwind", + "homepage": "https://github.com/Esri/calcite-styles", "main": "tailwind.config.js", "repository": { "type": "git", - "url": "git://github.com/Esri/calcite-tailwind.git" + "url": "git://github.com/Esri/calcite-styles.git" }, "author": { "name": "Esri" @@ -27,7 +27,7 @@ ], "license": "SEE LICENSE IN README.md", "bugs": { - "url": "https://github.com/esri/calcite-tailwind/issues" + "url": "https://github.com/esri/calcite-styles/issues" }, "files": [ "dist/" diff --git a/tailwind.config.js b/tailwind.config.js index bf561990da5..86f889ecc97 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,4 +1,5 @@ var flattenColorPalette = require('tailwindcss/lib/util/flattenColorPalette').default; + module.exports = { theme: { borderColor: theme => ({ @@ -6,7 +7,8 @@ module.exports = { 1: "var(--calcite-ui-border-1)", 2: "var(--calcite-ui-border-2)", 3: "var(--calcite-ui-border-3)", - input: "var(--calcite-ui-border-input)" + input: "var(--calcite-ui-border-input)", + transparent: theme("colors.transparent") }, "color-brand": theme("colors.brand"), "color-brand-hover": theme("colors.brand-hover"), @@ -65,9 +67,32 @@ module.exports = { 6: "var(--calcite-font-size-6)", // 48px 7: "var(--calcite-font-size-7)", // 56px 8: "var(--calcite-font-size-8)", // 64px + "-3h": [ "var(--calcite-font-size--3)", { lineHeight: '0.75rem' } ], // 10px (0.625rem) + "-2h": [ "var(--calcite-font-size--2)", { lineHeight: '1rem' } ], // 12px (0.75rem) + "-1h": [ "var(--calcite-font-size--1)", { lineHeight: '1rem' } ], // 14px (0.875rem) + "0h": [ "var(--calcite-font-size-0)", { lineHeight: '1.25rem' } ], // 16px (1rem) + "1h": [ "var(--calcite-font-size-1)", { lineHeight: '1.5rem' } ], // 18px (1.125rem) + "2h": [ "var(--calcite-font-size-2)", { lineHeight: '1.5rem' } ], // 20px (1.25rem) + "3h": [ "var(--calcite-font-size-3)", { lineHeight: '2rem' } ], // 26px (1.625rem) + "4h": [ "var(--calcite-font-size-4)", { lineHeight: '2.5rem' } ], // 32px (2rem) + "5h": [ "var(--calcite-font-size-5)", { lineHeight: '3rem' } ], // 40px (2.5rem) + "6h": [ "var(--calcite-font-size-6)", { lineHeight: '4rem' } ], // 48px (3rem) + "7h": [ "var(--calcite-font-size-7)", { lineHeight: '4rem' } ], // 56px (3.5rem) + "8h": [ "var(--calcite-font-size-8)", { lineHeight: '5rem' } ], // 64px (4rem) + "-3-wrap": [ "var(--calcite-font-size--3)", { lineHeight: '1.375' } ], + "-2-wrap": [ "var(--calcite-font-size--2)", { lineHeight: '1.375' } ], + "-1-wrap": [ "var(--calcite-font-size--1)", { lineHeight: '1.375' } ], + "0-wrap": [ "var(--calcite-font-size-0)", { lineHeight: '1.375' } ], + "1-wrap": [ "var(--calcite-font-size-1)", { lineHeight: '1.375' } ], + "2-wrap": [ "var(--calcite-font-size-2)", { lineHeight: '1.375' } ], + "3-wrap": [ "var(--calcite-font-size-3)", { lineHeight: '1.25' } ], + "4-wrap": [ "var(--calcite-font-size-4)", { lineHeight: '1.25' } ], + "5-wrap": [ "var(--calcite-font-size-5)", { lineHeight: '1.25' } ], + "6-wrap": [ "var(--calcite-font-size-6)", { lineHeight: '1.25' } ], + "7-wrap": [ "var(--calcite-font-size-7)", { lineHeight: '1.25' } ], + "8-wrap": [ "var(--calcite-font-size-8)", { lineHeight: '1.25' } ], }, fontWeight: { - // assets/styles/_type light: "var(--calcite-font-weight-light)", normal: "var(--calcite-font-weight-normal)", medium: "var(--calcite-font-weight-medium)", @@ -197,6 +222,12 @@ module.exports = { ".focus-inset": { "outline": "2px solid var(--calcite-ui-brand)", "outline-offset": "-2px" + }, + ".transition-default": { + "transition-property": "all", + "transition-duration": "150ms", + "transition-timing-function": "ease-in-out", + "transition-delay": "0s" } } addUtilities(newUtilities); From d792475cb42c3d482c2b2e5cac1b7b2facd52f6f Mon Sep 17 00:00:00 2001 From: Jack Rowlingson Date: Wed, 27 Oct 2021 15:34:51 -0400 Subject: [PATCH 011/696] sync config w/ @esri/calcitie-components@1.0.0-next.293 --- tailwind.config.js | 192 ++++++++++++++++++++++++--------------------- 1 file changed, 103 insertions(+), 89 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 86f889ecc97..f2f482946c4 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,8 +1,9 @@ -var flattenColorPalette = require('tailwindcss/lib/util/flattenColorPalette').default; +// eslint-disable-next-line @typescript-eslint/no-var-requires +var flattenColorPalette = require("tailwindcss/lib/util/flattenColorPalette").default; module.exports = { theme: { - borderColor: theme => ({ + borderColor: (theme) => ({ color: { 1: "var(--calcite-ui-border-1)", 2: "var(--calcite-ui-border-2)", @@ -18,16 +19,16 @@ module.exports = { "color-warning": theme("colors.warning"), "color-danger": theme("colors.danger"), "color-danger-hover": theme("colors.danger-hover"), - "color-danger-press": theme("colors.danger-press"), + "color-danger-press": theme("colors.danger-press") }), colors: { - "brand": "var(--calcite-ui-brand)", + brand: "var(--calcite-ui-brand)", "brand-hover": "var(--calcite-ui-brand-hover)", "brand-press": "var(--calcite-ui-brand-press)", - "info": "var(--calcite-ui-info)", - "success": "var(--calcite-ui-success)", - "warning": "var(--calcite-ui-warning)", - "danger": "var(--calcite-ui-danger)", + info: "var(--calcite-ui-info)", + success: "var(--calcite-ui-success)", + warning: "var(--calcite-ui-warning)", + danger: "var(--calcite-ui-danger)", "danger-hover": "var(--calcite-ui-danger-hover)", "danger-press": "var(--calcite-ui-danger-press)", background: { @@ -36,7 +37,7 @@ module.exports = { 1: "var(--calcite-ui-foreground-1)", 2: "var(--calcite-ui-foreground-2)", 3: "var(--calcite-ui-foreground-3)" - }, + } }, text: { 1: "var(--calcite-ui-text-1)", @@ -55,78 +56,81 @@ module.exports = { }, fontSize: { // assets/styles/_type - "-3": "var(--calcite-font-size--3)", // 10px - "-2": "var(--calcite-font-size--2)", // 12px - "-1": "var(--calcite-font-size--1)", // 14px - 0: "var(--calcite-font-size-0)", // 16px - 1: "var(--calcite-font-size-1)", // 18px - 2: "var(--calcite-font-size-2)", // 20px - 3: "var(--calcite-font-size-3)", // 26px - 4: "var(--calcite-font-size-4)", // 32px - 5: "var(--calcite-font-size-5)", // 40px - 6: "var(--calcite-font-size-6)", // 48px - 7: "var(--calcite-font-size-7)", // 56px - 8: "var(--calcite-font-size-8)", // 64px - "-3h": [ "var(--calcite-font-size--3)", { lineHeight: '0.75rem' } ], // 10px (0.625rem) - "-2h": [ "var(--calcite-font-size--2)", { lineHeight: '1rem' } ], // 12px (0.75rem) - "-1h": [ "var(--calcite-font-size--1)", { lineHeight: '1rem' } ], // 14px (0.875rem) - "0h": [ "var(--calcite-font-size-0)", { lineHeight: '1.25rem' } ], // 16px (1rem) - "1h": [ "var(--calcite-font-size-1)", { lineHeight: '1.5rem' } ], // 18px (1.125rem) - "2h": [ "var(--calcite-font-size-2)", { lineHeight: '1.5rem' } ], // 20px (1.25rem) - "3h": [ "var(--calcite-font-size-3)", { lineHeight: '2rem' } ], // 26px (1.625rem) - "4h": [ "var(--calcite-font-size-4)", { lineHeight: '2.5rem' } ], // 32px (2rem) - "5h": [ "var(--calcite-font-size-5)", { lineHeight: '3rem' } ], // 40px (2.5rem) - "6h": [ "var(--calcite-font-size-6)", { lineHeight: '4rem' } ], // 48px (3rem) - "7h": [ "var(--calcite-font-size-7)", { lineHeight: '4rem' } ], // 56px (3.5rem) - "8h": [ "var(--calcite-font-size-8)", { lineHeight: '5rem' } ], // 64px (4rem) - "-3-wrap": [ "var(--calcite-font-size--3)", { lineHeight: '1.375' } ], - "-2-wrap": [ "var(--calcite-font-size--2)", { lineHeight: '1.375' } ], - "-1-wrap": [ "var(--calcite-font-size--1)", { lineHeight: '1.375' } ], - "0-wrap": [ "var(--calcite-font-size-0)", { lineHeight: '1.375' } ], - "1-wrap": [ "var(--calcite-font-size-1)", { lineHeight: '1.375' } ], - "2-wrap": [ "var(--calcite-font-size-2)", { lineHeight: '1.375' } ], - "3-wrap": [ "var(--calcite-font-size-3)", { lineHeight: '1.25' } ], - "4-wrap": [ "var(--calcite-font-size-4)", { lineHeight: '1.25' } ], - "5-wrap": [ "var(--calcite-font-size-5)", { lineHeight: '1.25' } ], - "6-wrap": [ "var(--calcite-font-size-6)", { lineHeight: '1.25' } ], - "7-wrap": [ "var(--calcite-font-size-7)", { lineHeight: '1.25' } ], - "8-wrap": [ "var(--calcite-font-size-8)", { lineHeight: '1.25' } ], + "-3": "var(--calcite-font-size--3)", // 10px + "-2": "var(--calcite-font-size--2)", // 12px + "-1": "var(--calcite-font-size--1)", // 14px + 0: "var(--calcite-font-size-0)", // 16px + 1: "var(--calcite-font-size-1)", // 18px + 2: "var(--calcite-font-size-2)", // 20px + 3: "var(--calcite-font-size-3)", // 26px + 4: "var(--calcite-font-size-4)", // 32px + 5: "var(--calcite-font-size-5)", // 40px + 6: "var(--calcite-font-size-6)", // 48px + 7: "var(--calcite-font-size-7)", // 56px + 8: "var(--calcite-font-size-8)", // 64px + // TODO: temp selectors to be renamed before closing https://github.com/Esri/calcite-components/issues/1500. + // at this point all existing instances of text-N should be replaced with either text-Nh or text-N-wrap and we + // should be able to safely drop the "h" suffix. + "-3h": ["var(--calcite-font-size--3)", { lineHeight: "0.75rem" }], // 10px (0.625rem) + "-2h": ["var(--calcite-font-size--2)", { lineHeight: "1rem" }], // 12px (0.75rem) + "-1h": ["var(--calcite-font-size--1)", { lineHeight: "1rem" }], // 14px (0.875rem) + "0h": ["var(--calcite-font-size-0)", { lineHeight: "1.25rem" }], // 16px (1rem) + "1h": ["var(--calcite-font-size-1)", { lineHeight: "1.5rem" }], // 18px (1.125rem) + "2h": ["var(--calcite-font-size-2)", { lineHeight: "1.5rem" }], // 20px (1.25rem) + "3h": ["var(--calcite-font-size-3)", { lineHeight: "2rem" }], // 26px (1.625rem) + "4h": ["var(--calcite-font-size-4)", { lineHeight: "2.5rem" }], // 32px (2rem) + "5h": ["var(--calcite-font-size-5)", { lineHeight: "3rem" }], // 40px (2.5rem) + "6h": ["var(--calcite-font-size-6)", { lineHeight: "4rem" }], // 48px (3rem) + "7h": ["var(--calcite-font-size-7)", { lineHeight: "4rem" }], // 56px (3.5rem) + "8h": ["var(--calcite-font-size-8)", { lineHeight: "5rem" }], // 64px (4rem) + "-3-wrap": ["var(--calcite-font-size--3)", { lineHeight: "1.375" }], + "-2-wrap": ["var(--calcite-font-size--2)", { lineHeight: "1.375" }], + "-1-wrap": ["var(--calcite-font-size--1)", { lineHeight: "1.375" }], + "0-wrap": ["var(--calcite-font-size-0)", { lineHeight: "1.375" }], + "1-wrap": ["var(--calcite-font-size-1)", { lineHeight: "1.375" }], + "2-wrap": ["var(--calcite-font-size-2)", { lineHeight: "1.375" }], + "3-wrap": ["var(--calcite-font-size-3)", { lineHeight: "1.25" }], + "4-wrap": ["var(--calcite-font-size-4)", { lineHeight: "1.25" }], + "5-wrap": ["var(--calcite-font-size-5)", { lineHeight: "1.25" }], + "6-wrap": ["var(--calcite-font-size-6)", { lineHeight: "1.25" }], + "7-wrap": ["var(--calcite-font-size-7)", { lineHeight: "1.25" }], + "8-wrap": ["var(--calcite-font-size-8)", { lineHeight: "1.25" }] }, fontWeight: { + // assets/styles/_type light: "var(--calcite-font-weight-light)", normal: "var(--calcite-font-weight-normal)", medium: "var(--calcite-font-weight-medium)", bold: "var(--calcite-font-weight-bold)" }, screens: { - 's': '480px', - 'm': '864px', - 'l': '1024px', - 'xl': '1440px' + s: "480px", + m: "864px", + l: "1024px", + xl: "1440px" }, - textColor: theme => ({ + textColor: (theme) => ({ color: theme("colors.text") }), - backgroundColor: theme => ({ + backgroundColor: (theme) => ({ ...theme("colors.background"), transparent: theme("colors.transparent"), brand: theme("colors.brand"), "brand-hover": theme("colors.brand-hover"), "brand-press": theme("colors.brand-press"), - "brand": theme("colors.brand"), - "info": theme("colors.info"), - "success": theme("colors.success"), - "warning": theme("colors.warning"), - "danger": theme("colors.danger"), + info: theme("colors.info"), + success: theme("colors.success"), + warning: theme("colors.warning"), + danger: theme("colors.danger"), "danger-hover": theme("colors.danger-hover"), - "danger-press": theme("colors.danger-press"), + "danger-press": theme("colors.danger-press") }), extend: { animation: { - "in": "in 300ms ease-in-out", - "in-down": "in-down 300ms ease-in-out", - "in-up": "in-up 300ms ease-in-out", - "in-scale": "in-scale 300ms linear" + in: "in var(--calcite-animation-timing) ease-in-out", + "in-down": "in-down var(--calcite-animation-timing) ease-in-out", + "in-up": "in-up var(--calcite-animation-timing) ease-in-out", + "in-scale": "in-scale var(--calcite-animation-timing) linear" }, borderRadius: { half: "50%" @@ -139,15 +143,15 @@ module.exports = { 2: "0 6px 20px -4px rgba(0, 0, 0, 0.1), 0 4px 12px -2px rgba(0, 0, 0, 0.08)", "2-lg": "0 12px 32px -2px rgba(0, 0, 0, 0.1), 0 4px 20px 0 rgba(0, 0, 0, 0.08)", "2-sm": "0 2px 12px -4px rgba(0, 0, 0, 0.2), 0 2px 4px -2px rgba(0, 0, 0, 0.16)", - 'border-bottom': '0 1px 0 var(--calcite-ui-border-3)', - 'outline-active': '0 0 0 1px var(--calcite-ui-brand)', - 'none': 'none', + "border-bottom": "0 1px 0 var(--calcite-ui-border-3)", + "outline-active": "0 0 0 1px var(--calcite-ui-brand)", + none: "none" }, - fill: theme => ({ + fill: (theme) => ({ color: theme("colors.text") }), keyframes: { - "in": { + in: { "0%": { opacity: 0 }, @@ -187,12 +191,14 @@ module.exports = { } }, opacity: { - disabled: "0.5" + disabled: "var(--calcite-ui-opacity-disabled)" }, spacing: { - "0.5": "0.125rem", - "2.5": "0.625rem", - "3.5": "0.875rem" + 0.5: "0.125rem", + 2.5: "0.625rem", + 3.5: "0.875rem", + 9: "2.25rem", + 11: "2.75rem" }, transitionProperty: { margin: "margin", @@ -213,14 +219,22 @@ module.exports = { ".focus-base": { "outline-offset": 0, "outline-color": "transparent", - "transition": "outline-offset 100ms ease-in-out, outline-color 100ms ease-in-out" + transition: "outline-offset 100ms ease-in-out, outline-color 100ms ease-in-out" }, ".focus-outset": { - "outline": "2px solid var(--calcite-ui-brand)", + outline: "2px solid var(--calcite-ui-brand)", "outline-offset": "2px" }, ".focus-inset": { - "outline": "2px solid var(--calcite-ui-brand)", + outline: "2px solid var(--calcite-ui-brand)", + "outline-offset": "-2px" + }, + ".focus-outset-danger": { + outline: "2px solid var(--calcite-ui-danger)", + "outline-offset": "2px" + }, + ".focus-inset-danger": { + outline: "2px solid var(--calcite-ui-danger)", "outline-offset": "-2px" }, ".transition-default": { @@ -229,29 +243,29 @@ module.exports = { "transition-timing-function": "ease-in-out", "transition-delay": "0s" } - } + }; addUtilities(newUtilities); }, - ({ addUtilities, e, theme, variants }) => { - const colors = flattenColorPalette(theme('borderColor')); - delete colors['default']; + ({ addUtilities, theme, variants }) => { + const colors = flattenColorPalette(theme("borderColor")); + delete colors["default"]; - const colorMap = Object.keys(colors) - .map(color => ({ - [`.border-t-${color}`]: {borderTopColor: colors[color]}, - [`.border-r-${color}`]: {borderRightColor: colors[color]}, - [`.border-b-${color}`]: {borderBottomColor: colors[color]}, - [`.border-l-${color}`]: {borderLeftColor: colors[color]}, - })); + const colorMap = Object.keys(colors).map((color) => ({ + [`.border-t-${color}`]: { borderTopColor: colors[color] }, + [`.border-r-${color}`]: { borderRightColor: colors[color] }, + [`.border-b-${color}`]: { borderBottomColor: colors[color] }, + [`.border-l-${color}`]: { borderLeftColor: colors[color] } + })); const utilities = Object.assign({}, ...colorMap); - addUtilities(utilities, variants('borderColor')); - }, + addUtilities(utilities, variants("borderColor")); + } ], future: { - removeDeprecatedGapUtilities: true, + removeDeprecatedGapUtilities: true }, variants: { - boxShadow: ['responsive', 'hover', 'focus', 'active'] + boxShadow: ["responsive", "hover", "focus", "active"], + borderWidth: ["responsive", "hover", "focus", "active"] } -} +}; From c480bcd9b116f92590950ad35dfba03be7625b77 Mon Sep 17 00:00:00 2001 From: Calcite Admin Date: Tue, 14 Jun 2022 14:27:11 -0700 Subject: [PATCH 012/696] ci(tokens): update changes in figma --- data/tokens.json | 243 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 243 insertions(+) create mode 100644 data/tokens.json diff --git a/data/tokens.json b/data/tokens.json new file mode 100644 index 00000000000..c2c59c0238b --- /dev/null +++ b/data/tokens.json @@ -0,0 +1,243 @@ +{ + "global": { + "calcite": { + "color": { + "info": { + "on-light": { + "value": "#00619b", + "type": "color" + }, + "on-dark": { + "value": "#00a0ff", + "type": "color" + } + }, + "brand": { + "default": { + "on-light": { + "value": "#007ac2", + "type": "color" + }, + "on-dark": { + "value": "#009af2", + "type": "color" + } + }, + "hover": { + "on-light": { + "value": "#00619b", + "type": "color" + }, + "on-dark": { + "value": "#007ac2", + "type": "color" + } + }, + "press": { + "on-light": { + "value": "#004874", + "type": "color" + }, + "on-dark": { + "value": "#00619b", + "type": "color" + } + } + }, + "background": { + "on-light": { + "value": "#f8f8f8", + "type": "color" + }, + "on-dark": { + "value": "#353535", + "type": "color" + } + }, + "text": { + "primary": { + "on-light": { + "value": "#151515", + "type": "color" + }, + "on-dark": { + "value": "#ffffff", + "type": "color" + } + }, + "secondary": { + "on-light": { + "value": "#4a4a4a", + "type": "color" + }, + "on-dark": { + "value": "#bfbfbf", + "type": "color" + } + }, + "tertiary": { + "on-light": { + "value": "#040212", + "type": "color" + }, + "on-dark": { + "value": "#9f9f9f", + "type": "color" + } + }, + "inverse": { + "on-light": { + "value": "#ffffff", + "type": "color" + }, + "on-dark": { + "value": "#151515", + "type": "color" + } + }, + "link": { + "on-light": { + "value": "#00619b", + "type": "color" + }, + "on-dark": { + "value": "#00a0ff", + "type": "color" + } + } + }, + "border": { + "primary": { + "on-light": { + "value": "#cacaca", + "type": "color" + }, + "on-dark": { + "value": "#555555", + "type": "color" + } + }, + "secondary": { + "on-light": { + "value": "#d4d4d4", + "type": "color" + }, + "on-dark": { + "value": "#4a4a4a", + "type": "color" + } + }, + "tertiary": { + "on-light": { + "value": "#dfdfdf", + "type": "color" + }, + "on-dark": { + "value": "#404040", + "type": "color" + } + }, + "input": { + "on-light": { + "value": "#949494", + "type": "color" + }, + "on-dark": { + "value": "#757575", + "type": "color" + } + } + }, + "success": { + "on-light": { + "value": "#35ac46", + "type": "color" + }, + "on-dark": { + "value": "#36da43", + "type": "color" + } + }, + "warning": { + "on-light": { + "value": "#edd317", + "type": "color" + }, + "on-dark": { + "value": "#ffc900", + "type": "color" + } + }, + "danger": { + "on-light": { + "value": "#d83020", + "type": "color" + }, + "press": { + "on-light": { + "value": "#7c1d13", + "type": "color" + }, + "on-dark": { + "value": "#d90012", + "type": "color" + } + }, + "on-dark": { + "value": "#fe583e", + "type": "color" + }, + "hover": { + "on-dark": { + "value": "#ff0015", + "type": "color" + } + } + }, + "inverse": { + "on-light": { + "value": "#353535", + "type": "color" + }, + "on-dark": { + "value": "#f8f8f8", + "type": "color" + } + }, + "foreground": { + "primary": { + "on-light": { + "value": "#ffffff", + "type": "color" + }, + "on-dark": { + "value": "#2b2b2b", + "type": "color" + } + }, + "secondary": { + "on-light": { + "value": "#f3f3f3", + "type": "color" + }, + "on-dark": { + "value": "#202020", + "type": "color" + } + }, + "tertiary": { + "on-light": { + "value": "#eaeaea", + "type": "color" + }, + "on-dark": { + "value": "#151515", + "type": "color" + } + } + } + } + } + }, + "$themes": [] +} \ No newline at end of file From 2959447e4f6ec53b031f291cec504fdb6a94d1b4 Mon Sep 17 00:00:00 2001 From: BrunoAires <108296750+BrunoAiresUS@users.noreply.github.com> Date: Mon, 10 Oct 2022 18:58:27 +0100 Subject: [PATCH 013/696] New Calcite Design Tokens structure - Bruno Aires work --- data/$metadata.json | 15 + data/$themes.json | 689 ++++++++++++++++ data/brand/dark.json | 1 + data/brand/global.json | 1 + data/brand/light.json | 20 + data/calcite/dark.json | 178 +++++ data/calcite/light.json | 178 +++++ data/comp/avatar.json | 140 ++++ data/comp/checkbox.json | 1 + data/comp/chip.json | 304 +++++++ data/comp/radio.json | 1 + data/core.json | 1688 +++++++++++++++++++++++++++++++++++++++ data/semantic.json | 1673 ++++++++++++++++++++++++++++++++++++++ 13 files changed, 4889 insertions(+) create mode 100644 data/$metadata.json create mode 100644 data/$themes.json create mode 100644 data/brand/dark.json create mode 100644 data/brand/global.json create mode 100644 data/brand/light.json create mode 100644 data/calcite/dark.json create mode 100644 data/calcite/light.json create mode 100644 data/comp/avatar.json create mode 100644 data/comp/checkbox.json create mode 100644 data/comp/chip.json create mode 100644 data/comp/radio.json create mode 100644 data/core.json create mode 100644 data/semantic.json diff --git a/data/$metadata.json b/data/$metadata.json new file mode 100644 index 00000000000..00fe87731cd --- /dev/null +++ b/data/$metadata.json @@ -0,0 +1,15 @@ +{ + "tokenSetOrder": [ + "core", + "semantic", + "comp/avatar", + "comp/checkbox", + "comp/chip", + "comp/radio", + "calcite/light", + "calcite/dark", + "brand/global", + "brand/light", + "brand/dark" + ] +} \ No newline at end of file diff --git a/data/$themes.json b/data/$themes.json new file mode 100644 index 00000000000..670d71768d3 --- /dev/null +++ b/data/$themes.json @@ -0,0 +1,689 @@ +[ + { + "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", + "name": "Calcite Headless", + "selectedTokenSets": { + "core": "enabled", + "semantic": "enabled", + "comp/avatar": "enabled", + "comp/checkbox": "enabled", + "comp/chip": "enabled", + "comp/radio": "enabled", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "disabled" + }, + "$figmaStyleReferences": { + "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", + "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", + "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", + "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", + "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", + "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", + "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", + "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", + "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", + "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", + "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", + "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", + "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", + "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", + "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", + "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", + "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", + "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", + "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", + "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", + "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", + "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", + "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", + "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", + "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", + "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", + "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", + "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", + "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", + "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", + "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", + "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", + "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", + "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", + "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", + "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", + "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", + "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", + "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", + "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", + "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", + "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", + "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", + "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", + "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", + "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", + "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", + "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", + "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", + "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", + "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", + "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", + "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", + "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", + "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", + "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", + "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", + "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", + "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", + "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", + "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", + "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", + "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", + "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", + "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", + "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", + "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", + "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", + "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", + "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", + "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", + "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", + "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", + "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", + "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", + "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", + "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", + "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", + "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", + "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", + "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", + "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", + "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", + "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", + "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", + "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", + "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", + "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", + "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", + "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", + "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", + "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", + "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", + "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", + "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", + "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", + "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", + "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", + "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", + "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", + "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", + "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", + "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", + "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", + "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", + "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", + "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", + "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", + "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", + "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", + "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", + "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", + "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", + "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", + "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", + "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", + "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", + "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", + "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", + "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", + "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", + "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", + "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", + "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", + "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", + "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", + "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", + "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", + "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", + "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", + "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", + "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", + "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", + "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", + "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", + "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", + "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", + "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", + "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", + "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", + "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", + "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", + "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", + "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", + "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", + "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", + "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", + "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", + "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", + "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", + "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", + "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", + "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", + "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", + "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", + "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", + "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", + "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", + "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", + "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", + "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", + "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", + "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", + "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", + "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", + "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", + "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", + "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", + "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", + "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", + "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", + "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", + "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", + "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", + "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", + "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", + "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", + "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", + "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", + "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", + "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", + "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", + "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", + "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", + "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", + "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", + "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", + "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", + "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", + "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", + "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", + "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", + "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", + "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", + "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", + "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", + "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", + "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", + "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", + "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", + "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", + "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", + "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", + "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", + "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", + "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", + "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", + "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", + "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", + "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", + "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", + "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", + "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", + "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", + "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", + "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", + "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", + "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", + "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", + "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", + "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", + "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", + "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", + "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", + "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", + "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", + "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", + "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", + "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", + "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", + "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", + "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", + "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", + "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", + "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", + "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", + "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", + "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", + "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", + "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", + "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", + "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", + "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", + "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", + "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", + "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", + "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", + "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", + "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", + "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", + "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", + "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", + "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", + "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", + "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", + "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", + "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", + "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", + "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", + "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", + "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", + "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", + "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", + "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", + "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", + "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", + "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", + "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", + "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", + "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", + "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", + "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", + "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", + "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", + "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", + "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", + "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", + "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", + "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", + "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", + "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", + "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", + "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", + "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", + "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", + "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", + "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", + "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", + "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", + "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", + "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", + "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", + "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", + "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", + "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", + "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", + "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", + "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", + "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", + "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", + "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", + "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", + "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", + "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", + "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", + "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", + "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", + "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", + "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", + "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", + "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", + "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", + "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", + "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", + "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", + "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", + "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", + "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", + "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", + "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", + "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", + "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", + "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", + "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", + "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", + "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", + "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", + "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", + "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", + "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", + "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", + "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", + "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", + "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", + "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", + "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", + "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", + "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", + "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", + "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", + "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", + "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", + "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", + "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", + "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", + "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", + "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", + "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", + "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", + "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", + "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", + "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", + "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", + "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", + "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", + "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", + "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", + "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", + "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", + "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", + "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", + "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", + "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", + "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", + "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", + "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", + "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", + "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", + "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", + "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", + "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", + "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", + "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", + "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", + "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", + "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", + "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", + "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", + "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", + "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", + "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", + "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", + "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", + "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", + "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", + "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", + "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", + "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", + "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", + "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", + "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", + "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", + "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", + "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", + "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", + "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", + "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", + "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", + "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", + "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", + "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", + "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", + "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", + "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", + "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", + "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", + "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", + "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", + "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", + "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", + "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", + "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", + "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", + "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", + "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", + "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", + "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", + "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", + "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", + "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", + "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", + "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", + "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", + "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", + "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", + "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", + "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", + "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", + "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", + "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", + "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", + "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", + "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", + "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", + "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", + "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", + "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", + "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", + "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", + "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", + "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", + "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", + "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", + "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", + "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", + "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", + "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", + "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", + "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", + "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", + "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", + "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", + "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", + "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", + "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", + "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", + "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", + "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", + "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", + "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", + "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", + "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", + "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", + "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", + "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", + "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", + "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", + "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", + "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", + "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", + "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", + "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", + "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", + "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", + "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", + "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", + "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", + "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", + "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", + "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", + "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", + "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", + "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", + "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", + "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", + "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", + "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", + "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", + "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", + "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", + "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", + "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", + "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", + "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", + "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", + "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", + "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", + "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", + "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", + "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", + "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", + "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", + "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", + "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", + "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", + "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", + "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", + "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", + "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", + "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", + "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", + "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", + "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", + "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", + "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", + "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", + "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", + "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", + "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light mode", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "comp/avatar": "enabled", + "comp/checkbox": "enabled", + "comp/chip": "enabled", + "comp/radio": "enabled", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "enabled", + "calcite/dark": "disabled", + "brand/global": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:f1db712874d439f19e50bab8921da521661da4c7,", + "color.brand.hover": "S:398b2db4a8913a69d27a05089f55d1bc142f2586,", + "color.brand.press": "S:bf84e0a3e9205fb646c80c29012923da5dca2376,", + "color.background.1": "S:b8edad78bab5fa6579e34c10641374fb26c7bca6,", + "color.foreground.1": "S:12334ec876ee0f44febdc46df533dfc03e3d6bc6,", + "color.foreground.2": "S:69bae54f4ea8a6497bb9738178dd41f1e4afff50,", + "color.foreground.3": "S:cf703318a4a220974949333f951c16aae9945283,", + "color.text.1": "S:27cb00fe7af3b588ef893d41f1b2450b59ec607e,", + "color.text.2": "S:22061c9096d7072d9d0ed0535c73766512a87537,", + "color.text.3": "S:f64d4fdc84f4af4a1a2de0594eb800a6fa219f3b,", + "color.text.inverse": "S:79b5c1dce593634a5892b85c132ca7da229896f5,", + "color.text.link": "S:b7de1e7ff7731884f80e6dd64325739ceaf371ca,", + "color.border.1": "S:33c2a1288830278a225d88a01a1f5849caad4c65,", + "color.border.2": "S:7f72e6f97ac5c6e8bbfad4bc88611e07cc3f54c4,", + "color.border.3": "S:3f16fb05c4dc3dae50a50e0e0aa3113e57685d4c,", + "color.border.input": "S:f566eb53d5d01be79899fcdf1bfd76ce93dedc34,", + "color.info.default": "S:d1f1885a87f2e46c7b543a42de01f997cd143b2d,", + "color.info.hover": "S:2832defbdb959bad6bab9ff03c2afbae9c181af7,", + "color.info.press": "S:64b16b0e6660cd5f867e426c622c562751533dc3,", + "color.success.default": "S:0c31b45fcaec7a502b2e79b7b0774582f11258fd,", + "color.success.hover": "S:4825b7c14df8f5df41990f98da0b1aaa3276a353,", + "color.success.press": "S:06a1e90c9ecd4a33f4c4bc153ecff78d1931e5ab,", + "color.warning.default": "S:35ed4da9d217f3b93134884426ef035f124104cc,", + "color.warning.hover": "S:5cea281bd29a6b3078991211b7e09d371d786ec3,", + "color.warning.press": "S:2e779ff3922819c83ae63ddbbf1fa786e8ef51b8,", + "color.danger.default": "S:44c523effae2f4ed0fd54f105889ec5a88921951,", + "color.danger.hover": "S:ee46e4c5cc54e2eb6081cdae66a246dc34b0fbe9,", + "color.danger.press": "S:f9c37cdd1dfb30f032da6fabee26ab91449b9c82,", + "color.inverse.default": "S:a769c82cab39e27b5efda30fe0e750ba79b8fbbb,", + "color.component.avatar.font": "S:5e8dd204e7ce88edd3371b1291e917535ef73750,", + "color.component.avatar.icon": "S:3f2060fd50c33525a30e4b6ae72c5d3b57123280,", + "color.component.avatar.background.default": "S:b531473e298609b8f76c08e94159c42ddddf1050,", + "color.component.avatar.background.red": "S:ec6e01b42edfeb8b9df25135b2e1c85687be064b,", + "color.component.avatar.background.teal": "S:3883e50ea0dc330ad7d0440bc6a07d7e93cf1359,", + "color.component.avatar.background.blue": "S:9a464bfed53a3c4c5b86b5396be7d6626e7b3df4,", + "color.component.avatar.background.green": "S:03daa56c58fcc3ef2aae5b6a94743cbbbb921fc1,", + "color.component.avatar.background.yellow": "S:b02715cf91b6020172e212bc94ff04cf30eecf6a,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793," + } + }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark mode", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "comp/avatar": "enabled", + "comp/checkbox": "enabled", + "comp/chip": "enabled", + "comp/radio": "enabled", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:91acdf6e24423dcb08a845657195f1f78f7924ff,", + "color.brand.hover": "S:d4de84029c77e5d30c76993f97caf45a61657f85,", + "color.brand.press": "S:55f1866e22ae022050fccfc085f93c8576e18143,", + "color.background.1": "S:ce6b64a3a7f4f8efcfe6e62e833ff5ab6b825f53,", + "color.foreground.1": "S:d98a7a4cae097b66471a60b194ec5d9a76e9be1e,", + "color.foreground.2": "S:8e2571d5ed9bf6ca1be8df2c55048c75d5d3f9e4,", + "color.foreground.3": "S:c0274d89f52fd094d1054825ab814f52b5431f87,", + "color.text.1": "S:9ccb8b2e40bc38bde8cb3c8b80930b9ac014780a,", + "color.text.2": "S:7c1a7db7b407a3bab962b751ed62704f01a9da91,", + "color.text.3": "S:486bfb03d98d85139975cf6bef7736ca219c7e84,", + "color.text.inverse": "S:6a91d549e15a9b08dee8735289e76ec1ad4941a9,", + "color.text.link": "S:48f59590b05c7ae481524199e4cee7a769558d30,", + "color.border.1": "S:0167dbf6f7a14cb435a6b2360aaebd0b50a842dc,", + "color.border.2": "S:a89fc3d8dfbc38a90098b333bd40b33eea0498a7,", + "color.border.3": "S:745ca8ff87a3547c712081eb2a057f526b48312e,", + "color.border.input": "S:3c9511922408baf62c611dd8ad847fb5682e1ef5,", + "color.info.default": "S:f99bc435885d328fcd2324e2df0d1a490608f787,", + "color.info.hover": "S:865a4c82d920f492e443dba1415e84cc95af0f54,", + "color.info.press": "S:e1a629a26cc20fb69c894bec5c36168bf10cc58c,", + "color.success.default": "S:37c4d6666b67cd63e3ab2f9fc2efecc69259d92b,", + "color.success.hover": "S:c0639a5a0c843fb7a212a9025b691034d6592d75,", + "color.success.press": "S:99a6f5b57052d30db822dc4bef16dff9cf1824be,", + "color.warning.default": "S:a4ec14a78d1aff8664888231ede3975fface3826,", + "color.warning.hover": "S:ce937903e582808bcc034017ffd747a4c6ca670f,", + "color.warning.press": "S:bdc0ed356933e148164c6d09229454f2fde1f7f1,", + "color.danger.default": "S:f5985f98302f973f8de4ca7ae17fcba46190c995,", + "color.danger.hover": "S:2ccb326a5eafaaeb567f2175feb1520ec2a5d77c,", + "color.danger.press": "S:bf5415246c58f4c4223ac56d1b643d43f4b99ad6,", + "color.inverse.default": "S:748bd4095fb58b16c8756101e48f6966350fe269,", + "color.component.avatar.font": "S:7c2bb94c95eae80256e5fbc6652a7a99b825541c,", + "color.component.avatar.icon": "S:1be7249a83aeebabf970dcbfb02b06d95c09880c,", + "color.component.avatar.background.default": "S:483a8b9bb92f5900c3a69fdc0859e1470517d6b9,", + "color.component.avatar.background.red": "S:e992bbdb9fc5af30796bded2b92a399e1837ca40,", + "color.component.avatar.background.teal": "S:3ce84a69e481f7f51668e8b2b269d75dfbbce08d,", + "color.component.avatar.background.blue": "S:df04a28f598ca20fd2e8c3e9becddcce967fe5b3,", + "color.component.avatar.background.green": "S:91de8c9d98cae6890d54918e900dd8b4664a9354,", + "color.component.avatar.background.yellow": "S:974b83a4cdd7324aeee011a4c4c695d418cc3d9d,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc," + } + } +] \ No newline at end of file diff --git a/data/brand/dark.json b/data/brand/dark.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/data/brand/dark.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/brand/global.json b/data/brand/global.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/data/brand/global.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/brand/light.json b/data/brand/light.json new file mode 100644 index 00000000000..a55d3c5bc32 --- /dev/null +++ b/data/brand/light.json @@ -0,0 +1,20 @@ +{ + "core": { + "font": { + "font-size": { + "6": { + "value": "26px", + "type": "fontSizes" + } + } + } + }, + "breakpoint": { + "width": { + "lg": { + "value": "$core.breakpoint.width.lg", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/data/calcite/dark.json b/data/calcite/dark.json new file mode 100644 index 00000000000..dde051457a6 --- /dev/null +++ b/data/calcite/dark.json @@ -0,0 +1,178 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.dark", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.dark", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.dark", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.dark", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.dark", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.dark", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.dark", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.dark", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.dark", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.dark", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.dark", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/calcite/light.json b/data/calcite/light.json new file mode 100644 index 00000000000..325ec0dc658 --- /dev/null +++ b/data/calcite/light.json @@ -0,0 +1,178 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.light", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.light", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.light", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.light", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.light", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.light", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.light", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.light", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.light", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.light", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.light", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.light", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.light", + "type": "color" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/comp/avatar.json b/data/comp/avatar.json new file mode 100644 index 00000000000..5694023e615 --- /dev/null +++ b/data/comp/avatar.json @@ -0,0 +1,140 @@ +{ + "avatar": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.red.h-rr-090", + "type": "color" + } + }, + "teal": { + "light": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + } + }, + "green": { + "light": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-100", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/data/comp/checkbox.json b/data/comp/checkbox.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/data/comp/checkbox.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/comp/chip.json b/data/comp/chip.json new file mode 100644 index 00000000000..25055b9be38 --- /dev/null +++ b/data/comp/chip.json @@ -0,0 +1,304 @@ +{ + "chip": { + "font": { + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "closable-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "clear": { + "grey": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "comp-height": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/data/comp/radio.json b/data/comp/radio.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/data/comp/radio.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/core.json b/data/core.json new file mode 100644 index 00000000000..0cee5b781e7 --- /dev/null +++ b/data/core.json @@ -0,0 +1,1688 @@ +{ + "core": { + "font": { + "font-family": { + "primary": { + "value": "Avenir Next LT Pro", + "type": "fontFamilies" + }, + "secondary": { + "value": "Avenir Next World", + "type": "fontFamilies" + }, + "code": { + "value": "Monaco", + "type": "fontFamilies" + } + }, + "font-weight": { + "ultralight": { + "value": "UltraLight", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "thin": { + "value": "Thin", + "type": "fontWeights" + }, + "light": { + "value": "Light", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "regular": { + "value": "Regular", + "type": "fontWeights" + }, + "medium": { + "value": "Medium", + "type": "fontWeights" + }, + "demi": { + "value": "Demi", + "type": "fontWeights" + }, + "bold": { + "value": "Bold", + "type": "fontWeights" + }, + "extrabold": { + "value": "ExtraBold", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "black": { + "value": "Black", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "heavy": { + "value": "Heavy", + "type": "fontWeights" + } + }, + "line-height": { + "fixed": { + "0": { + "value": "12px", + "type": "lineHeights" + }, + "1": { + "value": "16px", + "type": "lineHeights" + }, + "2": { + "value": "20px", + "type": "lineHeights" + }, + "3": { + "value": "24px", + "type": "lineHeights" + }, + "4": { + "value": "28px", + "type": "lineHeights" + }, + "5": { + "value": "32px", + "type": "lineHeights" + }, + "6": { + "value": "36px", + "type": "lineHeights" + }, + "7": { + "value": "40px", + "type": "lineHeights" + }, + "8": { + "value": "48px", + "type": "lineHeights" + }, + "9": { + "value": "56px", + "type": "lineHeights" + }, + "10": { + "value": "64px", + "type": "lineHeights" + }, + "11": { + "value": "72px", + "type": "lineHeights" + }, + "12": { + "value": "80px", + "type": "lineHeights" + } + }, + "relative": { + "default": { + "value": "auto", + "type": "lineHeights", + "description": "1" + }, + "tight": { + "value": "125%", + "type": "lineHeights", + "description": "1.25" + }, + "snug": { + "value": "137.5%", + "type": "lineHeights", + "description": "1.375" + }, + "normal": { + "value": "150%", + "type": "lineHeights", + "description": "1.5" + }, + "relaxed": { + "value": "162.5%", + "type": "lineHeights", + "description": "1.625" + }, + "loose": { + "value": "200%", + "type": "lineHeights", + "description": "2" + } + } + }, + "font-size": { + "0": { + "value": "10px", + "type": "fontSizes" + }, + "1": { + "value": "12px", + "type": "fontSizes" + }, + "2": { + "value": "14px", + "type": "fontSizes" + }, + "3": { + "value": "16px", + "type": "fontSizes" + }, + "4": { + "value": "18px", + "type": "fontSizes" + }, + "5": { + "value": "20px", + "type": "fontSizes" + }, + "6": { + "value": "24px", + "type": "fontSizes" + }, + "7": { + "value": "32px", + "type": "fontSizes" + }, + "8": { + "value": "40px", + "type": "fontSizes" + }, + "9": { + "value": "48px", + "type": "fontSizes" + }, + "10": { + "value": "56px", + "type": "fontSizes" + }, + "11": { + "value": "64px", + "type": "fontSizes" + }, + "12": { + "value": "72px", + "type": "fontSizes" + }, + "13": { + "value": "80px", + "type": "fontSizes" + }, + "14": { + "value": "96px", + "type": "fontSizes" + }, + "15": { + "value": "120px", + "type": "fontSizes" + } + }, + "letter-spacing": { + "tight": { + "value": "-0.4px", + "type": "letterSpacing" + }, + "normal": { + "value": "0px", + "type": "letterSpacing" + }, + "wide": { + "value": "0.4px", + "type": "letterSpacing" + } + }, + "paragraph-spacing": { + "normal": { + "value": "10px", + "type": "paragraphSpacing" + } + }, + "text-decoration": { + "none": { + "value": "none", + "type": "textDecoration" + }, + "underline": { + "value": "underline", + "type": "textDecoration" + } + }, + "text-case": { + "none": { + "value": "none", + "type": "textCase" + }, + "uppercase": { + "value": "uppercase", + "type": "textCase" + }, + "lowercase": { + "value": "lowercase", + "type": "textCase" + }, + "capitalize": { + "value": "capitalize", + "type": "textCase" + } + } + }, + "border": { + "border-radius": { + "0": { + "value": "2px", + "type": "borderRadius" + }, + "1": { + "value": "4px", + "type": "borderRadius" + }, + "2": { + "value": "6px", + "type": "borderRadius" + }, + "3": { + "value": "8px", + "type": "borderRadius" + }, + "4": { + "value": "12px", + "type": "borderRadius" + }, + "5": { + "value": "16px", + "type": "borderRadius" + }, + "6": { + "value": "24px", + "type": "borderRadius" + }, + "none": { + "value": "0px", + "type": "borderRadius" + }, + "half": { + "value": "50%", + "type": "borderRadius" + }, + "full": { + "value": "9999px", + "type": "borderRadius" + } + }, + "border-width": { + "0": { + "value": "1px", + "type": "borderWidth" + }, + "1": { + "value": "2px", + "type": "borderWidth" + }, + "2": { + "value": "4px", + "type": "borderWidth" + }, + "3": { + "value": "8px", + "type": "borderWidth" + }, + "none": { + "value": "0px", + "type": "borderWidth" + } + } + }, + "opacity": { + "0": { + "value": "0%", + "type": "opacity" + }, + "4": { + "value": "4%", + "type": "opacity" + }, + "8": { + "value": "8%", + "type": "opacity" + }, + "10": { + "value": "10%", + "type": "opacity" + }, + "20": { + "value": "20%", + "type": "opacity" + }, + "30": { + "value": "30%", + "type": "opacity" + }, + "40": { + "value": "40%", + "type": "opacity" + }, + "50": { + "value": "50%", + "type": "opacity" + }, + "60": { + "value": "60%", + "type": "opacity" + }, + "70": { + "value": "70%", + "type": "opacity" + }, + "80": { + "value": "80%", + "type": "opacity" + }, + "90": { + "value": "90%", + "type": "opacity" + }, + "92": { + "value": "92%", + "type": "opacity" + }, + "96": { + "value": "96%", + "type": "opacity" + }, + "100": { + "value": "100%", + "type": "opacity" + } + }, + "color": { + "neutral": { + "blk-000": { + "value": "#ffffff", + "type": "color" + }, + "blk-005": { + "value": "#f8f8f8", + "type": "color" + }, + "blk-010": { + "value": "#f3f3f3", + "type": "color" + }, + "blk-020": { + "value": "#eaeaea", + "type": "color" + }, + "blk-030": { + "value": "#dfdfdf", + "type": "color" + }, + "blk-040": { + "value": "#d4d4d4", + "type": "color" + }, + "blk-050": { + "value": "#cacaca", + "type": "color" + }, + "blk-060": { + "value": "#bfbfbf", + "type": "color" + }, + "blk-070": { + "value": "#b5b5b5", + "type": "color" + }, + "blk-080": { + "value": "#aaaaaa", + "type": "color" + }, + "blk-090": { + "value": "#9f9f9f", + "type": "color" + }, + "blk-100": { + "value": "#949494", + "type": "color" + }, + "blk-110": { + "value": "#8a8a8a", + "type": "color" + }, + "blk-120": { + "value": "#808080", + "type": "color" + }, + "blk-130": { + "value": "#757575", + "type": "color" + }, + "blk-140": { + "value": "#6a6a6a", + "type": "color" + }, + "blk-150": { + "value": "#606060", + "type": "color" + }, + "blk-160": { + "value": "#555555", + "type": "color" + }, + "blk-170": { + "value": "#4a4a4a", + "type": "color" + }, + "blk-180": { + "value": "#404040", + "type": "color" + }, + "blk-190": { + "value": "#353535", + "type": "color" + }, + "blk-200": { + "value": "#2b2b2b", + "type": "color" + }, + "blk-210": { + "value": "#202020", + "type": "color" + }, + "blk-220": { + "value": "#151515", + "type": "color" + }, + "blk-230": { + "value": "#0b0b0b", + "type": "color" + }, + "blk-235": { + "value": "#060606", + "type": "color" + }, + "blk-240": { + "value": "#000000", + "type": "color" + } + }, + "palette": { + "high-saturation": { + "blue": { + "h-bb-010": { + "value": "#c7eaff", + "type": "color" + }, + "h-bb-020": { + "value": "#9fd4f3", + "type": "color" + }, + "h-bb-030": { + "value": "#77bde7", + "type": "color" + }, + "h-bb-040": { + "value": "#50a7da", + "type": "color" + }, + "h-bb-050": { + "value": "#2890ce", + "type": "color" + }, + "h-bb-060": { + "value": "#007ac2", + "type": "color" + }, + "h-bb-070": { + "value": "#00619b", + "type": "color" + }, + "h-bb-080": { + "value": "#004874", + "type": "color" + }, + "h-bb-090": { + "value": "#00304d", + "type": "color" + }, + "h-bb-100": { + "value": "#001726", + "type": "color" + } + }, + "green-blue": { + "h-gb-010": { + "value": "#cef5f4", + "type": "color" + }, + "h-gb-020": { + "value": "#afedec", + "type": "color" + }, + "h-gb-030": { + "value": "#8fe6e5", + "type": "color" + }, + "h-gb-040": { + "value": "#5ae0de", + "type": "color" + }, + "h-gb-050": { + "value": "#28cecb", + "type": "color" + }, + "h-gb-060": { + "value": "#00bab5", + "type": "color" + }, + "h-gb-070": { + "value": "#009b98", + "type": "color" + }, + "h-gb-080": { + "value": "#007472", + "type": "color" + }, + "h-gb-090": { + "value": "#004d4c", + "type": "color" + }, + "h-gb-100": { + "value": "#002625", + "type": "color" + } + }, + "green": { + "h-gg-010": { + "value": "#bdf2c4", + "type": "color" + }, + "h-gg-020": { + "value": "#a2e4ab", + "type": "color" + }, + "h-gg-030": { + "value": "#87d692", + "type": "color" + }, + "h-gg-040": { + "value": "#6bc878", + "type": "color" + }, + "h-gg-050": { + "value": "#50ba5f", + "type": "color" + }, + "h-gg-060": { + "value": "#35ac46", + "type": "color" + }, + "h-gg-070": { + "value": "#288835", + "type": "color" + }, + "h-gg-080": { + "value": "#1a6324", + "type": "color" + }, + "h-gg-090": { + "value": "#0d3f14", + "type": "color" + }, + "h-gg-100": { + "value": "#001a03", + "type": "color" + } + }, + "yellow-green": { + "h-yg-010": { + "value": "#e5f7b4", + "type": "color" + }, + "h-yg-020": { + "value": "#d9ef9f", + "type": "color" + }, + "h-yg-030": { + "value": "#cde78a", + "type": "color" + }, + "h-yg-040": { + "value": "#c2e075", + "type": "color" + }, + "h-yg-050": { + "value": "#b6d860", + "type": "color" + }, + "h-yg-060": { + "value": "#aad04b", + "type": "color" + }, + "h-yg-070": { + "value": "#84a338", + "type": "color" + }, + "h-yg-080": { + "value": "#5e7526", + "type": "color" + }, + "h-yg-090": { + "value": "#384813", + "type": "color" + }, + "h-yg-100": { + "value": "#121a00", + "type": "color" + } + }, + "yellow": { + "h-yy-010": { + "value": "#fff7cc", + "type": "color" + }, + "h-yy-020": { + "value": "#fef3ad", + "type": "color" + }, + "h-yy-030": { + "value": "#fcee8d", + "type": "color" + }, + "h-yy-040": { + "value": "#fbea6e", + "type": "color" + }, + "h-yy-050": { + "value": "#f9e54e", + "type": "color" + }, + "h-yy-060": { + "value": "#edd317", + "type": "color" + }, + "h-yy-070": { + "value": "#d9bc00", + "type": "color" + }, + "h-yy-080": { + "value": "#bfa200", + "type": "color" + }, + "h-yy-090": { + "value": "#8c7500", + "type": "color" + }, + "h-yy-100": { + "value": "#5c4e00", + "type": "color" + } + }, + "orange-yellow": { + "h-oy-010": { + "value": "#ffe2bf", + "type": "color" + }, + "h-oy-020": { + "value": "#fed3a1", + "type": "color" + }, + "h-oy-030": { + "value": "#fcc582", + "type": "color" + }, + "h-oy-040": { + "value": "#fbb664", + "type": "color" + }, + "h-oy-050": { + "value": "#f9a845", + "type": "color" + }, + "h-oy-060": { + "value": "#f89927", + "type": "color" + }, + "h-oy-070": { + "value": "#c67718", + "type": "color" + }, + "h-oy-080": { + "value": "#9a5b10", + "type": "color" + }, + "h-oy-090": { + "value": "#6d3f08", + "type": "color" + }, + "h-oy-100": { + "value": "#402300", + "type": "color" + } + }, + "orange": { + "h-oo-010": { + "value": "#ffd8bf", + "type": "color" + }, + "h-oo-020": { + "value": "#fdc39f", + "type": "color" + }, + "h-oo-030": { + "value": "#faae7f", + "type": "color" + }, + "h-oo-040": { + "value": "#f89960", + "type": "color" + }, + "h-oo-050": { + "value": "#f58440", + "type": "color" + }, + "h-oo-060": { + "value": "#f36f20", + "type": "color" + }, + "h-oo-070": { + "value": "#c65a18", + "type": "color" + }, + "h-oo-080": { + "value": "#9a4410", + "type": "color" + }, + "h-oo-090": { + "value": "#6d2f08", + "type": "color" + }, + "h-oo-100": { + "value": "#401900", + "type": "color" + } + }, + "red-orange": { + "h-ro-010": { + "value": "#ffc7b3", + "type": "color" + }, + "h-ro-020": { + "value": "#f8af95", + "type": "color" + }, + "h-ro-030": { + "value": "#f09677", + "type": "color" + }, + "h-ro-040": { + "value": "#e97e5a", + "type": "color" + }, + "h-ro-050": { + "value": "#e1653c", + "type": "color" + }, + "h-ro-060": { + "value": "#da4d1e", + "type": "color" + }, + "h-ro-070": { + "value": "#ad3c16", + "type": "color" + }, + "h-ro-080": { + "value": "#802c0f", + "type": "color" + }, + "h-ro-090": { + "value": "#531b07", + "type": "color" + }, + "h-ro-100": { + "value": "#260a00", + "type": "color" + } + }, + "red": { + "h-rr-010": { + "value": "#ffc6bf", + "type": "color" + }, + "h-rr-020": { + "value": "#ffaaa1", + "type": "color" + }, + "h-rr-030": { + "value": "#f2877b", + "type": "color" + }, + "h-rr-040": { + "value": "#f07062", + "type": "color" + }, + "h-rr-050": { + "value": "#e65240", + "type": "color" + }, + "h-rr-060": { + "value": "#d83020", + "type": "color" + }, + "h-rr-070": { + "value": "#a82b1e", + "type": "color" + }, + "h-rr-080": { + "value": "#7c1d13", + "type": "color" + }, + "h-rr-090": { + "value": "#4f0e08", + "type": "color" + }, + "h-rr-100": { + "value": "#210300", + "type": "color" + } + }, + "pink": { + "h-pk-010": { + "value": "#ffd1ef", + "type": "color" + }, + "h-pk-020": { + "value": "#fabee4", + "type": "color" + }, + "h-pk-030": { + "value": "#f2a5d6", + "type": "color" + }, + "h-pk-040": { + "value": "#eb8dc9", + "type": "color" + }, + "h-pk-050": { + "value": "#e673bb", + "type": "color" + }, + "h-pk-060": { + "value": "#e04ea6", + "type": "color" + }, + "h-pk-070": { + "value": "#ba2f7e", + "type": "color" + }, + "h-pk-080": { + "value": "#851b52", + "type": "color" + }, + "h-pk-090": { + "value": "#590b32", + "type": "color" + }, + "h-pk-100": { + "value": "#260404", + "type": "color" + } + }, + "violet-red": { + "h-vr-010": { + "value": "#fadbff", + "type": "color" + }, + "h-vr-020": { + "value": "#e4beeb", + "type": "color" + }, + "h-vr-030": { + "value": "#cfa1d7", + "type": "color" + }, + "h-vr-040": { + "value": "#b983c3", + "type": "color" + }, + "h-vr-050": { + "value": "#a466af", + "type": "color" + }, + "h-vr-060": { + "value": "#8e499b", + "type": "color" + }, + "h-vr-070": { + "value": "#73377e", + "type": "color" + }, + "h-vr-080": { + "value": "#572561", + "type": "color" + }, + "h-vr-090": { + "value": "#3c1243", + "type": "color" + }, + "h-vr-100": { + "value": "#200026", + "type": "color" + } + }, + "violet": { + "h-vv-010": { + "value": "#e8d9ff", + "type": "color" + }, + "h-vv-020": { + "value": "#cdb9eb", + "type": "color" + }, + "h-vv-030": { + "value": "#b39ad7", + "type": "color" + }, + "h-vv-040": { + "value": "#987ac3", + "type": "color" + }, + "h-vv-050": { + "value": "#7e5baf", + "type": "color" + }, + "h-vv-060": { + "value": "#633b9b", + "type": "color" + }, + "h-vv-070": { + "value": "#4e2c7e", + "type": "color" + }, + "h-vv-080": { + "value": "#3a1e61", + "type": "color" + }, + "h-vv-090": { + "value": "#250f43", + "type": "color" + }, + "h-vv-100": { + "value": "#100026", + "type": "color" + } + } + }, + "vibrant": { + "blue": { + "v-bb-120": { + "value": "#59d6ff", + "type": "color" + }, + "v-bb-140": { + "value": "#3db8ff", + "type": "color" + }, + "v-bb-160": { + "value": "#009af2", + "type": "color" + }, + "v-bb-180": { + "value": "#009af2", + "type": "color" + } + }, + "green-blue": { + "v-gb-120": { + "value": "#59fffc", + "type": "color" + }, + "v-gb-140": { + "value": "#00f7f3", + "type": "color" + }, + "v-gb-160": { + "value": "#00e6e2", + "type": "color" + }, + "v-gb-180": { + "value": "#00cfca", + "type": "color" + } + }, + "green": { + "v-gg-120": { + "value": "#73ff84", + "type": "color" + }, + "v-gg-140": { + "value": "#3bed52", + "type": "color" + }, + "v-gg-160": { + "value": "#00b81b", + "type": "color" + }, + "v-gg-180": { + "value": "#00a118", + "type": "color" + } + }, + "yellow-green": { + "v-yg-120": { + "value": "#d7ff73", + "type": "color" + }, + "v-yg-140": { + "value": "#bbed3b", + "type": "color" + }, + "v-yg-160": { + "value": "#96cc00", + "type": "color" + }, + "v-yg-180": { + "value": "#7fab00", + "type": "color" + } + }, + "yellow": { + "v-yy-120": { + "value": "#fff766", + "type": "color" + }, + "v-yy-140": { + "value": "#ffee33", + "type": "color" + }, + "v-yy-160": { + "value": "#f5d000", + "type": "color" + }, + "v-yy-180": { + "value": "#ebba17", + "type": "color" + } + }, + "orange-yellow": { + "v-oy-120": { + "value": "#ffb54d", + "type": "color" + }, + "v-oy-140": { + "value": "#ff9500", + "type": "color" + }, + "v-oy-160": { + "value": "#e68600", + "type": "color" + }, + "v-oy-180": { + "value": "#d17300", + "type": "color" + } + }, + "red-orange": { + "v-ro-120": { + "value": "#ff824d", + "type": "color" + }, + "v-ro-140": { + "value": "#ff4d00", + "type": "color" + }, + "v-ro-160": { + "value": "#de4300", + "type": "color" + }, + "v-ro-180": { + "value": "#c93b00", + "type": "color" + } + }, + "red": { + "v-rr-120": { + "value": "#ff624d", + "type": "color" + }, + "v-rr-140": { + "value": "#ff0015", + "type": "color" + }, + "v-rr-160": { + "value": "#d90012", + "type": "color" + }, + "v-rr-180": { + "value": "#b3000f", + "type": "color" + } + }, + "pink": { + "v-pk-120": { + "value": "#ff66c2", + "type": "color" + }, + "v-pk-140": { + "value": "#ff19a4", + "type": "color" + }, + "v-pk-160": { + "value": "#d11486", + "type": "color" + }, + "v-pk-180": { + "value": "#c00073", + "type": "color" + } + }, + "violet-red": { + "v-vr-120": { + "value": "#ea80ff", + "type": "color" + }, + "v-vr-140": { + "value": "#dd33ff", + "type": "color" + }, + "v-vr-160": { + "value": "#ac08cc", + "type": "color" + }, + "v-vr-180": { + "value": "#83009e", + "type": "color" + } + }, + "violet": { + "v-vv-120": { + "value": "#b580ff", + "type": "color" + }, + "v-vv-140": { + "value": "#974dff", + "type": "color" + }, + "v-vv-160": { + "value": "#8129ff", + "type": "color" + }, + "v-vv-180": { + "value": "#6a0be6", + "type": "color" + } + } + }, + "dark": { + "green": { + "d-gg-410": { + "value": "#44ED51", + "type": "color" + }, + "d-gg-420": { + "value": "#36DA43", + "type": "color" + }, + "d-gg-430": { + "value": "#36DA43", + "type": "color" + } + }, + "yellow": { + "d-yy-410": { + "value": "#FFE24D", + "type": "color" + }, + "d-yy-420": { + "value": "#FFC900", + "type": "color" + }, + "d-yy-430": { + "value": "#F4B000", + "type": "color" + } + }, + "red": { + "d-rr-410": { + "value": "#FF7465", + "type": "color" + }, + "d-rr-420": { + "value": "#FE583E", + "type": "color" + }, + "d-rr-430": { + "value": "#F3381B", + "type": "color" + } + }, + "blue": { + "d-bb-410": { + "value": "#47BBFF", + "type": "color" + }, + "d-bb-420": { + "value": "#00A0FF", + "type": "color" + }, + "d-bb-430": { + "value": "#0087D7", + "type": "color" + } + } + } + } + }, + "sizing": { + "0": { + "value": "2px", + "type": "sizing" + }, + "1": { + "value": "4px", + "type": "sizing" + }, + "2": { + "value": "6px", + "type": "sizing" + }, + "3": { + "value": "8px", + "type": "sizing" + }, + "4": { + "value": "10px", + "type": "sizing" + }, + "5": { + "value": "12px", + "type": "sizing" + }, + "6": { + "value": "14px", + "type": "sizing" + }, + "7": { + "value": "16px", + "type": "sizing" + }, + "8": { + "value": "20px", + "type": "sizing" + }, + "9": { + "value": "24px", + "type": "sizing" + }, + "10": { + "value": "28px", + "type": "sizing" + }, + "11": { + "value": "32px", + "type": "sizing" + }, + "12": { + "value": "36px", + "type": "sizing" + }, + "13": { + "value": "40px", + "type": "sizing" + }, + "14": { + "value": "44px", + "type": "sizing" + }, + "15": { + "value": "48px", + "type": "sizing" + }, + "16": { + "value": "56px", + "type": "sizing" + }, + "17": { + "value": "64px", + "type": "sizing" + }, + "18": { + "value": "72px", + "type": "sizing" + }, + "19": { + "value": "80px", + "type": "sizing" + }, + "20": { + "value": "96px", + "type": "sizing" + }, + "21": { + "value": "112px", + "type": "sizing" + }, + "22": { + "value": "128px", + "type": "sizing" + }, + "23": { + "value": "144px", + "type": "sizing" + }, + "24": { + "value": "160px", + "type": "sizing" + }, + "25": { + "value": "192px", + "type": "sizing" + }, + "26": { + "value": "224px", + "type": "sizing" + }, + "27": { + "value": "256px", + "type": "sizing" + }, + "28": { + "value": "288px", + "type": "sizing" + }, + "none": { + "value": "0px", + "type": "sizing" + } + }, + "spacing": { + "0": { + "value": "2px", + "type": "spacing" + }, + "1": { + "value": "4px", + "type": "spacing" + }, + "2": { + "value": "6px", + "type": "spacing" + }, + "3": { + "value": "8px", + "type": "spacing" + }, + "4": { + "value": "10px", + "type": "spacing" + }, + "5": { + "value": "12px", + "type": "spacing" + }, + "6": { + "value": "14px", + "type": "spacing" + }, + "7": { + "value": "16px", + "type": "spacing" + }, + "8": { + "value": "20px", + "type": "spacing" + }, + "9": { + "value": "24px", + "type": "spacing" + }, + "10": { + "value": "28px", + "type": "spacing" + }, + "11": { + "value": "32px", + "type": "spacing" + }, + "12": { + "value": "36px", + "type": "spacing" + }, + "13": { + "value": "40px", + "type": "spacing" + }, + "14": { + "value": "44px", + "type": "spacing" + }, + "15": { + "value": "48px", + "type": "spacing" + }, + "16": { + "value": "56px", + "type": "spacing" + }, + "17": { + "value": "64px", + "type": "spacing" + }, + "18": { + "value": "72px", + "type": "spacing" + }, + "19": { + "value": "80px", + "type": "spacing" + }, + "20": { + "value": "96px", + "type": "spacing" + }, + "21": { + "value": "112px", + "type": "spacing" + }, + "22": { + "value": "128px", + "type": "spacing" + }, + "23": { + "value": "144px", + "type": "spacing" + }, + "24": { + "value": "160px", + "type": "spacing" + }, + "25": { + "value": "192px", + "type": "spacing" + }, + "26": { + "value": "224px", + "type": "spacing" + }, + "27": { + "value": "256px", + "type": "spacing" + }, + "28": { + "value": "288px", + "type": "spacing" + }, + "none": { + "value": "0px", + "type": "spacing" + } + }, + "breakpoint": { + "width": { + "xs": { + "value": "476px", + "type": "sizing", + "description": "min-width size" + }, + "sm": { + "value": "768px", + "type": "sizing", + "description": "min-width size" + }, + "md": { + "value": "1152px", + "type": "sizing", + "description": "min-width size" + }, + "lg": { + "value": "1440px", + "type": "sizing", + "description": "min-width size" + } + }, + "margin": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "gutter": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "content": { + "fluid": { + "value": "100%", + "type": "sizing", + "description": "for fluid grid widths" + }, + "fixed": { + "value": "1440px", + "type": "sizing", + "description": "only for lg breakpoint fixed grid width" + } + }, + "cols": { + "xs": { + "value": "6", + "type": "other", + "description": "columns" + }, + "sm": { + "value": "12", + "type": "other", + "description": "columns" + }, + "md": { + "value": "24", + "type": "other", + "description": "columns" + }, + "lg": { + "value": "24", + "type": "other", + "description": "columns" + } + } + }, + "z-index": { + "deep": { + "value": "-999999", + "type": "other" + }, + "default": { + "value": "1", + "type": "other" + }, + "sticky": { + "value": "300", + "type": "other" + }, + "header": { + "value": "400", + "type": "other" + }, + "toast": { + "value": "500", + "type": "other" + }, + "dropdown": { + "value": "600", + "type": "other" + }, + "overlay": { + "value": "700", + "type": "other" + }, + "modal": { + "value": "800", + "type": "other" + }, + "popup": { + "value": "900", + "type": "other" + } + }, + "box-shadow": { + "0": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + }, + "1": { + "value": [ + { + "x": "0", + "y": "2", + "blur": "8", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "4", + "blur": "16", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "2": { + "value": [ + { + "x": "0", + "y": "4", + "blur": "20", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "12", + "blur": "32", + "spread": "-2", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "none": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + } + } + } +} \ No newline at end of file diff --git a/data/semantic.json b/data/semantic.json new file mode 100644 index 00000000000..b195cf841eb --- /dev/null +++ b/data/semantic.json @@ -0,0 +1,1673 @@ +{ + "semantic": { + "font": { + "default": { + "light": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "wrap": { + "light": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "hierarchy": { + "display-1": { + "value": "$semantic.font.wrap.regular.8", + "type": "typography" + }, + "display-2": { + "value": "$semantic.font.wrap.regular.7", + "type": "typography" + }, + "heading-1": { + "value": "$semantic.font.wrap.regular.6", + "type": "typography" + }, + "heading-2": { + "value": "$semantic.font.wrap.regular.5", + "type": "typography" + }, + "heading-3": { + "value": "$semantic.font.wrap.regular.4", + "type": "typography" + }, + "heading-4": { + "value": "$semantic.font.wrap.regular.3", + "type": "typography" + }, + "heading-5": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + }, + "heading-6": { + "value": "$semantic.font.wrap.regular.1", + "type": "typography" + }, + "body-1": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "body-2": { + "value": "$semantic.font.wrap.regular.-1", + "type": "typography" + }, + "overline": { + "value": { + "fontFamilies": "$core.font.font-family.primary", + "fontWeights": "$core.font.font-weight.bold", + "fontSizes": "$core.font.font-size.2", + "lineHeights": "$core.font.line-height.fixed.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textCase": "$core.font.text-case.uppercase", + "textDecoration": "$core.font.text-decoration.none", + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.bold", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2" + }, + "type": "typography" + }, + "caption": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + } + } + }, + "border": { + "border-radius": { + "sharp": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "round": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "circular": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "pill": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + } + }, + "ui": { + "border": { + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + } + }, + "color": { + "brand": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$core.color.neutral.blk-005", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-190", + "type": "color" + } + }, + "foreground": { + "1": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-200", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-010", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-210", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-020", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + } + }, + "text": { + "1": { + "light": { + "value": "$core.color.neutral.blk-220", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-000", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-170", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-060", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-140", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-090", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + }, + "link": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + } + }, + "border": { + "1": { + "light": { + "value": "$core.color.neutral.blk-050", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-160", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-040", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-170", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-030", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-180", + "type": "color" + } + }, + "input": { + "light": { + "value": "$core.color.neutral.blk-100", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-130", + "type": "color" + } + } + }, + "info": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + } + }, + "success": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.green.d-gg-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-160", + "type": "color" + } + } + }, + "warning": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.yellow.d-yy-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-160", + "type": "color" + } + } + }, + "danger": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.red.d-rr-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-160", + "type": "color" + } + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-190", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-005", + "type": "color" + } + } + } + } + } +} \ No newline at end of file From 91df3d1f30652fd566e50f51992c1b4ea230717c Mon Sep 17 00:00:00 2001 From: BrunoAires <108296750+BrunoAiresUS@users.noreply.github.com> Date: Mon, 10 Oct 2022 22:59:21 +0100 Subject: [PATCH 014/696] file path updated from data to tokens --- tokens/$metadata.json | 15 + tokens/$themes.json | 825 ++++++++++++++++++ tokens/brand/dark.json | 1 + tokens/brand/global.json | 1 + tokens/brand/light.json | 20 + tokens/calcite/dark.json | 184 ++++ tokens/calcite/light.json | 184 ++++ tokens/comp/avatar.json | 140 +++ tokens/comp/checkbox.json | 1 + tokens/comp/chip.json | 304 +++++++ tokens/comp/radio.json | 1 + tokens/core.json | 1688 +++++++++++++++++++++++++++++++++++++ tokens/semantic.json | 1673 ++++++++++++++++++++++++++++++++++++ 13 files changed, 5037 insertions(+) create mode 100644 tokens/$metadata.json create mode 100644 tokens/$themes.json create mode 100644 tokens/brand/dark.json create mode 100644 tokens/brand/global.json create mode 100644 tokens/brand/light.json create mode 100644 tokens/calcite/dark.json create mode 100644 tokens/calcite/light.json create mode 100644 tokens/comp/avatar.json create mode 100644 tokens/comp/checkbox.json create mode 100644 tokens/comp/chip.json create mode 100644 tokens/comp/radio.json create mode 100644 tokens/core.json create mode 100644 tokens/semantic.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json new file mode 100644 index 00000000000..00fe87731cd --- /dev/null +++ b/tokens/$metadata.json @@ -0,0 +1,15 @@ +{ + "tokenSetOrder": [ + "core", + "semantic", + "comp/avatar", + "comp/checkbox", + "comp/chip", + "comp/radio", + "calcite/light", + "calcite/dark", + "brand/global", + "brand/light", + "brand/dark" + ] +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json new file mode 100644 index 00000000000..dae62e1f08e --- /dev/null +++ b/tokens/$themes.json @@ -0,0 +1,825 @@ +[ + { + "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", + "name": "Calcite Headless", + "selectedTokenSets": { + "core": "enabled", + "semantic": "enabled", + "comp/avatar": "enabled", + "comp/checkbox": "enabled", + "comp/chip": "enabled", + "comp/radio": "enabled", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "disabled" + }, + "$figmaStyleReferences": { + "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", + "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", + "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", + "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", + "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", + "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", + "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", + "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", + "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", + "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", + "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", + "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", + "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", + "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", + "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", + "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", + "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", + "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", + "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", + "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", + "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", + "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", + "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", + "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", + "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", + "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", + "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", + "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", + "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", + "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", + "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", + "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", + "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", + "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", + "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", + "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", + "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", + "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", + "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", + "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", + "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", + "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", + "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", + "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", + "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", + "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", + "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", + "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", + "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", + "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", + "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", + "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", + "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", + "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", + "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", + "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", + "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", + "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", + "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", + "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", + "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", + "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", + "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", + "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", + "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", + "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", + "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", + "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", + "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", + "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", + "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", + "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", + "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", + "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", + "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", + "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", + "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", + "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", + "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", + "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", + "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", + "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", + "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", + "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", + "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", + "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", + "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", + "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", + "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", + "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", + "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", + "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", + "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", + "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", + "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", + "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", + "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", + "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", + "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", + "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", + "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", + "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", + "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", + "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", + "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", + "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", + "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", + "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", + "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", + "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", + "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", + "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", + "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", + "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", + "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", + "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", + "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", + "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", + "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", + "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", + "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", + "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", + "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", + "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", + "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", + "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", + "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", + "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", + "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", + "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", + "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", + "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", + "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", + "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", + "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", + "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", + "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", + "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", + "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", + "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", + "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", + "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", + "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", + "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", + "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", + "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", + "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", + "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", + "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", + "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", + "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", + "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", + "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", + "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", + "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", + "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", + "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", + "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", + "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", + "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", + "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", + "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", + "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", + "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", + "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", + "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", + "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", + "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", + "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", + "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", + "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", + "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", + "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", + "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", + "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", + "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", + "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", + "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", + "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", + "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", + "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", + "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", + "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", + "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", + "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", + "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", + "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", + "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", + "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", + "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", + "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", + "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", + "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", + "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", + "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", + "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", + "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", + "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", + "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", + "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", + "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", + "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", + "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", + "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", + "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", + "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", + "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", + "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", + "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", + "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", + "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", + "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", + "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", + "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", + "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", + "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", + "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", + "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", + "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", + "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", + "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", + "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", + "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", + "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", + "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", + "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", + "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", + "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", + "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", + "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", + "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", + "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", + "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", + "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", + "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", + "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", + "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", + "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", + "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", + "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", + "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", + "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", + "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", + "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", + "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", + "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", + "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", + "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", + "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", + "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", + "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", + "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", + "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", + "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", + "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", + "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", + "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", + "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", + "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", + "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", + "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", + "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", + "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", + "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", + "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", + "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", + "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", + "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", + "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", + "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", + "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", + "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", + "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", + "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", + "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", + "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", + "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", + "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", + "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", + "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", + "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", + "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", + "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", + "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", + "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", + "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", + "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", + "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", + "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", + "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", + "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", + "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", + "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", + "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", + "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", + "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", + "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", + "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", + "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", + "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", + "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", + "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", + "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", + "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", + "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", + "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", + "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", + "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", + "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", + "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", + "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", + "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", + "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", + "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", + "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", + "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", + "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", + "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", + "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", + "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", + "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", + "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", + "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", + "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", + "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", + "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", + "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", + "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", + "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", + "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", + "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", + "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", + "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", + "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", + "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", + "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", + "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", + "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", + "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", + "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", + "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", + "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", + "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", + "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", + "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", + "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", + "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", + "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", + "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", + "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", + "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", + "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", + "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", + "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", + "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", + "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", + "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", + "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", + "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", + "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", + "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", + "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", + "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", + "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", + "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", + "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", + "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", + "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", + "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", + "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", + "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", + "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", + "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", + "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", + "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", + "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", + "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", + "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", + "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", + "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", + "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", + "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", + "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", + "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", + "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", + "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", + "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", + "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", + "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", + "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", + "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", + "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", + "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", + "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", + "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", + "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", + "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", + "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", + "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", + "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", + "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", + "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", + "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", + "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", + "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", + "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", + "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", + "semantic.font.default.light.-3h": "S:8d93abd302a6c6d873083e31155e5ca579ac6daf,", + "semantic.font.default.light.-2h": "S:48ba5bad0cd12ce100b0a5f41f1bda58af13fad6,", + "semantic.font.default.light.-1h": "S:2ee47ddad93c691f1050054ffc1a691a528fe495,", + "semantic.font.default.light.0h": "S:e28c47cc394adf10147fa0a92026f6327f5ee7a7,", + "semantic.font.default.light.1h": "S:15557a3e32fc922d1e83ef3d989af847f16a0794,", + "semantic.font.default.light.2h": "S:c96dd0a55bc26f31d3120c856be7e99fa89c7ad9,", + "semantic.font.default.light.3h": "S:119ee83681601bc27c769eadc4b905df9166d9ce,", + "semantic.font.default.light.4h": "S:d5f0d1667123ed79a2270b18184fa6206607dfab,", + "semantic.font.default.light.5h": "S:5c571618fdb7fb45226228c90a9b6110f6eb9a03,", + "semantic.font.default.light.6h": "S:4dfca61c237a4cafbb4c9f1a3692612929727bf8,", + "semantic.font.default.light.7h": "S:5245e6ed0a01531bf2e48c40d8b76e451be6f6f9,", + "semantic.font.default.light.8h": "S:ffe269b1e1d543842efc540955c4f907d9b351d9,", + "semantic.font.default.regular.-3h": "S:b0b35a04a37c9a29aa7925bd75498dc771680cb5,", + "semantic.font.default.regular.-2h": "S:d770e2b59d87b40e689b9c5f34ea3a8306fe7993,", + "semantic.font.default.regular.-1h": "S:52b0a03be6e8c92845a6164726fd8ae5c2f120fe,", + "semantic.font.default.regular.0h": "S:3287d661d16494f5cd0b5a818dc282efb96628d5,", + "semantic.font.default.regular.1h": "S:4f53252aa1ed562f81bb47f0855dbb9cc70d3954,", + "semantic.font.default.regular.2h": "S:bd62889c560a113449a8328b7f1a8265ccf8be4f,", + "semantic.font.default.regular.3h": "S:fdfbfd56ed8919ce4733596865b718b4d4097219,", + "semantic.font.default.regular.4h": "S:11405971acb8b1d05136498ca6c0c60b6c81e4a5,", + "semantic.font.default.regular.5h": "S:11531723ac0f511d7cf7550dd5a93bcd6d04426f,", + "semantic.font.default.regular.6h": "S:ceaaad8a660db7d0f65235ffb26fd24f40aab3b1,", + "semantic.font.default.regular.7h": "S:5db9f9faf6cadc5767581167eaad422f1ae6eb1a,", + "semantic.font.default.regular.8h": "S:114e82128269e25d8c98ae4d96b5927e0f2e75e8,", + "semantic.font.default.medium.-3h": "S:f015803819b536b0d5b07f75cb3d9845965c8dc4,", + "semantic.font.default.medium.-2h": "S:5cfb6dd4d4d3130e18bbb2261976f13552faf1ef,", + "semantic.font.default.medium.-1h": "S:2c6f92665bed2ba9154a3ef77f8797564b0b0c23,", + "semantic.font.default.medium.0h": "S:e9c170618b67cab8db99c5cdbbacca6f1c9773f0,", + "semantic.font.default.medium.1h": "S:732930d1806fcd2a09b181959d5510c9b5c55481,", + "semantic.font.default.medium.2h": "S:9c7024577a73553ab2cd641a0e34c1f63cd89314,", + "semantic.font.default.medium.3h": "S:fc0757849ab900466d8dce601d3c70badf05e28f,", + "semantic.font.default.medium.4h": "S:fdf476df9c7b527600f83548e3cae8dedd9cb197,", + "semantic.font.default.medium.5h": "S:90e90f6bce54565ab3972859c2b9c26668927563,", + "semantic.font.default.medium.6h": "S:8385392fe331f91b12abb3cb874ac8d2f4475788,", + "semantic.font.default.medium.7h": "S:cb983ff00b985ec9102266f6f7b75c52be94343f,", + "semantic.font.default.medium.8h": "S:c904decae387952bde0d63123ec3d6d2d6e145bd,", + "semantic.font.default.bold.-3h": "S:f7fd959c964347a5bfcce4451cc9f4f70a6748e3,", + "semantic.font.default.bold.-2h": "S:3828498c4b1112590a83bb832b3dc9f18559aa7d,", + "semantic.font.default.bold.-1h": "S:da92aad9955c7793fbadd29db8b780b1d56b9048,", + "semantic.font.default.bold.0h": "S:49b4b1cba336b48be0994d0ab024745050db4b4d,", + "semantic.font.default.bold.1h": "S:b85c93979092ca81d0e495a098e379a0775411ce,", + "semantic.font.default.bold.2h": "S:81603a43709025a94121f17f5b690763c999a82d,", + "semantic.font.default.bold.3h": "S:5bf7d62f3d28f6e7763ece3a3178b8c1ccbd8270,", + "semantic.font.default.bold.4h": "S:0a217a634b8153be7c27c0275a6de39aba674b32,", + "semantic.font.default.bold.5h": "S:915fce0d9af62b0ff7bf5d9a6e1855b13be064d0,", + "semantic.font.default.bold.6h": "S:0b126d0e5c1baebbe0128a34a545fb905c1664fa,", + "semantic.font.default.bold.7h": "S:bda8759eba40ade0bf4da2578858b977b9f45373,", + "semantic.font.default.bold.8h": "S:adbcdd77d0246ea002a2b49bf9213a099e5dfd61,", + "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", + "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", + "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", + "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", + "semantic.font.wrap.light.0": "S:3d32b755a2e95bf1046e4322e7c69e2e940c43ee,", + "semantic.font.wrap.light.1": "S:65aa2076b047efdce03b7ae1fe0a916d180dfaae,", + "semantic.font.wrap.light.2": "S:3644f0cd7c11ffc9c7c778beafa22b489f473d68,", + "semantic.font.wrap.light.3": "S:19c7184a16209855ae620eedace1e30353729605,", + "semantic.font.wrap.light.4": "S:c29323deae74b42479e9ffa71e93e328c80f5c75,", + "semantic.font.wrap.light.5": "S:e7b6525fa2d9a1988ccb1d8fbf6aa049491ea1c6,", + "semantic.font.wrap.light.6": "S:cb15a71b095257c12b0527f62ff344fe93d37e44,", + "semantic.font.wrap.light.7": "S:08f7964d15ea1d033c58481c87af15c68d790bf3,", + "semantic.font.wrap.light.8": "S:7dff3d9326ce1394d50103a83a46bfa6b7be1fee,", + "semantic.font.wrap.light.-3": "S:9c4a7c36f4158a87a9f3d53a00e08307b7040312,", + "semantic.font.wrap.light.-2": "S:b7c56ea9e4d6e2d254ba320237506dc3356f987f,", + "semantic.font.wrap.light.-1": "S:4f0c25cb4378827ff9082ef81679e584308c48f5,", + "semantic.font.wrap.regular.0": "S:7be72eeccf1fd5aeac2ea699d3780abae79bfb28,", + "semantic.font.wrap.regular.1": "S:30eb423fbb25cda745650b095a7f087898a3402b,", + "semantic.font.wrap.regular.2": "S:9a3a3634c87c1c12f055ba669ec91802ba0599d6,", + "semantic.font.wrap.regular.3": "S:13cc8850a343d8660622986b10f7dc40d6e8bd79,", + "semantic.font.wrap.regular.4": "S:207a9a50d842c1173c0cf5c9311fedaa70d0b0cc,", + "semantic.font.wrap.regular.5": "S:9452ce256b457eaf0e4be0c07ba5918568222b51,", + "semantic.font.wrap.regular.6": "S:5f5b53ab6557877bccecb0ecf172208c0166a344,", + "semantic.font.wrap.regular.7": "S:d1019dab142e27aec9e19cf8efea848875fbbc42,", + "semantic.font.wrap.regular.8": "S:00708c7d7ed4c934acda631d34193a1eb0700838,", + "semantic.font.wrap.regular.-3": "S:068955cfd5ab35a4fe38f2bc8575b5e596d7bf0c,", + "semantic.font.wrap.regular.-2": "S:289f9a9617d2c811a0f1ace31af1d46d55398a98,", + "semantic.font.wrap.regular.-1": "S:0a204631e2aaee0cad3494b2c8e8665cbfda04e3,", + "semantic.font.wrap.medium.0": "S:ce9fa0a3218e3e9de75dbe86b6c1313674c99370,", + "semantic.font.wrap.medium.1": "S:52e0c2d175093033a35b35c96ad84f3f4cf4ff5f,", + "semantic.font.wrap.medium.2": "S:26eac9b9923748efb165ade7952779e54cd33e2f,", + "semantic.font.wrap.medium.3": "S:a02bf20db12ab4379c64c451aa974b6747b10359,", + "semantic.font.wrap.medium.4": "S:5097ea68f6ac1f2275336a57ce1ce8b0facd36c8,", + "semantic.font.wrap.medium.5": "S:2ea14ab2c03f621ab4e734fa28ffe6f2c0ed5f99,", + "semantic.font.wrap.medium.6": "S:c1e938bc02efe7bd30c5476b25599ca81cd6ce87,", + "semantic.font.wrap.medium.7": "S:6e7c3533cc1f3fa3f42353a9ca487b1c3593df37,", + "semantic.font.wrap.medium.8": "S:62518487bdd05dbe7c121ee9b765c012783f5ecc,", + "semantic.font.wrap.medium.-3": "S:db94a069ed4f71b70080ee02a4a1037e3e32c002,", + "semantic.font.wrap.medium.-2": "S:2104d5e843eb52869041f48cbada5369858f3bfd,", + "semantic.font.wrap.medium.-1": "S:f88ce0568f3d4d77e71352d176430ed64c0e23c5,", + "semantic.font.wrap.bold.0": "S:9ce7150124b1b7413d9d7972469227aa4324f2f2,", + "semantic.font.wrap.bold.1": "S:856a457826c786cb1baf8666628d43681c84efa1,", + "semantic.font.wrap.bold.2": "S:f0887954370e5d057c090e439fd538f87d111fe2,", + "semantic.font.wrap.bold.3": "S:5f634f2eac960f594e79625e99dabd36968e2dde,", + "semantic.font.wrap.bold.4": "S:2fc0277469e2453e563a3a8d47b5e437310d3588,", + "semantic.font.wrap.bold.5": "S:517a3320d92f6bbf74f75d7ba24cadbd7d165a82,", + "semantic.font.wrap.bold.6": "S:74599745584dc9bb90d174698ce237e195dd561c,", + "semantic.font.wrap.bold.7": "S:8a72e62ca5d2218601e1824cec21396e52a1ff37,", + "semantic.font.wrap.bold.8": "S:7093ae471198164fd5ba04f7c69ea954721eef9e,", + "semantic.font.wrap.bold.-3": "S:92ee205025c4f451f9e1545d3f938eb3d5be4701,", + "semantic.font.wrap.bold.-2": "S:0454cc8c25134115c72a1e347a2699403a1a0127,", + "semantic.font.wrap.bold.-1": "S:56a44367a1f708f5311fc785fcb9cb0525d630a9,", + "semantic.font.hierarchy.display-1": "S:5e2132bd242290157143e5dcd7f51cf6b8b5e35e,", + "semantic.font.hierarchy.display-2": "S:ebc5b0ded1ce135ebb7631a3bd23886c6d6e4d15,", + "semantic.font.hierarchy.heading-1": "S:107d4116a1f074d3571800328260c63ec9c24bd7,", + "semantic.font.hierarchy.heading-2": "S:3144ef6b2b7f7c6962f8896eeb198fc70dc9f000,", + "semantic.font.hierarchy.heading-3": "S:3f4072a04c4ebb82fb3b4dc573678e17fe974cb8,", + "semantic.font.hierarchy.heading-4": "S:c58f0ad053fafc550a5cd3cff927a9d46be740fe,", + "semantic.font.hierarchy.heading-5": "S:f4b6bd8f0f8460b65654a3b7cf66bc4ecadfd89c,", + "semantic.font.hierarchy.heading-6": "S:8080e86888d65901b48f346a10b30e736033a02a,", + "semantic.font.hierarchy.body-1": "S:f894c00986c5f22fec96b5df40bd86271a2a2b7a,", + "semantic.font.hierarchy.body-2": "S:54ef871bebebdae62ce878e38ec14d6b354e76d5,", + "semantic.font.hierarchy.overline": "S:5bbc5dada31383e027d288904b827d16da63f6e1,", + "semantic.font.hierarchy.caption": "S:ea29b8176497aa471a8c9cc3dcbeb7a0c11e6aed,", + "chip.font.sm": "S:6e06f46dc72628d9885379a6004cf38f62484a73,", + "chip.font.md": "S:68294c7fe5f4ce03d019a90dda3db83341979a16,", + "chip.font.lg": "S:b95c4150dbcfdfade9d0c300b08c8c3d0a445f21,", + "avatar.font.sm": "S:efec04e44db6f5d35afc99fe8864a7e436c7a970,", + "avatar.font.md": "S:15d9a2a6851d81c2a36de0b624a0da2a7dcdb3c2,", + "avatar.font.lg": "S:58e8ec8c0fe66e574ecd8fd82f47f0e44c97d516," + } + }, + { + "id": "db0ed14d4a0b21ff8f9b48aa6aca6c4a40503a5d", + "name": "Brand - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "comp/avatar": "source", + "comp/checkbox": "source", + "comp/chip": "source", + "comp/radio": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "enabled", + "brand/dark": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "ef2ebffc4ef5d41b0e1e0ef1e8b0f53708e912a6", + "name": "Brand - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "comp/avatar": "source", + "comp/checkbox": "source", + "comp/chip": "source", + "comp/radio": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "disabled", + "brand/dark": "enabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "comp/avatar": "source", + "comp/checkbox": "source", + "comp/chip": "source", + "comp/radio": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "enabled", + "calcite/dark": "disabled", + "brand/global": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:37f992e75a052738564bb6e45f2881725c6be26c,", + "avatar.font.dark": "S:b3f2c979fbb6560d01f47ffada32f69a8e5ee4c0,", + "avatar.icon.light": "S:10bc38033f68341726fd88f175b4d148759b85f6,", + "avatar.icon.dark": "S:ade53344f9ff9e425d456e02821c65a916571fd2,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "chip.font.clear.light": "S:3796c540361235edaa562a50b84740e1b7a2a2ef,", + "chip.font.clear.dark": "S:38f0fa788614055e79cd90f840a2e541660a3377,", + "chip.font.solid.grey.light": "S:4f82c96efd5b76332f8b9f44c6414ed081135f2a,", + "chip.font.solid.grey.dark": "S:81d6e9416270217de3388f867430a70300b0bb89,", + "chip.font.solid.blue.light": "S:1ddac7921333b1e6978330f2356785f08130e8d4,", + "chip.font.solid.blue.dark": "S:bc29193aa2fb9572e1475186480fc66b89369c90,", + "chip.font.solid.red.light": "S:f4f17270e4101488c89f4ddb4ffd23a6016fd872,", + "chip.font.solid.red.dark": "S:ef4d19c4853831a38b3bbd55da49370eeb35fb8c,", + "chip.font.solid.yellow.light": "S:9bb793fff13c211bf32be90940ee86857b0a9618,", + "chip.font.solid.yellow.dark": "S:8a1256f5c45c56aa93a7d63697818f6655090fd1,", + "chip.font.solid.green.light": "S:0095fea4c4d53fa63d1c697faf9087abebd2d27f,", + "chip.font.solid.green.dark": "S:fa89f4eba1fa0e77c39ffb9865e5c6a4e5f5ff58,", + "chip.icon.solid.grey.light": "S:6147a3770f8cc0388e68f18ef590629164b74ad1,", + "chip.icon.solid.grey.dark": "S:2383616509f6e32739e9627cf31092a2bd5e532e,", + "chip.icon.solid.blue.light": "S:0ede0cbfab02f8a6206bfd72f2b2b5c4ef0391a4,", + "chip.icon.solid.blue.dark": "S:64fc94c19c6463ec6a3faa21ccc68445a5bdc33c,", + "chip.icon.solid.red.light": "S:8213f2322bf1aeb82e962c9e69ccd5d9a7a42d62,", + "chip.icon.solid.red.dark": "S:1bf1591f07441aa110de9565d0fc05b2bd086a54,", + "chip.icon.solid.yellow.light": "S:3f4a8b434a5abf960435627242f22e50d5d72581,", + "chip.icon.solid.yellow.dark": "S:a71f913d216cdca778d6ab55dde6c8075be9542f,", + "chip.icon.solid.green.light": "S:e7fa37e56e18167a125ab34d6952652efc9ee8cc,", + "chip.icon.solid.green.dark": "S:bfd9f00685321f642603ebcf17f7c42a0afd45f5,", + "chip.icon.clear.light": "S:2c454e2577b73e2706481c306b84482462afec2d,", + "chip.icon.clear.dark": "S:61452b5f6cee57924670d7b34154991d055c1c20,", + "chip.background.solid.grey.light": "S:5ef2501996a6ba3435541a0e343ab2d6c72e9dab,", + "chip.background.solid.grey.dark": "S:18180adb6d184947d589c2a98a17b98d76ab9fa5,", + "chip.background.solid.red.light": "S:8e7e237924a205cdd85de502de1215b870572363,", + "chip.background.solid.red.dark": "S:00e84c6471059d87fd6d0f801a7cf4f9531fc922,", + "chip.background.solid.blue.light": "S:2b2ce7ddf48811a68a82ae829327495b4c1a03de,", + "chip.background.solid.blue.dark": "S:a2b4aae80c9816b169140309adf74c0fdf4250c7,", + "chip.background.solid.green.light": "S:b428295a8744dedd12c3e664170aaa587ef0ad42,", + "chip.background.solid.green.dark": "S:f8038289d6691172cd6a135d93e8dbbea45ec734,", + "chip.background.solid.yellow.light": "S:aeb0742e480f88dafee81614bde4e2bc98d18c3f,", + "chip.background.solid.yellow.dark": "S:90642467ac27ce031784b2e4f0235cdc3a5d2361,", + "chip.closable-icon.light": "S:0a5bdbb4061168eec0fd3761865d47157e182509,", + "chip.closable-icon.dark": "S:3ffeee1923fabd41c1d279f4a42b0575c136472a,", + "chip.border.clear.grey.light": "S:c97faf9857a59ea268babab31e011612610c12db,", + "chip.border.clear.grey.dark": "S:4b89540bee15ededc199005f07871d7fd9016bf1,", + "chip.border.clear.red.light": "S:28b07b815f7d3a8633d914ed71d701db2e0f7ddf,", + "chip.border.clear.red.dark": "S:ce59070c5f307b2e0cef6be20ac165968a2b1fef,", + "chip.border.clear.blue.light": "S:36bc59ba2225bff309cf39afd2a63abeab651b56,", + "chip.border.clear.blue.dark": "S:c7c54446058d24e4c3068df8c43c28a262694ea2,", + "chip.border.clear.green.light": "S:b636725fa88e7d72a78d56cb40c63fd83a6994e2,", + "chip.border.clear.green.dark": "S:6fede667bcae13aeaf69b3707548aa5e45ad0afc,", + "chip.border.clear.yellow.light": "S:48e80fe2ff9c694715481d747d53c445bd310141,", + "chip.border.clear.yellow.dark": "S:3e5334840af51339ac7a413fbe70bcc66c7bb7e0," + } + }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "comp/avatar": "source", + "comp/checkbox": "source", + "comp/chip": "source", + "comp/radio": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:29302cd432556a1fdb454981f0d8a77cad7e0038,", + "avatar.font.dark": "S:acd21d86e04f2ea85d86c6f9bb5b562912c4d232,", + "avatar.icon.light": "S:c3edf45109840e13243fbfac7a8d54aaa307eddb,", + "avatar.icon.dark": "S:3bfc69f7657e19b09736257e25925de41860c631,", + "avatar.background.default.light": "S:85ccb49a090c57bfcea0a24d14c6943e730f8369,", + "avatar.background.default.dark": "S:e676cad9fcab1b63c61c7c68f3ae5f5cdb29c012,", + "avatar.background.red.light": "S:91b63ee959f6138fab84e5707cb92308b2ecb95b,", + "avatar.background.red.dark": "S:479e864a2ee36e450cdd9d7ae1e073b024250d9c,", + "avatar.background.teal.light": "S:6efb9bd330337548e3f89af55007995897e3a1a6,", + "avatar.background.teal.dark": "S:2b7ce96033c8a25c162bf6a2abd4ca687b39ec63,", + "avatar.background.blue.light": "S:31857edc10e6823833037e491a2ead24801eb14b,", + "avatar.background.blue.dark": "S:e8f523cae05208f7e438bdc7ec15f4fc92785345,", + "avatar.background.green.light": "S:76886056ecde76a8897d4d78b8dadf5e130503c3,", + "avatar.background.green.dark": "S:e20ac5197482c84e2123bcbdc881ad7d0620e2b6,", + "avatar.background.yellow.light": "S:8e7da6a5ef14e6b5c18c6f4b2aaa2a3bc2499d6d,", + "avatar.background.yellow.dark": "S:31ab9e24759619594990e7245a4c6d1da0578860,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "chip.font.clear.light": "S:cd1869eff963b3226a5b8e325ae8961edcdc860f,", + "chip.font.clear.dark": "S:318909616281bace8235daa27ed979d1aff4b0a9,", + "chip.font.solid.grey.light": "S:b8867e1a3020eeea9a2650a271a7359a2bbccae4,", + "chip.font.solid.grey.dark": "S:86c4d462b5819b9735d20140b4521a8abcf958fd,", + "chip.font.solid.blue.light": "S:f1fe969047811f0e19a589b82d6518d9f566c5a0,", + "chip.font.solid.blue.dark": "S:262eb659c661db432c7078836990d348e9cd8192,", + "chip.font.solid.red.light": "S:f4bdc45dbdd3cc39c909101780960b79e7f3d290,", + "chip.font.solid.red.dark": "S:70b6fce9e84d9e5e339bacb9b01c037ee3d65777,", + "chip.font.solid.yellow.light": "S:56b1b5eba1aeb3d188f2ae5b6f81ab1c881ac00d,", + "chip.font.solid.yellow.dark": "S:d4def11e776320658b303e9ca4dc7cd6c3cfd487,", + "chip.font.solid.green.light": "S:74149bc8e5589583d6c3ec05f9913a7337d68896,", + "chip.font.solid.green.dark": "S:dffa78fe6bf4023de4136d2987dcb676dbd26884,", + "chip.icon.solid.grey.light": "S:d97a4c55308b9f4d790e0ee17b5d24f61e57e671,", + "chip.icon.solid.grey.dark": "S:562b8adc7da03fe1c2b1dfe7de7e03e37b4c44a0,", + "chip.icon.solid.blue.light": "S:6bb0769be1bdfa3d0fdc0a6e74c138377b691836,", + "chip.icon.solid.blue.dark": "S:572c404ec7b60487b95450fd2f484338ccc3a0dc,", + "chip.icon.solid.red.light": "S:f057a349cb80f832952ff77cd151c5ceb474c4ea,", + "chip.icon.solid.red.dark": "S:6c639d005249f8fc0d53a6a766e87b4eebc9a40a,", + "chip.icon.solid.yellow.light": "S:63e19df15d6d62afa1ddc79e9226a76ee0f248ec,", + "chip.icon.solid.yellow.dark": "S:e68a8ef3629d3464d117b437c38dc4ebe1061608,", + "chip.icon.solid.green.light": "S:e6fa8a496243b0e127ae95b5668958bdafe35882,", + "chip.icon.solid.green.dark": "S:4523cc9b509173ddf2d5943bb2f07765ac2c1b65,", + "chip.icon.clear.light": "S:25936659b8a8179a70b6284139020c0086fbcd83,", + "chip.icon.clear.dark": "S:5287507d1d26d4469fefc4d2d3e310b5785e4b76,", + "chip.background.solid.grey.light": "S:0909a8594cdece59d95658524e35e8851574b9b0,", + "chip.background.solid.grey.dark": "S:566795705bffb811b01570d2461dd1e9e8e7199a,", + "chip.background.solid.red.light": "S:2a693a5b566104a571168cc4f1ae7dab4f1a33e2,", + "chip.background.solid.red.dark": "S:0549fc6214086a5be651fdb03ca738828ea58c77,", + "chip.background.solid.blue.light": "S:2c1907ce6f179a7b05d270604eeac2441186d599,", + "chip.background.solid.blue.dark": "S:c1d148796f813966898658324460c131c6dcba29,", + "chip.background.solid.green.light": "S:27ea2b8e8e2221a36363f3daec91f097caa37825,", + "chip.background.solid.green.dark": "S:655b6a79fd0da910a91e828d4a87c25fe9f8c369,", + "chip.background.solid.yellow.light": "S:4675e80ae6c13180656635fe8cb7e57734cf7cca,", + "chip.background.solid.yellow.dark": "S:7783c5c18a6ee992c210dc49387ad18c627fb9b0,", + "chip.closable-icon.light": "S:776823e8214067bd67130b39c90decaf04b44084,", + "chip.closable-icon.dark": "S:f5d53e306b0ba1f1811dc1f58fac219e27be0ab2,", + "chip.border.clear.grey.light": "S:61294370e8a894ad396f4b0f0202731c446989c2,", + "chip.border.clear.grey.dark": "S:fbf51d5f24552fd9a4ce00a799617b538ac7d5e8,", + "chip.border.clear.red.light": "S:04cadf14d9f5813d96f1b10ec7ecffe975a60a8f,", + "chip.border.clear.red.dark": "S:d051253031f4b12e45abf1bbd7505c6bdd879fba,", + "chip.border.clear.blue.light": "S:282b074f6d26fc6b5ad65b27300efa01c1d3c369,", + "chip.border.clear.blue.dark": "S:afb5e3fb26a91a407a69055fbe4d940cb485c73e,", + "chip.border.clear.green.light": "S:1d497f4f05ef2b8e6848d8b369b0a5a0db2849a0,", + "chip.border.clear.green.dark": "S:175f79fa692a069c2e74c8a4149dd05adb74c374,", + "chip.border.clear.yellow.light": "S:7e429379cf6504670b6355d2b5694539dfc0fa0c,", + "chip.border.clear.yellow.dark": "S:2661ad97eeff2f2f6c6b00b9cfadf1fb482e9806," + } + } +] \ No newline at end of file diff --git a/tokens/brand/dark.json b/tokens/brand/dark.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/brand/dark.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/brand/global.json b/tokens/brand/global.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/brand/global.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/brand/light.json b/tokens/brand/light.json new file mode 100644 index 00000000000..a55d3c5bc32 --- /dev/null +++ b/tokens/brand/light.json @@ -0,0 +1,20 @@ +{ + "core": { + "font": { + "font-size": { + "6": { + "value": "26px", + "type": "fontSizes" + } + } + } + }, + "breakpoint": { + "width": { + "lg": { + "value": "$core.breakpoint.width.lg", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json new file mode 100644 index 00000000000..519e7a4caa9 --- /dev/null +++ b/tokens/calcite/dark.json @@ -0,0 +1,184 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.dark", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.dark", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.dark", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.dark", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.dark", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.dark", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.dark", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.dark", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.dark", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.dark", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.dark", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.dark", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$avatar.font.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json new file mode 100644 index 00000000000..ecc31febd15 --- /dev/null +++ b/tokens/calcite/light.json @@ -0,0 +1,184 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.light", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.light", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.light", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.light", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.light", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.light", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.light", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.light", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.light", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.light", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.light", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.light", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.light", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$avatar.font.light", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/comp/avatar.json b/tokens/comp/avatar.json new file mode 100644 index 00000000000..5694023e615 --- /dev/null +++ b/tokens/comp/avatar.json @@ -0,0 +1,140 @@ +{ + "avatar": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.red.h-rr-090", + "type": "color" + } + }, + "teal": { + "light": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + } + }, + "green": { + "light": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-100", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/comp/checkbox.json b/tokens/comp/checkbox.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/comp/checkbox.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/comp/chip.json b/tokens/comp/chip.json new file mode 100644 index 00000000000..25055b9be38 --- /dev/null +++ b/tokens/comp/chip.json @@ -0,0 +1,304 @@ +{ + "chip": { + "font": { + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "closable-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "clear": { + "grey": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "comp-height": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/comp/radio.json b/tokens/comp/radio.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/comp/radio.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json new file mode 100644 index 00000000000..0cee5b781e7 --- /dev/null +++ b/tokens/core.json @@ -0,0 +1,1688 @@ +{ + "core": { + "font": { + "font-family": { + "primary": { + "value": "Avenir Next LT Pro", + "type": "fontFamilies" + }, + "secondary": { + "value": "Avenir Next World", + "type": "fontFamilies" + }, + "code": { + "value": "Monaco", + "type": "fontFamilies" + } + }, + "font-weight": { + "ultralight": { + "value": "UltraLight", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "thin": { + "value": "Thin", + "type": "fontWeights" + }, + "light": { + "value": "Light", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "regular": { + "value": "Regular", + "type": "fontWeights" + }, + "medium": { + "value": "Medium", + "type": "fontWeights" + }, + "demi": { + "value": "Demi", + "type": "fontWeights" + }, + "bold": { + "value": "Bold", + "type": "fontWeights" + }, + "extrabold": { + "value": "ExtraBold", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "black": { + "value": "Black", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "heavy": { + "value": "Heavy", + "type": "fontWeights" + } + }, + "line-height": { + "fixed": { + "0": { + "value": "12px", + "type": "lineHeights" + }, + "1": { + "value": "16px", + "type": "lineHeights" + }, + "2": { + "value": "20px", + "type": "lineHeights" + }, + "3": { + "value": "24px", + "type": "lineHeights" + }, + "4": { + "value": "28px", + "type": "lineHeights" + }, + "5": { + "value": "32px", + "type": "lineHeights" + }, + "6": { + "value": "36px", + "type": "lineHeights" + }, + "7": { + "value": "40px", + "type": "lineHeights" + }, + "8": { + "value": "48px", + "type": "lineHeights" + }, + "9": { + "value": "56px", + "type": "lineHeights" + }, + "10": { + "value": "64px", + "type": "lineHeights" + }, + "11": { + "value": "72px", + "type": "lineHeights" + }, + "12": { + "value": "80px", + "type": "lineHeights" + } + }, + "relative": { + "default": { + "value": "auto", + "type": "lineHeights", + "description": "1" + }, + "tight": { + "value": "125%", + "type": "lineHeights", + "description": "1.25" + }, + "snug": { + "value": "137.5%", + "type": "lineHeights", + "description": "1.375" + }, + "normal": { + "value": "150%", + "type": "lineHeights", + "description": "1.5" + }, + "relaxed": { + "value": "162.5%", + "type": "lineHeights", + "description": "1.625" + }, + "loose": { + "value": "200%", + "type": "lineHeights", + "description": "2" + } + } + }, + "font-size": { + "0": { + "value": "10px", + "type": "fontSizes" + }, + "1": { + "value": "12px", + "type": "fontSizes" + }, + "2": { + "value": "14px", + "type": "fontSizes" + }, + "3": { + "value": "16px", + "type": "fontSizes" + }, + "4": { + "value": "18px", + "type": "fontSizes" + }, + "5": { + "value": "20px", + "type": "fontSizes" + }, + "6": { + "value": "24px", + "type": "fontSizes" + }, + "7": { + "value": "32px", + "type": "fontSizes" + }, + "8": { + "value": "40px", + "type": "fontSizes" + }, + "9": { + "value": "48px", + "type": "fontSizes" + }, + "10": { + "value": "56px", + "type": "fontSizes" + }, + "11": { + "value": "64px", + "type": "fontSizes" + }, + "12": { + "value": "72px", + "type": "fontSizes" + }, + "13": { + "value": "80px", + "type": "fontSizes" + }, + "14": { + "value": "96px", + "type": "fontSizes" + }, + "15": { + "value": "120px", + "type": "fontSizes" + } + }, + "letter-spacing": { + "tight": { + "value": "-0.4px", + "type": "letterSpacing" + }, + "normal": { + "value": "0px", + "type": "letterSpacing" + }, + "wide": { + "value": "0.4px", + "type": "letterSpacing" + } + }, + "paragraph-spacing": { + "normal": { + "value": "10px", + "type": "paragraphSpacing" + } + }, + "text-decoration": { + "none": { + "value": "none", + "type": "textDecoration" + }, + "underline": { + "value": "underline", + "type": "textDecoration" + } + }, + "text-case": { + "none": { + "value": "none", + "type": "textCase" + }, + "uppercase": { + "value": "uppercase", + "type": "textCase" + }, + "lowercase": { + "value": "lowercase", + "type": "textCase" + }, + "capitalize": { + "value": "capitalize", + "type": "textCase" + } + } + }, + "border": { + "border-radius": { + "0": { + "value": "2px", + "type": "borderRadius" + }, + "1": { + "value": "4px", + "type": "borderRadius" + }, + "2": { + "value": "6px", + "type": "borderRadius" + }, + "3": { + "value": "8px", + "type": "borderRadius" + }, + "4": { + "value": "12px", + "type": "borderRadius" + }, + "5": { + "value": "16px", + "type": "borderRadius" + }, + "6": { + "value": "24px", + "type": "borderRadius" + }, + "none": { + "value": "0px", + "type": "borderRadius" + }, + "half": { + "value": "50%", + "type": "borderRadius" + }, + "full": { + "value": "9999px", + "type": "borderRadius" + } + }, + "border-width": { + "0": { + "value": "1px", + "type": "borderWidth" + }, + "1": { + "value": "2px", + "type": "borderWidth" + }, + "2": { + "value": "4px", + "type": "borderWidth" + }, + "3": { + "value": "8px", + "type": "borderWidth" + }, + "none": { + "value": "0px", + "type": "borderWidth" + } + } + }, + "opacity": { + "0": { + "value": "0%", + "type": "opacity" + }, + "4": { + "value": "4%", + "type": "opacity" + }, + "8": { + "value": "8%", + "type": "opacity" + }, + "10": { + "value": "10%", + "type": "opacity" + }, + "20": { + "value": "20%", + "type": "opacity" + }, + "30": { + "value": "30%", + "type": "opacity" + }, + "40": { + "value": "40%", + "type": "opacity" + }, + "50": { + "value": "50%", + "type": "opacity" + }, + "60": { + "value": "60%", + "type": "opacity" + }, + "70": { + "value": "70%", + "type": "opacity" + }, + "80": { + "value": "80%", + "type": "opacity" + }, + "90": { + "value": "90%", + "type": "opacity" + }, + "92": { + "value": "92%", + "type": "opacity" + }, + "96": { + "value": "96%", + "type": "opacity" + }, + "100": { + "value": "100%", + "type": "opacity" + } + }, + "color": { + "neutral": { + "blk-000": { + "value": "#ffffff", + "type": "color" + }, + "blk-005": { + "value": "#f8f8f8", + "type": "color" + }, + "blk-010": { + "value": "#f3f3f3", + "type": "color" + }, + "blk-020": { + "value": "#eaeaea", + "type": "color" + }, + "blk-030": { + "value": "#dfdfdf", + "type": "color" + }, + "blk-040": { + "value": "#d4d4d4", + "type": "color" + }, + "blk-050": { + "value": "#cacaca", + "type": "color" + }, + "blk-060": { + "value": "#bfbfbf", + "type": "color" + }, + "blk-070": { + "value": "#b5b5b5", + "type": "color" + }, + "blk-080": { + "value": "#aaaaaa", + "type": "color" + }, + "blk-090": { + "value": "#9f9f9f", + "type": "color" + }, + "blk-100": { + "value": "#949494", + "type": "color" + }, + "blk-110": { + "value": "#8a8a8a", + "type": "color" + }, + "blk-120": { + "value": "#808080", + "type": "color" + }, + "blk-130": { + "value": "#757575", + "type": "color" + }, + "blk-140": { + "value": "#6a6a6a", + "type": "color" + }, + "blk-150": { + "value": "#606060", + "type": "color" + }, + "blk-160": { + "value": "#555555", + "type": "color" + }, + "blk-170": { + "value": "#4a4a4a", + "type": "color" + }, + "blk-180": { + "value": "#404040", + "type": "color" + }, + "blk-190": { + "value": "#353535", + "type": "color" + }, + "blk-200": { + "value": "#2b2b2b", + "type": "color" + }, + "blk-210": { + "value": "#202020", + "type": "color" + }, + "blk-220": { + "value": "#151515", + "type": "color" + }, + "blk-230": { + "value": "#0b0b0b", + "type": "color" + }, + "blk-235": { + "value": "#060606", + "type": "color" + }, + "blk-240": { + "value": "#000000", + "type": "color" + } + }, + "palette": { + "high-saturation": { + "blue": { + "h-bb-010": { + "value": "#c7eaff", + "type": "color" + }, + "h-bb-020": { + "value": "#9fd4f3", + "type": "color" + }, + "h-bb-030": { + "value": "#77bde7", + "type": "color" + }, + "h-bb-040": { + "value": "#50a7da", + "type": "color" + }, + "h-bb-050": { + "value": "#2890ce", + "type": "color" + }, + "h-bb-060": { + "value": "#007ac2", + "type": "color" + }, + "h-bb-070": { + "value": "#00619b", + "type": "color" + }, + "h-bb-080": { + "value": "#004874", + "type": "color" + }, + "h-bb-090": { + "value": "#00304d", + "type": "color" + }, + "h-bb-100": { + "value": "#001726", + "type": "color" + } + }, + "green-blue": { + "h-gb-010": { + "value": "#cef5f4", + "type": "color" + }, + "h-gb-020": { + "value": "#afedec", + "type": "color" + }, + "h-gb-030": { + "value": "#8fe6e5", + "type": "color" + }, + "h-gb-040": { + "value": "#5ae0de", + "type": "color" + }, + "h-gb-050": { + "value": "#28cecb", + "type": "color" + }, + "h-gb-060": { + "value": "#00bab5", + "type": "color" + }, + "h-gb-070": { + "value": "#009b98", + "type": "color" + }, + "h-gb-080": { + "value": "#007472", + "type": "color" + }, + "h-gb-090": { + "value": "#004d4c", + "type": "color" + }, + "h-gb-100": { + "value": "#002625", + "type": "color" + } + }, + "green": { + "h-gg-010": { + "value": "#bdf2c4", + "type": "color" + }, + "h-gg-020": { + "value": "#a2e4ab", + "type": "color" + }, + "h-gg-030": { + "value": "#87d692", + "type": "color" + }, + "h-gg-040": { + "value": "#6bc878", + "type": "color" + }, + "h-gg-050": { + "value": "#50ba5f", + "type": "color" + }, + "h-gg-060": { + "value": "#35ac46", + "type": "color" + }, + "h-gg-070": { + "value": "#288835", + "type": "color" + }, + "h-gg-080": { + "value": "#1a6324", + "type": "color" + }, + "h-gg-090": { + "value": "#0d3f14", + "type": "color" + }, + "h-gg-100": { + "value": "#001a03", + "type": "color" + } + }, + "yellow-green": { + "h-yg-010": { + "value": "#e5f7b4", + "type": "color" + }, + "h-yg-020": { + "value": "#d9ef9f", + "type": "color" + }, + "h-yg-030": { + "value": "#cde78a", + "type": "color" + }, + "h-yg-040": { + "value": "#c2e075", + "type": "color" + }, + "h-yg-050": { + "value": "#b6d860", + "type": "color" + }, + "h-yg-060": { + "value": "#aad04b", + "type": "color" + }, + "h-yg-070": { + "value": "#84a338", + "type": "color" + }, + "h-yg-080": { + "value": "#5e7526", + "type": "color" + }, + "h-yg-090": { + "value": "#384813", + "type": "color" + }, + "h-yg-100": { + "value": "#121a00", + "type": "color" + } + }, + "yellow": { + "h-yy-010": { + "value": "#fff7cc", + "type": "color" + }, + "h-yy-020": { + "value": "#fef3ad", + "type": "color" + }, + "h-yy-030": { + "value": "#fcee8d", + "type": "color" + }, + "h-yy-040": { + "value": "#fbea6e", + "type": "color" + }, + "h-yy-050": { + "value": "#f9e54e", + "type": "color" + }, + "h-yy-060": { + "value": "#edd317", + "type": "color" + }, + "h-yy-070": { + "value": "#d9bc00", + "type": "color" + }, + "h-yy-080": { + "value": "#bfa200", + "type": "color" + }, + "h-yy-090": { + "value": "#8c7500", + "type": "color" + }, + "h-yy-100": { + "value": "#5c4e00", + "type": "color" + } + }, + "orange-yellow": { + "h-oy-010": { + "value": "#ffe2bf", + "type": "color" + }, + "h-oy-020": { + "value": "#fed3a1", + "type": "color" + }, + "h-oy-030": { + "value": "#fcc582", + "type": "color" + }, + "h-oy-040": { + "value": "#fbb664", + "type": "color" + }, + "h-oy-050": { + "value": "#f9a845", + "type": "color" + }, + "h-oy-060": { + "value": "#f89927", + "type": "color" + }, + "h-oy-070": { + "value": "#c67718", + "type": "color" + }, + "h-oy-080": { + "value": "#9a5b10", + "type": "color" + }, + "h-oy-090": { + "value": "#6d3f08", + "type": "color" + }, + "h-oy-100": { + "value": "#402300", + "type": "color" + } + }, + "orange": { + "h-oo-010": { + "value": "#ffd8bf", + "type": "color" + }, + "h-oo-020": { + "value": "#fdc39f", + "type": "color" + }, + "h-oo-030": { + "value": "#faae7f", + "type": "color" + }, + "h-oo-040": { + "value": "#f89960", + "type": "color" + }, + "h-oo-050": { + "value": "#f58440", + "type": "color" + }, + "h-oo-060": { + "value": "#f36f20", + "type": "color" + }, + "h-oo-070": { + "value": "#c65a18", + "type": "color" + }, + "h-oo-080": { + "value": "#9a4410", + "type": "color" + }, + "h-oo-090": { + "value": "#6d2f08", + "type": "color" + }, + "h-oo-100": { + "value": "#401900", + "type": "color" + } + }, + "red-orange": { + "h-ro-010": { + "value": "#ffc7b3", + "type": "color" + }, + "h-ro-020": { + "value": "#f8af95", + "type": "color" + }, + "h-ro-030": { + "value": "#f09677", + "type": "color" + }, + "h-ro-040": { + "value": "#e97e5a", + "type": "color" + }, + "h-ro-050": { + "value": "#e1653c", + "type": "color" + }, + "h-ro-060": { + "value": "#da4d1e", + "type": "color" + }, + "h-ro-070": { + "value": "#ad3c16", + "type": "color" + }, + "h-ro-080": { + "value": "#802c0f", + "type": "color" + }, + "h-ro-090": { + "value": "#531b07", + "type": "color" + }, + "h-ro-100": { + "value": "#260a00", + "type": "color" + } + }, + "red": { + "h-rr-010": { + "value": "#ffc6bf", + "type": "color" + }, + "h-rr-020": { + "value": "#ffaaa1", + "type": "color" + }, + "h-rr-030": { + "value": "#f2877b", + "type": "color" + }, + "h-rr-040": { + "value": "#f07062", + "type": "color" + }, + "h-rr-050": { + "value": "#e65240", + "type": "color" + }, + "h-rr-060": { + "value": "#d83020", + "type": "color" + }, + "h-rr-070": { + "value": "#a82b1e", + "type": "color" + }, + "h-rr-080": { + "value": "#7c1d13", + "type": "color" + }, + "h-rr-090": { + "value": "#4f0e08", + "type": "color" + }, + "h-rr-100": { + "value": "#210300", + "type": "color" + } + }, + "pink": { + "h-pk-010": { + "value": "#ffd1ef", + "type": "color" + }, + "h-pk-020": { + "value": "#fabee4", + "type": "color" + }, + "h-pk-030": { + "value": "#f2a5d6", + "type": "color" + }, + "h-pk-040": { + "value": "#eb8dc9", + "type": "color" + }, + "h-pk-050": { + "value": "#e673bb", + "type": "color" + }, + "h-pk-060": { + "value": "#e04ea6", + "type": "color" + }, + "h-pk-070": { + "value": "#ba2f7e", + "type": "color" + }, + "h-pk-080": { + "value": "#851b52", + "type": "color" + }, + "h-pk-090": { + "value": "#590b32", + "type": "color" + }, + "h-pk-100": { + "value": "#260404", + "type": "color" + } + }, + "violet-red": { + "h-vr-010": { + "value": "#fadbff", + "type": "color" + }, + "h-vr-020": { + "value": "#e4beeb", + "type": "color" + }, + "h-vr-030": { + "value": "#cfa1d7", + "type": "color" + }, + "h-vr-040": { + "value": "#b983c3", + "type": "color" + }, + "h-vr-050": { + "value": "#a466af", + "type": "color" + }, + "h-vr-060": { + "value": "#8e499b", + "type": "color" + }, + "h-vr-070": { + "value": "#73377e", + "type": "color" + }, + "h-vr-080": { + "value": "#572561", + "type": "color" + }, + "h-vr-090": { + "value": "#3c1243", + "type": "color" + }, + "h-vr-100": { + "value": "#200026", + "type": "color" + } + }, + "violet": { + "h-vv-010": { + "value": "#e8d9ff", + "type": "color" + }, + "h-vv-020": { + "value": "#cdb9eb", + "type": "color" + }, + "h-vv-030": { + "value": "#b39ad7", + "type": "color" + }, + "h-vv-040": { + "value": "#987ac3", + "type": "color" + }, + "h-vv-050": { + "value": "#7e5baf", + "type": "color" + }, + "h-vv-060": { + "value": "#633b9b", + "type": "color" + }, + "h-vv-070": { + "value": "#4e2c7e", + "type": "color" + }, + "h-vv-080": { + "value": "#3a1e61", + "type": "color" + }, + "h-vv-090": { + "value": "#250f43", + "type": "color" + }, + "h-vv-100": { + "value": "#100026", + "type": "color" + } + } + }, + "vibrant": { + "blue": { + "v-bb-120": { + "value": "#59d6ff", + "type": "color" + }, + "v-bb-140": { + "value": "#3db8ff", + "type": "color" + }, + "v-bb-160": { + "value": "#009af2", + "type": "color" + }, + "v-bb-180": { + "value": "#009af2", + "type": "color" + } + }, + "green-blue": { + "v-gb-120": { + "value": "#59fffc", + "type": "color" + }, + "v-gb-140": { + "value": "#00f7f3", + "type": "color" + }, + "v-gb-160": { + "value": "#00e6e2", + "type": "color" + }, + "v-gb-180": { + "value": "#00cfca", + "type": "color" + } + }, + "green": { + "v-gg-120": { + "value": "#73ff84", + "type": "color" + }, + "v-gg-140": { + "value": "#3bed52", + "type": "color" + }, + "v-gg-160": { + "value": "#00b81b", + "type": "color" + }, + "v-gg-180": { + "value": "#00a118", + "type": "color" + } + }, + "yellow-green": { + "v-yg-120": { + "value": "#d7ff73", + "type": "color" + }, + "v-yg-140": { + "value": "#bbed3b", + "type": "color" + }, + "v-yg-160": { + "value": "#96cc00", + "type": "color" + }, + "v-yg-180": { + "value": "#7fab00", + "type": "color" + } + }, + "yellow": { + "v-yy-120": { + "value": "#fff766", + "type": "color" + }, + "v-yy-140": { + "value": "#ffee33", + "type": "color" + }, + "v-yy-160": { + "value": "#f5d000", + "type": "color" + }, + "v-yy-180": { + "value": "#ebba17", + "type": "color" + } + }, + "orange-yellow": { + "v-oy-120": { + "value": "#ffb54d", + "type": "color" + }, + "v-oy-140": { + "value": "#ff9500", + "type": "color" + }, + "v-oy-160": { + "value": "#e68600", + "type": "color" + }, + "v-oy-180": { + "value": "#d17300", + "type": "color" + } + }, + "red-orange": { + "v-ro-120": { + "value": "#ff824d", + "type": "color" + }, + "v-ro-140": { + "value": "#ff4d00", + "type": "color" + }, + "v-ro-160": { + "value": "#de4300", + "type": "color" + }, + "v-ro-180": { + "value": "#c93b00", + "type": "color" + } + }, + "red": { + "v-rr-120": { + "value": "#ff624d", + "type": "color" + }, + "v-rr-140": { + "value": "#ff0015", + "type": "color" + }, + "v-rr-160": { + "value": "#d90012", + "type": "color" + }, + "v-rr-180": { + "value": "#b3000f", + "type": "color" + } + }, + "pink": { + "v-pk-120": { + "value": "#ff66c2", + "type": "color" + }, + "v-pk-140": { + "value": "#ff19a4", + "type": "color" + }, + "v-pk-160": { + "value": "#d11486", + "type": "color" + }, + "v-pk-180": { + "value": "#c00073", + "type": "color" + } + }, + "violet-red": { + "v-vr-120": { + "value": "#ea80ff", + "type": "color" + }, + "v-vr-140": { + "value": "#dd33ff", + "type": "color" + }, + "v-vr-160": { + "value": "#ac08cc", + "type": "color" + }, + "v-vr-180": { + "value": "#83009e", + "type": "color" + } + }, + "violet": { + "v-vv-120": { + "value": "#b580ff", + "type": "color" + }, + "v-vv-140": { + "value": "#974dff", + "type": "color" + }, + "v-vv-160": { + "value": "#8129ff", + "type": "color" + }, + "v-vv-180": { + "value": "#6a0be6", + "type": "color" + } + } + }, + "dark": { + "green": { + "d-gg-410": { + "value": "#44ED51", + "type": "color" + }, + "d-gg-420": { + "value": "#36DA43", + "type": "color" + }, + "d-gg-430": { + "value": "#36DA43", + "type": "color" + } + }, + "yellow": { + "d-yy-410": { + "value": "#FFE24D", + "type": "color" + }, + "d-yy-420": { + "value": "#FFC900", + "type": "color" + }, + "d-yy-430": { + "value": "#F4B000", + "type": "color" + } + }, + "red": { + "d-rr-410": { + "value": "#FF7465", + "type": "color" + }, + "d-rr-420": { + "value": "#FE583E", + "type": "color" + }, + "d-rr-430": { + "value": "#F3381B", + "type": "color" + } + }, + "blue": { + "d-bb-410": { + "value": "#47BBFF", + "type": "color" + }, + "d-bb-420": { + "value": "#00A0FF", + "type": "color" + }, + "d-bb-430": { + "value": "#0087D7", + "type": "color" + } + } + } + } + }, + "sizing": { + "0": { + "value": "2px", + "type": "sizing" + }, + "1": { + "value": "4px", + "type": "sizing" + }, + "2": { + "value": "6px", + "type": "sizing" + }, + "3": { + "value": "8px", + "type": "sizing" + }, + "4": { + "value": "10px", + "type": "sizing" + }, + "5": { + "value": "12px", + "type": "sizing" + }, + "6": { + "value": "14px", + "type": "sizing" + }, + "7": { + "value": "16px", + "type": "sizing" + }, + "8": { + "value": "20px", + "type": "sizing" + }, + "9": { + "value": "24px", + "type": "sizing" + }, + "10": { + "value": "28px", + "type": "sizing" + }, + "11": { + "value": "32px", + "type": "sizing" + }, + "12": { + "value": "36px", + "type": "sizing" + }, + "13": { + "value": "40px", + "type": "sizing" + }, + "14": { + "value": "44px", + "type": "sizing" + }, + "15": { + "value": "48px", + "type": "sizing" + }, + "16": { + "value": "56px", + "type": "sizing" + }, + "17": { + "value": "64px", + "type": "sizing" + }, + "18": { + "value": "72px", + "type": "sizing" + }, + "19": { + "value": "80px", + "type": "sizing" + }, + "20": { + "value": "96px", + "type": "sizing" + }, + "21": { + "value": "112px", + "type": "sizing" + }, + "22": { + "value": "128px", + "type": "sizing" + }, + "23": { + "value": "144px", + "type": "sizing" + }, + "24": { + "value": "160px", + "type": "sizing" + }, + "25": { + "value": "192px", + "type": "sizing" + }, + "26": { + "value": "224px", + "type": "sizing" + }, + "27": { + "value": "256px", + "type": "sizing" + }, + "28": { + "value": "288px", + "type": "sizing" + }, + "none": { + "value": "0px", + "type": "sizing" + } + }, + "spacing": { + "0": { + "value": "2px", + "type": "spacing" + }, + "1": { + "value": "4px", + "type": "spacing" + }, + "2": { + "value": "6px", + "type": "spacing" + }, + "3": { + "value": "8px", + "type": "spacing" + }, + "4": { + "value": "10px", + "type": "spacing" + }, + "5": { + "value": "12px", + "type": "spacing" + }, + "6": { + "value": "14px", + "type": "spacing" + }, + "7": { + "value": "16px", + "type": "spacing" + }, + "8": { + "value": "20px", + "type": "spacing" + }, + "9": { + "value": "24px", + "type": "spacing" + }, + "10": { + "value": "28px", + "type": "spacing" + }, + "11": { + "value": "32px", + "type": "spacing" + }, + "12": { + "value": "36px", + "type": "spacing" + }, + "13": { + "value": "40px", + "type": "spacing" + }, + "14": { + "value": "44px", + "type": "spacing" + }, + "15": { + "value": "48px", + "type": "spacing" + }, + "16": { + "value": "56px", + "type": "spacing" + }, + "17": { + "value": "64px", + "type": "spacing" + }, + "18": { + "value": "72px", + "type": "spacing" + }, + "19": { + "value": "80px", + "type": "spacing" + }, + "20": { + "value": "96px", + "type": "spacing" + }, + "21": { + "value": "112px", + "type": "spacing" + }, + "22": { + "value": "128px", + "type": "spacing" + }, + "23": { + "value": "144px", + "type": "spacing" + }, + "24": { + "value": "160px", + "type": "spacing" + }, + "25": { + "value": "192px", + "type": "spacing" + }, + "26": { + "value": "224px", + "type": "spacing" + }, + "27": { + "value": "256px", + "type": "spacing" + }, + "28": { + "value": "288px", + "type": "spacing" + }, + "none": { + "value": "0px", + "type": "spacing" + } + }, + "breakpoint": { + "width": { + "xs": { + "value": "476px", + "type": "sizing", + "description": "min-width size" + }, + "sm": { + "value": "768px", + "type": "sizing", + "description": "min-width size" + }, + "md": { + "value": "1152px", + "type": "sizing", + "description": "min-width size" + }, + "lg": { + "value": "1440px", + "type": "sizing", + "description": "min-width size" + } + }, + "margin": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "gutter": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "content": { + "fluid": { + "value": "100%", + "type": "sizing", + "description": "for fluid grid widths" + }, + "fixed": { + "value": "1440px", + "type": "sizing", + "description": "only for lg breakpoint fixed grid width" + } + }, + "cols": { + "xs": { + "value": "6", + "type": "other", + "description": "columns" + }, + "sm": { + "value": "12", + "type": "other", + "description": "columns" + }, + "md": { + "value": "24", + "type": "other", + "description": "columns" + }, + "lg": { + "value": "24", + "type": "other", + "description": "columns" + } + } + }, + "z-index": { + "deep": { + "value": "-999999", + "type": "other" + }, + "default": { + "value": "1", + "type": "other" + }, + "sticky": { + "value": "300", + "type": "other" + }, + "header": { + "value": "400", + "type": "other" + }, + "toast": { + "value": "500", + "type": "other" + }, + "dropdown": { + "value": "600", + "type": "other" + }, + "overlay": { + "value": "700", + "type": "other" + }, + "modal": { + "value": "800", + "type": "other" + }, + "popup": { + "value": "900", + "type": "other" + } + }, + "box-shadow": { + "0": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + }, + "1": { + "value": [ + { + "x": "0", + "y": "2", + "blur": "8", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "4", + "blur": "16", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "2": { + "value": [ + { + "x": "0", + "y": "4", + "blur": "20", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "12", + "blur": "32", + "spread": "-2", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "none": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + } + } + } +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json new file mode 100644 index 00000000000..b195cf841eb --- /dev/null +++ b/tokens/semantic.json @@ -0,0 +1,1673 @@ +{ + "semantic": { + "font": { + "default": { + "light": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "wrap": { + "light": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "hierarchy": { + "display-1": { + "value": "$semantic.font.wrap.regular.8", + "type": "typography" + }, + "display-2": { + "value": "$semantic.font.wrap.regular.7", + "type": "typography" + }, + "heading-1": { + "value": "$semantic.font.wrap.regular.6", + "type": "typography" + }, + "heading-2": { + "value": "$semantic.font.wrap.regular.5", + "type": "typography" + }, + "heading-3": { + "value": "$semantic.font.wrap.regular.4", + "type": "typography" + }, + "heading-4": { + "value": "$semantic.font.wrap.regular.3", + "type": "typography" + }, + "heading-5": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + }, + "heading-6": { + "value": "$semantic.font.wrap.regular.1", + "type": "typography" + }, + "body-1": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "body-2": { + "value": "$semantic.font.wrap.regular.-1", + "type": "typography" + }, + "overline": { + "value": { + "fontFamilies": "$core.font.font-family.primary", + "fontWeights": "$core.font.font-weight.bold", + "fontSizes": "$core.font.font-size.2", + "lineHeights": "$core.font.line-height.fixed.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textCase": "$core.font.text-case.uppercase", + "textDecoration": "$core.font.text-decoration.none", + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.bold", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2" + }, + "type": "typography" + }, + "caption": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + } + } + }, + "border": { + "border-radius": { + "sharp": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "round": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "circular": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "pill": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + } + }, + "ui": { + "border": { + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + } + }, + "color": { + "brand": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$core.color.neutral.blk-005", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-190", + "type": "color" + } + }, + "foreground": { + "1": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-200", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-010", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-210", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-020", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + } + }, + "text": { + "1": { + "light": { + "value": "$core.color.neutral.blk-220", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-000", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-170", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-060", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-140", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-090", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + }, + "link": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + } + }, + "border": { + "1": { + "light": { + "value": "$core.color.neutral.blk-050", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-160", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-040", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-170", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-030", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-180", + "type": "color" + } + }, + "input": { + "light": { + "value": "$core.color.neutral.blk-100", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-130", + "type": "color" + } + } + }, + "info": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + } + }, + "success": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.green.d-gg-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-160", + "type": "color" + } + } + }, + "warning": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.yellow.d-yy-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-160", + "type": "color" + } + } + }, + "danger": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.red.d-rr-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-160", + "type": "color" + } + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-190", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-005", + "type": "color" + } + } + } + } + } +} \ No newline at end of file From 294e61951caf772d5120e80f07a638af1f7c7bd6 Mon Sep 17 00:00:00 2001 From: Erik Harper Date: Mon, 10 Oct 2022 15:06:02 -0700 Subject: [PATCH 015/696] removing data folder since we're using tokens folder now --- data/$metadata.json | 15 - data/$themes.json | 689 ---------------- data/brand/dark.json | 1 - data/brand/global.json | 1 - data/brand/light.json | 20 - data/calcite/dark.json | 178 ----- data/calcite/light.json | 178 ----- data/comp/avatar.json | 140 ---- data/comp/checkbox.json | 1 - data/comp/chip.json | 304 ------- data/comp/radio.json | 1 - data/core.json | 1688 --------------------------------------- data/semantic.json | 1673 -------------------------------------- data/tokens.json | 243 ------ 14 files changed, 5132 deletions(-) delete mode 100644 data/$metadata.json delete mode 100644 data/$themes.json delete mode 100644 data/brand/dark.json delete mode 100644 data/brand/global.json delete mode 100644 data/brand/light.json delete mode 100644 data/calcite/dark.json delete mode 100644 data/calcite/light.json delete mode 100644 data/comp/avatar.json delete mode 100644 data/comp/checkbox.json delete mode 100644 data/comp/chip.json delete mode 100644 data/comp/radio.json delete mode 100644 data/core.json delete mode 100644 data/semantic.json delete mode 100644 data/tokens.json diff --git a/data/$metadata.json b/data/$metadata.json deleted file mode 100644 index 00fe87731cd..00000000000 --- a/data/$metadata.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "tokenSetOrder": [ - "core", - "semantic", - "comp/avatar", - "comp/checkbox", - "comp/chip", - "comp/radio", - "calcite/light", - "calcite/dark", - "brand/global", - "brand/light", - "brand/dark" - ] -} \ No newline at end of file diff --git a/data/$themes.json b/data/$themes.json deleted file mode 100644 index 670d71768d3..00000000000 --- a/data/$themes.json +++ /dev/null @@ -1,689 +0,0 @@ -[ - { - "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", - "name": "Calcite Headless", - "selectedTokenSets": { - "core": "enabled", - "semantic": "enabled", - "comp/avatar": "enabled", - "comp/checkbox": "enabled", - "comp/chip": "enabled", - "comp/radio": "enabled", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "disabled" - }, - "$figmaStyleReferences": { - "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", - "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", - "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", - "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", - "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", - "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", - "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", - "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", - "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", - "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", - "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", - "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", - "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", - "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", - "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", - "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", - "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", - "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", - "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", - "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", - "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", - "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", - "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", - "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", - "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", - "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", - "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", - "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", - "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", - "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", - "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", - "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", - "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", - "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", - "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", - "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", - "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", - "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", - "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", - "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", - "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", - "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", - "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", - "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", - "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", - "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", - "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", - "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", - "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", - "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", - "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", - "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", - "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", - "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", - "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", - "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", - "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", - "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", - "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", - "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", - "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", - "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", - "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", - "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", - "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", - "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", - "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", - "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", - "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", - "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", - "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", - "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", - "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", - "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", - "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", - "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", - "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", - "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", - "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", - "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", - "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", - "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", - "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", - "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", - "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", - "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", - "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", - "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", - "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", - "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", - "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", - "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", - "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", - "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", - "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", - "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", - "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", - "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", - "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", - "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", - "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", - "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", - "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", - "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", - "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", - "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", - "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", - "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", - "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", - "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", - "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", - "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", - "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", - "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", - "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", - "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", - "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", - "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", - "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", - "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", - "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", - "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", - "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", - "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", - "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", - "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", - "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", - "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", - "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", - "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", - "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", - "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", - "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", - "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", - "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", - "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", - "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", - "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", - "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", - "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", - "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", - "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", - "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", - "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", - "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", - "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", - "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", - "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", - "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", - "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", - "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", - "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", - "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", - "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", - "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", - "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", - "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", - "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", - "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", - "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", - "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", - "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", - "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", - "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", - "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", - "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", - "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", - "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", - "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", - "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", - "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", - "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", - "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", - "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", - "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", - "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", - "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", - "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", - "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", - "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", - "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", - "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", - "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", - "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", - "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", - "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", - "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", - "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", - "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", - "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", - "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", - "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", - "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", - "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", - "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", - "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", - "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", - "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", - "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", - "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", - "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", - "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", - "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", - "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", - "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", - "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", - "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", - "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", - "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", - "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", - "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", - "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", - "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", - "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", - "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", - "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", - "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", - "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", - "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", - "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", - "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", - "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", - "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", - "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", - "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", - "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", - "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", - "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", - "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", - "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", - "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", - "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", - "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", - "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", - "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", - "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", - "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", - "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", - "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", - "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", - "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", - "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", - "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", - "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", - "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", - "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", - "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", - "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", - "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", - "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", - "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", - "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", - "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", - "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", - "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", - "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", - "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", - "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", - "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", - "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", - "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", - "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", - "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", - "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", - "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", - "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", - "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", - "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", - "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", - "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", - "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", - "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", - "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", - "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", - "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", - "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", - "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", - "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", - "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", - "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", - "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", - "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", - "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", - "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", - "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", - "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", - "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", - "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", - "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", - "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", - "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", - "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", - "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", - "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", - "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", - "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", - "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", - "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", - "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", - "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", - "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", - "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", - "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", - "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", - "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", - "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", - "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", - "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", - "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", - "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", - "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", - "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", - "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", - "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", - "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", - "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", - "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", - "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", - "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", - "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", - "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", - "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", - "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", - "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", - "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", - "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", - "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", - "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", - "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", - "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", - "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", - "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", - "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", - "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", - "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", - "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", - "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", - "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", - "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", - "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", - "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", - "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", - "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", - "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", - "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", - "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", - "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", - "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", - "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", - "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", - "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", - "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", - "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", - "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", - "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", - "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", - "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", - "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", - "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", - "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", - "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", - "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", - "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", - "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", - "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", - "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", - "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", - "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", - "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", - "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", - "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", - "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", - "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", - "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", - "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", - "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", - "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", - "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", - "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", - "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", - "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", - "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", - "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", - "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", - "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", - "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", - "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", - "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", - "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", - "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", - "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", - "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", - "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", - "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", - "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", - "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", - "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", - "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", - "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", - "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", - "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", - "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", - "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", - "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", - "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", - "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", - "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", - "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", - "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", - "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", - "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", - "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", - "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", - "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", - "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", - "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", - "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", - "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", - "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", - "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", - "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", - "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", - "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", - "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", - "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", - "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", - "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", - "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", - "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", - "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", - "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", - "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", - "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", - "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", - "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", - "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", - "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", - "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", - "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", - "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", - "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", - "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", - "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", - "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", - "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", - "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", - "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", - "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", - "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", - "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", - "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", - "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", - "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", - "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", - "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", - "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", - "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", - "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", - "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", - "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", - "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", - "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", - "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", - "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", - "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", - "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", - "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", - "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", - "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", - "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", - "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", - "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", - "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", - "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", - "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", - "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", - "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", - "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", - "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", - "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", - "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", - "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", - "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", - "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", - "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", - "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", - "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", - "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", - "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", - "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", - "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", - "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", - "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", - "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", - "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", - "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", - "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", - "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", - "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", - "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", - "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", - "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", - "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", - "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", - "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", - "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", - "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", - "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", - "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", - "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", - "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", - "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", - "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", - "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", - "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", - "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", - "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", - "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", - "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", - "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", - "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," - } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light mode", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "comp/avatar": "enabled", - "comp/checkbox": "enabled", - "comp/chip": "enabled", - "comp/radio": "enabled", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "enabled", - "calcite/dark": "disabled", - "brand/global": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:f1db712874d439f19e50bab8921da521661da4c7,", - "color.brand.hover": "S:398b2db4a8913a69d27a05089f55d1bc142f2586,", - "color.brand.press": "S:bf84e0a3e9205fb646c80c29012923da5dca2376,", - "color.background.1": "S:b8edad78bab5fa6579e34c10641374fb26c7bca6,", - "color.foreground.1": "S:12334ec876ee0f44febdc46df533dfc03e3d6bc6,", - "color.foreground.2": "S:69bae54f4ea8a6497bb9738178dd41f1e4afff50,", - "color.foreground.3": "S:cf703318a4a220974949333f951c16aae9945283,", - "color.text.1": "S:27cb00fe7af3b588ef893d41f1b2450b59ec607e,", - "color.text.2": "S:22061c9096d7072d9d0ed0535c73766512a87537,", - "color.text.3": "S:f64d4fdc84f4af4a1a2de0594eb800a6fa219f3b,", - "color.text.inverse": "S:79b5c1dce593634a5892b85c132ca7da229896f5,", - "color.text.link": "S:b7de1e7ff7731884f80e6dd64325739ceaf371ca,", - "color.border.1": "S:33c2a1288830278a225d88a01a1f5849caad4c65,", - "color.border.2": "S:7f72e6f97ac5c6e8bbfad4bc88611e07cc3f54c4,", - "color.border.3": "S:3f16fb05c4dc3dae50a50e0e0aa3113e57685d4c,", - "color.border.input": "S:f566eb53d5d01be79899fcdf1bfd76ce93dedc34,", - "color.info.default": "S:d1f1885a87f2e46c7b543a42de01f997cd143b2d,", - "color.info.hover": "S:2832defbdb959bad6bab9ff03c2afbae9c181af7,", - "color.info.press": "S:64b16b0e6660cd5f867e426c622c562751533dc3,", - "color.success.default": "S:0c31b45fcaec7a502b2e79b7b0774582f11258fd,", - "color.success.hover": "S:4825b7c14df8f5df41990f98da0b1aaa3276a353,", - "color.success.press": "S:06a1e90c9ecd4a33f4c4bc153ecff78d1931e5ab,", - "color.warning.default": "S:35ed4da9d217f3b93134884426ef035f124104cc,", - "color.warning.hover": "S:5cea281bd29a6b3078991211b7e09d371d786ec3,", - "color.warning.press": "S:2e779ff3922819c83ae63ddbbf1fa786e8ef51b8,", - "color.danger.default": "S:44c523effae2f4ed0fd54f105889ec5a88921951,", - "color.danger.hover": "S:ee46e4c5cc54e2eb6081cdae66a246dc34b0fbe9,", - "color.danger.press": "S:f9c37cdd1dfb30f032da6fabee26ab91449b9c82,", - "color.inverse.default": "S:a769c82cab39e27b5efda30fe0e750ba79b8fbbb,", - "color.component.avatar.font": "S:5e8dd204e7ce88edd3371b1291e917535ef73750,", - "color.component.avatar.icon": "S:3f2060fd50c33525a30e4b6ae72c5d3b57123280,", - "color.component.avatar.background.default": "S:b531473e298609b8f76c08e94159c42ddddf1050,", - "color.component.avatar.background.red": "S:ec6e01b42edfeb8b9df25135b2e1c85687be064b,", - "color.component.avatar.background.teal": "S:3883e50ea0dc330ad7d0440bc6a07d7e93cf1359,", - "color.component.avatar.background.blue": "S:9a464bfed53a3c4c5b86b5396be7d6626e7b3df4,", - "color.component.avatar.background.green": "S:03daa56c58fcc3ef2aae5b6a94743cbbbb921fc1,", - "color.component.avatar.background.yellow": "S:b02715cf91b6020172e212bc94ff04cf30eecf6a,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793," - } - }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark mode", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "comp/avatar": "enabled", - "comp/checkbox": "enabled", - "comp/chip": "enabled", - "comp/radio": "enabled", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "enabled", - "brand/global": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:91acdf6e24423dcb08a845657195f1f78f7924ff,", - "color.brand.hover": "S:d4de84029c77e5d30c76993f97caf45a61657f85,", - "color.brand.press": "S:55f1866e22ae022050fccfc085f93c8576e18143,", - "color.background.1": "S:ce6b64a3a7f4f8efcfe6e62e833ff5ab6b825f53,", - "color.foreground.1": "S:d98a7a4cae097b66471a60b194ec5d9a76e9be1e,", - "color.foreground.2": "S:8e2571d5ed9bf6ca1be8df2c55048c75d5d3f9e4,", - "color.foreground.3": "S:c0274d89f52fd094d1054825ab814f52b5431f87,", - "color.text.1": "S:9ccb8b2e40bc38bde8cb3c8b80930b9ac014780a,", - "color.text.2": "S:7c1a7db7b407a3bab962b751ed62704f01a9da91,", - "color.text.3": "S:486bfb03d98d85139975cf6bef7736ca219c7e84,", - "color.text.inverse": "S:6a91d549e15a9b08dee8735289e76ec1ad4941a9,", - "color.text.link": "S:48f59590b05c7ae481524199e4cee7a769558d30,", - "color.border.1": "S:0167dbf6f7a14cb435a6b2360aaebd0b50a842dc,", - "color.border.2": "S:a89fc3d8dfbc38a90098b333bd40b33eea0498a7,", - "color.border.3": "S:745ca8ff87a3547c712081eb2a057f526b48312e,", - "color.border.input": "S:3c9511922408baf62c611dd8ad847fb5682e1ef5,", - "color.info.default": "S:f99bc435885d328fcd2324e2df0d1a490608f787,", - "color.info.hover": "S:865a4c82d920f492e443dba1415e84cc95af0f54,", - "color.info.press": "S:e1a629a26cc20fb69c894bec5c36168bf10cc58c,", - "color.success.default": "S:37c4d6666b67cd63e3ab2f9fc2efecc69259d92b,", - "color.success.hover": "S:c0639a5a0c843fb7a212a9025b691034d6592d75,", - "color.success.press": "S:99a6f5b57052d30db822dc4bef16dff9cf1824be,", - "color.warning.default": "S:a4ec14a78d1aff8664888231ede3975fface3826,", - "color.warning.hover": "S:ce937903e582808bcc034017ffd747a4c6ca670f,", - "color.warning.press": "S:bdc0ed356933e148164c6d09229454f2fde1f7f1,", - "color.danger.default": "S:f5985f98302f973f8de4ca7ae17fcba46190c995,", - "color.danger.hover": "S:2ccb326a5eafaaeb567f2175feb1520ec2a5d77c,", - "color.danger.press": "S:bf5415246c58f4c4223ac56d1b643d43f4b99ad6,", - "color.inverse.default": "S:748bd4095fb58b16c8756101e48f6966350fe269,", - "color.component.avatar.font": "S:7c2bb94c95eae80256e5fbc6652a7a99b825541c,", - "color.component.avatar.icon": "S:1be7249a83aeebabf970dcbfb02b06d95c09880c,", - "color.component.avatar.background.default": "S:483a8b9bb92f5900c3a69fdc0859e1470517d6b9,", - "color.component.avatar.background.red": "S:e992bbdb9fc5af30796bded2b92a399e1837ca40,", - "color.component.avatar.background.teal": "S:3ce84a69e481f7f51668e8b2b269d75dfbbce08d,", - "color.component.avatar.background.blue": "S:df04a28f598ca20fd2e8c3e9becddcce967fe5b3,", - "color.component.avatar.background.green": "S:91de8c9d98cae6890d54918e900dd8b4664a9354,", - "color.component.avatar.background.yellow": "S:974b83a4cdd7324aeee011a4c4c695d418cc3d9d,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc," - } - } -] \ No newline at end of file diff --git a/data/brand/dark.json b/data/brand/dark.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/data/brand/dark.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/data/brand/global.json b/data/brand/global.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/data/brand/global.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/data/brand/light.json b/data/brand/light.json deleted file mode 100644 index a55d3c5bc32..00000000000 --- a/data/brand/light.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "core": { - "font": { - "font-size": { - "6": { - "value": "26px", - "type": "fontSizes" - } - } - } - }, - "breakpoint": { - "width": { - "lg": { - "value": "$core.breakpoint.width.lg", - "type": "sizing" - } - } - } -} \ No newline at end of file diff --git a/data/calcite/dark.json b/data/calcite/dark.json deleted file mode 100644 index dde051457a6..00000000000 --- a/data/calcite/dark.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "color": { - "brand": { - "default": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.brand.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.brand.press.dark", - "type": "color" - } - }, - "background": { - "1": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - }, - "foreground": { - "1": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.foreground.3.dark", - "type": "color" - } - }, - "text": { - "1": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "inverse": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - }, - "link": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "border": { - "1": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - }, - "input": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "info": { - "default": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.info.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.info.press.dark", - "type": "color" - } - }, - "success": { - "default": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.success.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.success.press.dark", - "type": "color" - } - }, - "warning": { - "default": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.warning.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.warning.press.dark", - "type": "color" - } - }, - "danger": { - "default": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.danger.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.danger.press.dark", - "type": "color" - } - }, - "inverse": { - "default": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "component": { - "avatar": { - "font": { - "value": "$avatar.font.dark", - "type": "color" - }, - "icon": { - "value": "$avatar.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$avatar.background.default.dark", - "type": "color" - }, - "red": { - "value": "$avatar.background.red.dark", - "type": "color" - }, - "teal": { - "value": "$avatar.background.teal.dark", - "type": "color" - }, - "blue": { - "value": "$avatar.background.blue.dark", - "type": "color" - }, - "green": { - "value": "$avatar.background.green.dark", - "type": "color" - }, - "yellow": { - "value": "$avatar.background.yellow.dark", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/data/calcite/light.json b/data/calcite/light.json deleted file mode 100644 index 325ec0dc658..00000000000 --- a/data/calcite/light.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "color": { - "brand": { - "default": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.brand.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.brand.press.light", - "type": "color" - } - }, - "background": { - "1": { - "value": "$semantic.ui.color.background.light", - "type": "color" - } - }, - "foreground": { - "1": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.foreground.3.light", - "type": "color" - } - }, - "text": { - "1": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "inverse": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "link": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - } - }, - "border": { - "1": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "input": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - } - }, - "info": { - "default": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.info.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.info.press.light", - "type": "color" - } - }, - "success": { - "default": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.success.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.success.press.light", - "type": "color" - } - }, - "warning": { - "default": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.warning.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.warning.press.light", - "type": "color" - } - }, - "danger": { - "default": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.danger.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.danger.press.light", - "type": "color" - } - }, - "inverse": { - "default": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - } - }, - "component": { - "avatar": { - "font": { - "value": "$avatar.font.light", - "type": "color" - }, - "icon": { - "value": "$avatar.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$avatar.background.default.light", - "type": "color" - }, - "red": { - "value": "$avatar.background.red.light", - "type": "color" - }, - "teal": { - "value": "$avatar.background.teal.light", - "type": "color" - }, - "blue": { - "value": "$avatar.background.blue.light", - "type": "color" - }, - "green": { - "value": "$avatar.background.green.light", - "type": "color" - }, - "yellow": { - "value": "$avatar.background.yellow.light", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/data/comp/avatar.json b/data/comp/avatar.json deleted file mode 100644 index 5694023e615..00000000000 --- a/data/comp/avatar.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "avatar": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.red.h-rr-090", - "type": "color" - } - }, - "teal": { - "light": { - "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-090", - "type": "color" - } - }, - "green": { - "light": { - "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-100", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - } - } -} \ No newline at end of file diff --git a/data/comp/checkbox.json b/data/comp/checkbox.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/data/comp/checkbox.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/data/comp/chip.json b/data/comp/chip.json deleted file mode 100644 index 25055b9be38..00000000000 --- a/data/comp/chip.json +++ /dev/null @@ -1,304 +0,0 @@ -{ - "chip": { - "font": { - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - }, - "solid": { - "grey": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - } - }, - "icon": { - "solid": { - "grey": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "solid": { - "grey": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "closable-icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "clear": { - "grey": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - } - } - }, - "comp-height": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - } - } -} \ No newline at end of file diff --git a/data/comp/radio.json b/data/comp/radio.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/data/comp/radio.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/data/core.json b/data/core.json deleted file mode 100644 index 0cee5b781e7..00000000000 --- a/data/core.json +++ /dev/null @@ -1,1688 +0,0 @@ -{ - "core": { - "font": { - "font-family": { - "primary": { - "value": "Avenir Next LT Pro", - "type": "fontFamilies" - }, - "secondary": { - "value": "Avenir Next World", - "type": "fontFamilies" - }, - "code": { - "value": "Monaco", - "type": "fontFamilies" - } - }, - "font-weight": { - "ultralight": { - "value": "UltraLight", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "thin": { - "value": "Thin", - "type": "fontWeights" - }, - "light": { - "value": "Light", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "regular": { - "value": "Regular", - "type": "fontWeights" - }, - "medium": { - "value": "Medium", - "type": "fontWeights" - }, - "demi": { - "value": "Demi", - "type": "fontWeights" - }, - "bold": { - "value": "Bold", - "type": "fontWeights" - }, - "extrabold": { - "value": "ExtraBold", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "black": { - "value": "Black", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "heavy": { - "value": "Heavy", - "type": "fontWeights" - } - }, - "line-height": { - "fixed": { - "0": { - "value": "12px", - "type": "lineHeights" - }, - "1": { - "value": "16px", - "type": "lineHeights" - }, - "2": { - "value": "20px", - "type": "lineHeights" - }, - "3": { - "value": "24px", - "type": "lineHeights" - }, - "4": { - "value": "28px", - "type": "lineHeights" - }, - "5": { - "value": "32px", - "type": "lineHeights" - }, - "6": { - "value": "36px", - "type": "lineHeights" - }, - "7": { - "value": "40px", - "type": "lineHeights" - }, - "8": { - "value": "48px", - "type": "lineHeights" - }, - "9": { - "value": "56px", - "type": "lineHeights" - }, - "10": { - "value": "64px", - "type": "lineHeights" - }, - "11": { - "value": "72px", - "type": "lineHeights" - }, - "12": { - "value": "80px", - "type": "lineHeights" - } - }, - "relative": { - "default": { - "value": "auto", - "type": "lineHeights", - "description": "1" - }, - "tight": { - "value": "125%", - "type": "lineHeights", - "description": "1.25" - }, - "snug": { - "value": "137.5%", - "type": "lineHeights", - "description": "1.375" - }, - "normal": { - "value": "150%", - "type": "lineHeights", - "description": "1.5" - }, - "relaxed": { - "value": "162.5%", - "type": "lineHeights", - "description": "1.625" - }, - "loose": { - "value": "200%", - "type": "lineHeights", - "description": "2" - } - } - }, - "font-size": { - "0": { - "value": "10px", - "type": "fontSizes" - }, - "1": { - "value": "12px", - "type": "fontSizes" - }, - "2": { - "value": "14px", - "type": "fontSizes" - }, - "3": { - "value": "16px", - "type": "fontSizes" - }, - "4": { - "value": "18px", - "type": "fontSizes" - }, - "5": { - "value": "20px", - "type": "fontSizes" - }, - "6": { - "value": "24px", - "type": "fontSizes" - }, - "7": { - "value": "32px", - "type": "fontSizes" - }, - "8": { - "value": "40px", - "type": "fontSizes" - }, - "9": { - "value": "48px", - "type": "fontSizes" - }, - "10": { - "value": "56px", - "type": "fontSizes" - }, - "11": { - "value": "64px", - "type": "fontSizes" - }, - "12": { - "value": "72px", - "type": "fontSizes" - }, - "13": { - "value": "80px", - "type": "fontSizes" - }, - "14": { - "value": "96px", - "type": "fontSizes" - }, - "15": { - "value": "120px", - "type": "fontSizes" - } - }, - "letter-spacing": { - "tight": { - "value": "-0.4px", - "type": "letterSpacing" - }, - "normal": { - "value": "0px", - "type": "letterSpacing" - }, - "wide": { - "value": "0.4px", - "type": "letterSpacing" - } - }, - "paragraph-spacing": { - "normal": { - "value": "10px", - "type": "paragraphSpacing" - } - }, - "text-decoration": { - "none": { - "value": "none", - "type": "textDecoration" - }, - "underline": { - "value": "underline", - "type": "textDecoration" - } - }, - "text-case": { - "none": { - "value": "none", - "type": "textCase" - }, - "uppercase": { - "value": "uppercase", - "type": "textCase" - }, - "lowercase": { - "value": "lowercase", - "type": "textCase" - }, - "capitalize": { - "value": "capitalize", - "type": "textCase" - } - } - }, - "border": { - "border-radius": { - "0": { - "value": "2px", - "type": "borderRadius" - }, - "1": { - "value": "4px", - "type": "borderRadius" - }, - "2": { - "value": "6px", - "type": "borderRadius" - }, - "3": { - "value": "8px", - "type": "borderRadius" - }, - "4": { - "value": "12px", - "type": "borderRadius" - }, - "5": { - "value": "16px", - "type": "borderRadius" - }, - "6": { - "value": "24px", - "type": "borderRadius" - }, - "none": { - "value": "0px", - "type": "borderRadius" - }, - "half": { - "value": "50%", - "type": "borderRadius" - }, - "full": { - "value": "9999px", - "type": "borderRadius" - } - }, - "border-width": { - "0": { - "value": "1px", - "type": "borderWidth" - }, - "1": { - "value": "2px", - "type": "borderWidth" - }, - "2": { - "value": "4px", - "type": "borderWidth" - }, - "3": { - "value": "8px", - "type": "borderWidth" - }, - "none": { - "value": "0px", - "type": "borderWidth" - } - } - }, - "opacity": { - "0": { - "value": "0%", - "type": "opacity" - }, - "4": { - "value": "4%", - "type": "opacity" - }, - "8": { - "value": "8%", - "type": "opacity" - }, - "10": { - "value": "10%", - "type": "opacity" - }, - "20": { - "value": "20%", - "type": "opacity" - }, - "30": { - "value": "30%", - "type": "opacity" - }, - "40": { - "value": "40%", - "type": "opacity" - }, - "50": { - "value": "50%", - "type": "opacity" - }, - "60": { - "value": "60%", - "type": "opacity" - }, - "70": { - "value": "70%", - "type": "opacity" - }, - "80": { - "value": "80%", - "type": "opacity" - }, - "90": { - "value": "90%", - "type": "opacity" - }, - "92": { - "value": "92%", - "type": "opacity" - }, - "96": { - "value": "96%", - "type": "opacity" - }, - "100": { - "value": "100%", - "type": "opacity" - } - }, - "color": { - "neutral": { - "blk-000": { - "value": "#ffffff", - "type": "color" - }, - "blk-005": { - "value": "#f8f8f8", - "type": "color" - }, - "blk-010": { - "value": "#f3f3f3", - "type": "color" - }, - "blk-020": { - "value": "#eaeaea", - "type": "color" - }, - "blk-030": { - "value": "#dfdfdf", - "type": "color" - }, - "blk-040": { - "value": "#d4d4d4", - "type": "color" - }, - "blk-050": { - "value": "#cacaca", - "type": "color" - }, - "blk-060": { - "value": "#bfbfbf", - "type": "color" - }, - "blk-070": { - "value": "#b5b5b5", - "type": "color" - }, - "blk-080": { - "value": "#aaaaaa", - "type": "color" - }, - "blk-090": { - "value": "#9f9f9f", - "type": "color" - }, - "blk-100": { - "value": "#949494", - "type": "color" - }, - "blk-110": { - "value": "#8a8a8a", - "type": "color" - }, - "blk-120": { - "value": "#808080", - "type": "color" - }, - "blk-130": { - "value": "#757575", - "type": "color" - }, - "blk-140": { - "value": "#6a6a6a", - "type": "color" - }, - "blk-150": { - "value": "#606060", - "type": "color" - }, - "blk-160": { - "value": "#555555", - "type": "color" - }, - "blk-170": { - "value": "#4a4a4a", - "type": "color" - }, - "blk-180": { - "value": "#404040", - "type": "color" - }, - "blk-190": { - "value": "#353535", - "type": "color" - }, - "blk-200": { - "value": "#2b2b2b", - "type": "color" - }, - "blk-210": { - "value": "#202020", - "type": "color" - }, - "blk-220": { - "value": "#151515", - "type": "color" - }, - "blk-230": { - "value": "#0b0b0b", - "type": "color" - }, - "blk-235": { - "value": "#060606", - "type": "color" - }, - "blk-240": { - "value": "#000000", - "type": "color" - } - }, - "palette": { - "high-saturation": { - "blue": { - "h-bb-010": { - "value": "#c7eaff", - "type": "color" - }, - "h-bb-020": { - "value": "#9fd4f3", - "type": "color" - }, - "h-bb-030": { - "value": "#77bde7", - "type": "color" - }, - "h-bb-040": { - "value": "#50a7da", - "type": "color" - }, - "h-bb-050": { - "value": "#2890ce", - "type": "color" - }, - "h-bb-060": { - "value": "#007ac2", - "type": "color" - }, - "h-bb-070": { - "value": "#00619b", - "type": "color" - }, - "h-bb-080": { - "value": "#004874", - "type": "color" - }, - "h-bb-090": { - "value": "#00304d", - "type": "color" - }, - "h-bb-100": { - "value": "#001726", - "type": "color" - } - }, - "green-blue": { - "h-gb-010": { - "value": "#cef5f4", - "type": "color" - }, - "h-gb-020": { - "value": "#afedec", - "type": "color" - }, - "h-gb-030": { - "value": "#8fe6e5", - "type": "color" - }, - "h-gb-040": { - "value": "#5ae0de", - "type": "color" - }, - "h-gb-050": { - "value": "#28cecb", - "type": "color" - }, - "h-gb-060": { - "value": "#00bab5", - "type": "color" - }, - "h-gb-070": { - "value": "#009b98", - "type": "color" - }, - "h-gb-080": { - "value": "#007472", - "type": "color" - }, - "h-gb-090": { - "value": "#004d4c", - "type": "color" - }, - "h-gb-100": { - "value": "#002625", - "type": "color" - } - }, - "green": { - "h-gg-010": { - "value": "#bdf2c4", - "type": "color" - }, - "h-gg-020": { - "value": "#a2e4ab", - "type": "color" - }, - "h-gg-030": { - "value": "#87d692", - "type": "color" - }, - "h-gg-040": { - "value": "#6bc878", - "type": "color" - }, - "h-gg-050": { - "value": "#50ba5f", - "type": "color" - }, - "h-gg-060": { - "value": "#35ac46", - "type": "color" - }, - "h-gg-070": { - "value": "#288835", - "type": "color" - }, - "h-gg-080": { - "value": "#1a6324", - "type": "color" - }, - "h-gg-090": { - "value": "#0d3f14", - "type": "color" - }, - "h-gg-100": { - "value": "#001a03", - "type": "color" - } - }, - "yellow-green": { - "h-yg-010": { - "value": "#e5f7b4", - "type": "color" - }, - "h-yg-020": { - "value": "#d9ef9f", - "type": "color" - }, - "h-yg-030": { - "value": "#cde78a", - "type": "color" - }, - "h-yg-040": { - "value": "#c2e075", - "type": "color" - }, - "h-yg-050": { - "value": "#b6d860", - "type": "color" - }, - "h-yg-060": { - "value": "#aad04b", - "type": "color" - }, - "h-yg-070": { - "value": "#84a338", - "type": "color" - }, - "h-yg-080": { - "value": "#5e7526", - "type": "color" - }, - "h-yg-090": { - "value": "#384813", - "type": "color" - }, - "h-yg-100": { - "value": "#121a00", - "type": "color" - } - }, - "yellow": { - "h-yy-010": { - "value": "#fff7cc", - "type": "color" - }, - "h-yy-020": { - "value": "#fef3ad", - "type": "color" - }, - "h-yy-030": { - "value": "#fcee8d", - "type": "color" - }, - "h-yy-040": { - "value": "#fbea6e", - "type": "color" - }, - "h-yy-050": { - "value": "#f9e54e", - "type": "color" - }, - "h-yy-060": { - "value": "#edd317", - "type": "color" - }, - "h-yy-070": { - "value": "#d9bc00", - "type": "color" - }, - "h-yy-080": { - "value": "#bfa200", - "type": "color" - }, - "h-yy-090": { - "value": "#8c7500", - "type": "color" - }, - "h-yy-100": { - "value": "#5c4e00", - "type": "color" - } - }, - "orange-yellow": { - "h-oy-010": { - "value": "#ffe2bf", - "type": "color" - }, - "h-oy-020": { - "value": "#fed3a1", - "type": "color" - }, - "h-oy-030": { - "value": "#fcc582", - "type": "color" - }, - "h-oy-040": { - "value": "#fbb664", - "type": "color" - }, - "h-oy-050": { - "value": "#f9a845", - "type": "color" - }, - "h-oy-060": { - "value": "#f89927", - "type": "color" - }, - "h-oy-070": { - "value": "#c67718", - "type": "color" - }, - "h-oy-080": { - "value": "#9a5b10", - "type": "color" - }, - "h-oy-090": { - "value": "#6d3f08", - "type": "color" - }, - "h-oy-100": { - "value": "#402300", - "type": "color" - } - }, - "orange": { - "h-oo-010": { - "value": "#ffd8bf", - "type": "color" - }, - "h-oo-020": { - "value": "#fdc39f", - "type": "color" - }, - "h-oo-030": { - "value": "#faae7f", - "type": "color" - }, - "h-oo-040": { - "value": "#f89960", - "type": "color" - }, - "h-oo-050": { - "value": "#f58440", - "type": "color" - }, - "h-oo-060": { - "value": "#f36f20", - "type": "color" - }, - "h-oo-070": { - "value": "#c65a18", - "type": "color" - }, - "h-oo-080": { - "value": "#9a4410", - "type": "color" - }, - "h-oo-090": { - "value": "#6d2f08", - "type": "color" - }, - "h-oo-100": { - "value": "#401900", - "type": "color" - } - }, - "red-orange": { - "h-ro-010": { - "value": "#ffc7b3", - "type": "color" - }, - "h-ro-020": { - "value": "#f8af95", - "type": "color" - }, - "h-ro-030": { - "value": "#f09677", - "type": "color" - }, - "h-ro-040": { - "value": "#e97e5a", - "type": "color" - }, - "h-ro-050": { - "value": "#e1653c", - "type": "color" - }, - "h-ro-060": { - "value": "#da4d1e", - "type": "color" - }, - "h-ro-070": { - "value": "#ad3c16", - "type": "color" - }, - "h-ro-080": { - "value": "#802c0f", - "type": "color" - }, - "h-ro-090": { - "value": "#531b07", - "type": "color" - }, - "h-ro-100": { - "value": "#260a00", - "type": "color" - } - }, - "red": { - "h-rr-010": { - "value": "#ffc6bf", - "type": "color" - }, - "h-rr-020": { - "value": "#ffaaa1", - "type": "color" - }, - "h-rr-030": { - "value": "#f2877b", - "type": "color" - }, - "h-rr-040": { - "value": "#f07062", - "type": "color" - }, - "h-rr-050": { - "value": "#e65240", - "type": "color" - }, - "h-rr-060": { - "value": "#d83020", - "type": "color" - }, - "h-rr-070": { - "value": "#a82b1e", - "type": "color" - }, - "h-rr-080": { - "value": "#7c1d13", - "type": "color" - }, - "h-rr-090": { - "value": "#4f0e08", - "type": "color" - }, - "h-rr-100": { - "value": "#210300", - "type": "color" - } - }, - "pink": { - "h-pk-010": { - "value": "#ffd1ef", - "type": "color" - }, - "h-pk-020": { - "value": "#fabee4", - "type": "color" - }, - "h-pk-030": { - "value": "#f2a5d6", - "type": "color" - }, - "h-pk-040": { - "value": "#eb8dc9", - "type": "color" - }, - "h-pk-050": { - "value": "#e673bb", - "type": "color" - }, - "h-pk-060": { - "value": "#e04ea6", - "type": "color" - }, - "h-pk-070": { - "value": "#ba2f7e", - "type": "color" - }, - "h-pk-080": { - "value": "#851b52", - "type": "color" - }, - "h-pk-090": { - "value": "#590b32", - "type": "color" - }, - "h-pk-100": { - "value": "#260404", - "type": "color" - } - }, - "violet-red": { - "h-vr-010": { - "value": "#fadbff", - "type": "color" - }, - "h-vr-020": { - "value": "#e4beeb", - "type": "color" - }, - "h-vr-030": { - "value": "#cfa1d7", - "type": "color" - }, - "h-vr-040": { - "value": "#b983c3", - "type": "color" - }, - "h-vr-050": { - "value": "#a466af", - "type": "color" - }, - "h-vr-060": { - "value": "#8e499b", - "type": "color" - }, - "h-vr-070": { - "value": "#73377e", - "type": "color" - }, - "h-vr-080": { - "value": "#572561", - "type": "color" - }, - "h-vr-090": { - "value": "#3c1243", - "type": "color" - }, - "h-vr-100": { - "value": "#200026", - "type": "color" - } - }, - "violet": { - "h-vv-010": { - "value": "#e8d9ff", - "type": "color" - }, - "h-vv-020": { - "value": "#cdb9eb", - "type": "color" - }, - "h-vv-030": { - "value": "#b39ad7", - "type": "color" - }, - "h-vv-040": { - "value": "#987ac3", - "type": "color" - }, - "h-vv-050": { - "value": "#7e5baf", - "type": "color" - }, - "h-vv-060": { - "value": "#633b9b", - "type": "color" - }, - "h-vv-070": { - "value": "#4e2c7e", - "type": "color" - }, - "h-vv-080": { - "value": "#3a1e61", - "type": "color" - }, - "h-vv-090": { - "value": "#250f43", - "type": "color" - }, - "h-vv-100": { - "value": "#100026", - "type": "color" - } - } - }, - "vibrant": { - "blue": { - "v-bb-120": { - "value": "#59d6ff", - "type": "color" - }, - "v-bb-140": { - "value": "#3db8ff", - "type": "color" - }, - "v-bb-160": { - "value": "#009af2", - "type": "color" - }, - "v-bb-180": { - "value": "#009af2", - "type": "color" - } - }, - "green-blue": { - "v-gb-120": { - "value": "#59fffc", - "type": "color" - }, - "v-gb-140": { - "value": "#00f7f3", - "type": "color" - }, - "v-gb-160": { - "value": "#00e6e2", - "type": "color" - }, - "v-gb-180": { - "value": "#00cfca", - "type": "color" - } - }, - "green": { - "v-gg-120": { - "value": "#73ff84", - "type": "color" - }, - "v-gg-140": { - "value": "#3bed52", - "type": "color" - }, - "v-gg-160": { - "value": "#00b81b", - "type": "color" - }, - "v-gg-180": { - "value": "#00a118", - "type": "color" - } - }, - "yellow-green": { - "v-yg-120": { - "value": "#d7ff73", - "type": "color" - }, - "v-yg-140": { - "value": "#bbed3b", - "type": "color" - }, - "v-yg-160": { - "value": "#96cc00", - "type": "color" - }, - "v-yg-180": { - "value": "#7fab00", - "type": "color" - } - }, - "yellow": { - "v-yy-120": { - "value": "#fff766", - "type": "color" - }, - "v-yy-140": { - "value": "#ffee33", - "type": "color" - }, - "v-yy-160": { - "value": "#f5d000", - "type": "color" - }, - "v-yy-180": { - "value": "#ebba17", - "type": "color" - } - }, - "orange-yellow": { - "v-oy-120": { - "value": "#ffb54d", - "type": "color" - }, - "v-oy-140": { - "value": "#ff9500", - "type": "color" - }, - "v-oy-160": { - "value": "#e68600", - "type": "color" - }, - "v-oy-180": { - "value": "#d17300", - "type": "color" - } - }, - "red-orange": { - "v-ro-120": { - "value": "#ff824d", - "type": "color" - }, - "v-ro-140": { - "value": "#ff4d00", - "type": "color" - }, - "v-ro-160": { - "value": "#de4300", - "type": "color" - }, - "v-ro-180": { - "value": "#c93b00", - "type": "color" - } - }, - "red": { - "v-rr-120": { - "value": "#ff624d", - "type": "color" - }, - "v-rr-140": { - "value": "#ff0015", - "type": "color" - }, - "v-rr-160": { - "value": "#d90012", - "type": "color" - }, - "v-rr-180": { - "value": "#b3000f", - "type": "color" - } - }, - "pink": { - "v-pk-120": { - "value": "#ff66c2", - "type": "color" - }, - "v-pk-140": { - "value": "#ff19a4", - "type": "color" - }, - "v-pk-160": { - "value": "#d11486", - "type": "color" - }, - "v-pk-180": { - "value": "#c00073", - "type": "color" - } - }, - "violet-red": { - "v-vr-120": { - "value": "#ea80ff", - "type": "color" - }, - "v-vr-140": { - "value": "#dd33ff", - "type": "color" - }, - "v-vr-160": { - "value": "#ac08cc", - "type": "color" - }, - "v-vr-180": { - "value": "#83009e", - "type": "color" - } - }, - "violet": { - "v-vv-120": { - "value": "#b580ff", - "type": "color" - }, - "v-vv-140": { - "value": "#974dff", - "type": "color" - }, - "v-vv-160": { - "value": "#8129ff", - "type": "color" - }, - "v-vv-180": { - "value": "#6a0be6", - "type": "color" - } - } - }, - "dark": { - "green": { - "d-gg-410": { - "value": "#44ED51", - "type": "color" - }, - "d-gg-420": { - "value": "#36DA43", - "type": "color" - }, - "d-gg-430": { - "value": "#36DA43", - "type": "color" - } - }, - "yellow": { - "d-yy-410": { - "value": "#FFE24D", - "type": "color" - }, - "d-yy-420": { - "value": "#FFC900", - "type": "color" - }, - "d-yy-430": { - "value": "#F4B000", - "type": "color" - } - }, - "red": { - "d-rr-410": { - "value": "#FF7465", - "type": "color" - }, - "d-rr-420": { - "value": "#FE583E", - "type": "color" - }, - "d-rr-430": { - "value": "#F3381B", - "type": "color" - } - }, - "blue": { - "d-bb-410": { - "value": "#47BBFF", - "type": "color" - }, - "d-bb-420": { - "value": "#00A0FF", - "type": "color" - }, - "d-bb-430": { - "value": "#0087D7", - "type": "color" - } - } - } - } - }, - "sizing": { - "0": { - "value": "2px", - "type": "sizing" - }, - "1": { - "value": "4px", - "type": "sizing" - }, - "2": { - "value": "6px", - "type": "sizing" - }, - "3": { - "value": "8px", - "type": "sizing" - }, - "4": { - "value": "10px", - "type": "sizing" - }, - "5": { - "value": "12px", - "type": "sizing" - }, - "6": { - "value": "14px", - "type": "sizing" - }, - "7": { - "value": "16px", - "type": "sizing" - }, - "8": { - "value": "20px", - "type": "sizing" - }, - "9": { - "value": "24px", - "type": "sizing" - }, - "10": { - "value": "28px", - "type": "sizing" - }, - "11": { - "value": "32px", - "type": "sizing" - }, - "12": { - "value": "36px", - "type": "sizing" - }, - "13": { - "value": "40px", - "type": "sizing" - }, - "14": { - "value": "44px", - "type": "sizing" - }, - "15": { - "value": "48px", - "type": "sizing" - }, - "16": { - "value": "56px", - "type": "sizing" - }, - "17": { - "value": "64px", - "type": "sizing" - }, - "18": { - "value": "72px", - "type": "sizing" - }, - "19": { - "value": "80px", - "type": "sizing" - }, - "20": { - "value": "96px", - "type": "sizing" - }, - "21": { - "value": "112px", - "type": "sizing" - }, - "22": { - "value": "128px", - "type": "sizing" - }, - "23": { - "value": "144px", - "type": "sizing" - }, - "24": { - "value": "160px", - "type": "sizing" - }, - "25": { - "value": "192px", - "type": "sizing" - }, - "26": { - "value": "224px", - "type": "sizing" - }, - "27": { - "value": "256px", - "type": "sizing" - }, - "28": { - "value": "288px", - "type": "sizing" - }, - "none": { - "value": "0px", - "type": "sizing" - } - }, - "spacing": { - "0": { - "value": "2px", - "type": "spacing" - }, - "1": { - "value": "4px", - "type": "spacing" - }, - "2": { - "value": "6px", - "type": "spacing" - }, - "3": { - "value": "8px", - "type": "spacing" - }, - "4": { - "value": "10px", - "type": "spacing" - }, - "5": { - "value": "12px", - "type": "spacing" - }, - "6": { - "value": "14px", - "type": "spacing" - }, - "7": { - "value": "16px", - "type": "spacing" - }, - "8": { - "value": "20px", - "type": "spacing" - }, - "9": { - "value": "24px", - "type": "spacing" - }, - "10": { - "value": "28px", - "type": "spacing" - }, - "11": { - "value": "32px", - "type": "spacing" - }, - "12": { - "value": "36px", - "type": "spacing" - }, - "13": { - "value": "40px", - "type": "spacing" - }, - "14": { - "value": "44px", - "type": "spacing" - }, - "15": { - "value": "48px", - "type": "spacing" - }, - "16": { - "value": "56px", - "type": "spacing" - }, - "17": { - "value": "64px", - "type": "spacing" - }, - "18": { - "value": "72px", - "type": "spacing" - }, - "19": { - "value": "80px", - "type": "spacing" - }, - "20": { - "value": "96px", - "type": "spacing" - }, - "21": { - "value": "112px", - "type": "spacing" - }, - "22": { - "value": "128px", - "type": "spacing" - }, - "23": { - "value": "144px", - "type": "spacing" - }, - "24": { - "value": "160px", - "type": "spacing" - }, - "25": { - "value": "192px", - "type": "spacing" - }, - "26": { - "value": "224px", - "type": "spacing" - }, - "27": { - "value": "256px", - "type": "spacing" - }, - "28": { - "value": "288px", - "type": "spacing" - }, - "none": { - "value": "0px", - "type": "spacing" - } - }, - "breakpoint": { - "width": { - "xs": { - "value": "476px", - "type": "sizing", - "description": "min-width size" - }, - "sm": { - "value": "768px", - "type": "sizing", - "description": "min-width size" - }, - "md": { - "value": "1152px", - "type": "sizing", - "description": "min-width size" - }, - "lg": { - "value": "1440px", - "type": "sizing", - "description": "min-width size" - } - }, - "margin": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "gutter": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "content": { - "fluid": { - "value": "100%", - "type": "sizing", - "description": "for fluid grid widths" - }, - "fixed": { - "value": "1440px", - "type": "sizing", - "description": "only for lg breakpoint fixed grid width" - } - }, - "cols": { - "xs": { - "value": "6", - "type": "other", - "description": "columns" - }, - "sm": { - "value": "12", - "type": "other", - "description": "columns" - }, - "md": { - "value": "24", - "type": "other", - "description": "columns" - }, - "lg": { - "value": "24", - "type": "other", - "description": "columns" - } - } - }, - "z-index": { - "deep": { - "value": "-999999", - "type": "other" - }, - "default": { - "value": "1", - "type": "other" - }, - "sticky": { - "value": "300", - "type": "other" - }, - "header": { - "value": "400", - "type": "other" - }, - "toast": { - "value": "500", - "type": "other" - }, - "dropdown": { - "value": "600", - "type": "other" - }, - "overlay": { - "value": "700", - "type": "other" - }, - "modal": { - "value": "800", - "type": "other" - }, - "popup": { - "value": "900", - "type": "other" - } - }, - "box-shadow": { - "0": { - "value": { - "x": "0", - "y": "0", - "blur": "0", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", - "type": "dropShadow" - }, - "type": "boxShadow" - }, - "1": { - "value": [ - { - "x": "0", - "y": "2", - "blur": "8", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "4", - "blur": "16", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "2": { - "value": [ - { - "x": "0", - "y": "4", - "blur": "20", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "12", - "blur": "32", - "spread": "-2", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "none": { - "value": { - "x": "0", - "y": "0", - "blur": "0", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", - "type": "dropShadow" - }, - "type": "boxShadow" - } - } - } -} \ No newline at end of file diff --git a/data/semantic.json b/data/semantic.json deleted file mode 100644 index b195cf841eb..00000000000 --- a/data/semantic.json +++ /dev/null @@ -1,1673 +0,0 @@ -{ - "semantic": { - "font": { - "default": { - "light": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "regular": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "medium": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "bold": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - } - }, - "wrap": { - "light": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "regular": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "medium": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "bold": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - } - }, - "hierarchy": { - "display-1": { - "value": "$semantic.font.wrap.regular.8", - "type": "typography" - }, - "display-2": { - "value": "$semantic.font.wrap.regular.7", - "type": "typography" - }, - "heading-1": { - "value": "$semantic.font.wrap.regular.6", - "type": "typography" - }, - "heading-2": { - "value": "$semantic.font.wrap.regular.5", - "type": "typography" - }, - "heading-3": { - "value": "$semantic.font.wrap.regular.4", - "type": "typography" - }, - "heading-4": { - "value": "$semantic.font.wrap.regular.3", - "type": "typography" - }, - "heading-5": { - "value": "$semantic.font.wrap.regular.2", - "type": "typography" - }, - "heading-6": { - "value": "$semantic.font.wrap.regular.1", - "type": "typography" - }, - "body-1": { - "value": "$semantic.font.wrap.regular.0", - "type": "typography" - }, - "body-2": { - "value": "$semantic.font.wrap.regular.-1", - "type": "typography" - }, - "overline": { - "value": { - "fontFamilies": "$core.font.font-family.primary", - "fontWeights": "$core.font.font-weight.bold", - "fontSizes": "$core.font.font-size.2", - "lineHeights": "$core.font.line-height.fixed.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textCase": "$core.font.text-case.uppercase", - "textDecoration": "$core.font.text-decoration.none", - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.bold", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2" - }, - "type": "typography" - }, - "caption": { - "value": "$semantic.font.wrap.regular.-2", - "type": "typography" - } - } - }, - "border": { - "border-radius": { - "sharp": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "round": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - }, - "circular": { - "value": "$core.border.border-radius.half", - "type": "borderRadius" - }, - "pill": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - } - } - }, - "ui": { - "border": { - "border-radius": { - "value": "$semantic.border.border-radius.sharp", - "type": "borderRadius" - } - }, - "color": { - "brand": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-160", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-060", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - } - } - }, - "background": { - "light": { - "value": "$core.color.neutral.blk-005", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-190", - "type": "color" - } - }, - "foreground": { - "1": { - "light": { - "value": "$core.color.neutral.blk-000", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-200", - "type": "color" - } - }, - "2": { - "light": { - "value": "$core.color.neutral.blk-010", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-210", - "type": "color" - } - }, - "3": { - "light": { - "value": "$core.color.neutral.blk-020", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-220", - "type": "color" - } - } - }, - "text": { - "1": { - "light": { - "value": "$core.color.neutral.blk-220", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-000", - "type": "color" - } - }, - "2": { - "light": { - "value": "$core.color.neutral.blk-170", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-060", - "type": "color" - } - }, - "3": { - "light": { - "value": "$core.color.neutral.blk-140", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-090", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$core.color.neutral.blk-000", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-220", - "type": "color" - } - }, - "link": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.blue.d-bb-420", - "type": "color" - } - } - }, - "border": { - "1": { - "light": { - "value": "$core.color.neutral.blk-050", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-160", - "type": "color" - } - }, - "2": { - "light": { - "value": "$core.color.neutral.blk-040", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-170", - "type": "color" - } - }, - "3": { - "light": { - "value": "$core.color.neutral.blk-030", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-180", - "type": "color" - } - }, - "input": { - "light": { - "value": "$core.color.neutral.blk-100", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-130", - "type": "color" - } - } - }, - "info": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.blue.d-bb-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-090", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-160", - "type": "color" - } - } - }, - "success": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.green.d-gg-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.green.v-gg-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.green.v-gg-160", - "type": "color" - } - } - }, - "warning": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.yellow.d-yy-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.yellow.v-yy-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.yellow.v-yy-160", - "type": "color" - } - } - }, - "danger": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.red.d-rr-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.red.v-rr-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.red.v-rr-160", - "type": "color" - } - } - }, - "inverse": { - "light": { - "value": "$core.color.neutral.blk-190", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-005", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/data/tokens.json b/data/tokens.json deleted file mode 100644 index c2c59c0238b..00000000000 --- a/data/tokens.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "global": { - "calcite": { - "color": { - "info": { - "on-light": { - "value": "#00619b", - "type": "color" - }, - "on-dark": { - "value": "#00a0ff", - "type": "color" - } - }, - "brand": { - "default": { - "on-light": { - "value": "#007ac2", - "type": "color" - }, - "on-dark": { - "value": "#009af2", - "type": "color" - } - }, - "hover": { - "on-light": { - "value": "#00619b", - "type": "color" - }, - "on-dark": { - "value": "#007ac2", - "type": "color" - } - }, - "press": { - "on-light": { - "value": "#004874", - "type": "color" - }, - "on-dark": { - "value": "#00619b", - "type": "color" - } - } - }, - "background": { - "on-light": { - "value": "#f8f8f8", - "type": "color" - }, - "on-dark": { - "value": "#353535", - "type": "color" - } - }, - "text": { - "primary": { - "on-light": { - "value": "#151515", - "type": "color" - }, - "on-dark": { - "value": "#ffffff", - "type": "color" - } - }, - "secondary": { - "on-light": { - "value": "#4a4a4a", - "type": "color" - }, - "on-dark": { - "value": "#bfbfbf", - "type": "color" - } - }, - "tertiary": { - "on-light": { - "value": "#040212", - "type": "color" - }, - "on-dark": { - "value": "#9f9f9f", - "type": "color" - } - }, - "inverse": { - "on-light": { - "value": "#ffffff", - "type": "color" - }, - "on-dark": { - "value": "#151515", - "type": "color" - } - }, - "link": { - "on-light": { - "value": "#00619b", - "type": "color" - }, - "on-dark": { - "value": "#00a0ff", - "type": "color" - } - } - }, - "border": { - "primary": { - "on-light": { - "value": "#cacaca", - "type": "color" - }, - "on-dark": { - "value": "#555555", - "type": "color" - } - }, - "secondary": { - "on-light": { - "value": "#d4d4d4", - "type": "color" - }, - "on-dark": { - "value": "#4a4a4a", - "type": "color" - } - }, - "tertiary": { - "on-light": { - "value": "#dfdfdf", - "type": "color" - }, - "on-dark": { - "value": "#404040", - "type": "color" - } - }, - "input": { - "on-light": { - "value": "#949494", - "type": "color" - }, - "on-dark": { - "value": "#757575", - "type": "color" - } - } - }, - "success": { - "on-light": { - "value": "#35ac46", - "type": "color" - }, - "on-dark": { - "value": "#36da43", - "type": "color" - } - }, - "warning": { - "on-light": { - "value": "#edd317", - "type": "color" - }, - "on-dark": { - "value": "#ffc900", - "type": "color" - } - }, - "danger": { - "on-light": { - "value": "#d83020", - "type": "color" - }, - "press": { - "on-light": { - "value": "#7c1d13", - "type": "color" - }, - "on-dark": { - "value": "#d90012", - "type": "color" - } - }, - "on-dark": { - "value": "#fe583e", - "type": "color" - }, - "hover": { - "on-dark": { - "value": "#ff0015", - "type": "color" - } - } - }, - "inverse": { - "on-light": { - "value": "#353535", - "type": "color" - }, - "on-dark": { - "value": "#f8f8f8", - "type": "color" - } - }, - "foreground": { - "primary": { - "on-light": { - "value": "#ffffff", - "type": "color" - }, - "on-dark": { - "value": "#2b2b2b", - "type": "color" - } - }, - "secondary": { - "on-light": { - "value": "#f3f3f3", - "type": "color" - }, - "on-dark": { - "value": "#202020", - "type": "color" - } - }, - "tertiary": { - "on-light": { - "value": "#eaeaea", - "type": "color" - }, - "on-dark": { - "value": "#151515", - "type": "color" - } - } - } - } - } - }, - "$themes": [] -} \ No newline at end of file From ceafb86e050faaeaf70006f320dea8ba1f6138b5 Mon Sep 17 00:00:00 2001 From: BrunoAiresUS Date: Tue, 11 Oct 2022 00:01:50 +0100 Subject: [PATCH 016/696] updated "comp" to "component" folder name --- tokens/{comp => component}/avatar.json | 0 tokens/{comp => component}/checkbox.json | 0 tokens/{comp => component}/chip.json | 0 tokens/{comp => component}/radio.json | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename tokens/{comp => component}/avatar.json (100%) rename tokens/{comp => component}/checkbox.json (100%) rename tokens/{comp => component}/chip.json (100%) rename tokens/{comp => component}/radio.json (100%) diff --git a/tokens/comp/avatar.json b/tokens/component/avatar.json similarity index 100% rename from tokens/comp/avatar.json rename to tokens/component/avatar.json diff --git a/tokens/comp/checkbox.json b/tokens/component/checkbox.json similarity index 100% rename from tokens/comp/checkbox.json rename to tokens/component/checkbox.json diff --git a/tokens/comp/chip.json b/tokens/component/chip.json similarity index 100% rename from tokens/comp/chip.json rename to tokens/component/chip.json diff --git a/tokens/comp/radio.json b/tokens/component/radio.json similarity index 100% rename from tokens/comp/radio.json rename to tokens/component/radio.json From 2e5a9e62802b96fdad5a85dfd2d4e3b92af5cd77 Mon Sep 17 00:00:00 2001 From: Alison Stump Date: Thu, 20 Oct 2022 10:55:42 -0700 Subject: [PATCH 017/696] Create design-tokens-pr.yml This file will automate the creation/update of a PR whenever Bruno Aires updates tokens in his branch. This automation workflow may be expanded for other designer branches in the future --- .github/workflows/design-tokens-pr.yml | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/design-tokens-pr.yml diff --git a/.github/workflows/design-tokens-pr.yml b/.github/workflows/design-tokens-pr.yml new file mode 100644 index 00000000000..36eb31e8e3c --- /dev/null +++ b/.github/workflows/design-tokens-pr.yml @@ -0,0 +1,32 @@ +name: Automate PR for Designers Action +on: + push: + branches: + - brunoaires + +jobs: + create-pull-request: + runs-on: ubuntu-latest + steps: + - name: Create Pull Request + uses: actions/github-script@v6 + with: + script: | + const { repo, owner } = context.repo; + const result = await github.rest.pulls.create({ + title: 'Design Token Updates', + owner, + repo, + head: '${{ github.ref_name }}', + base: 'feature/design-tokens', + body: [ + 'This PR is auto-generated by', + '[actions/github-script](https://github.com/actions/github-script).' + ].join('\n') + }); + github.rest.issues.addLabels({ + owner, + repo, + issue_number: result.data.number, + labels: ['feature', 'automated pr'] + }); From ca4f6e0ebf54df8559726a7157fe8359ffdaa319 Mon Sep 17 00:00:00 2001 From: BrunoAires <108296750+BrunoAiresUS@users.noreply.github.com> Date: Thu, 27 Oct 2022 18:27:07 +0100 Subject: [PATCH 018/696] update with all latest tokens work from component sets and Calcite Light and Dark themes. --- tokens/$metadata.json | 12 +- tokens/$themes.json | 562 ++++++++++++++------------------- tokens/calcite/dark.json | 230 +++++++++++++- tokens/calcite/light.json | 230 +++++++++++++- tokens/component/checkbox.json | 111 ++++++- tokens/component/chip.json | 48 +++ tokens/component/label.json | 26 ++ tokens/component/loader.json | 130 ++++++++ tokens/component/radio.json | 125 +++++++- tokens/component/rating.json | 243 ++++++++++++++ tokens/component/tooltip.json | 66 ++++ tokens/core.json | 8 + 12 files changed, 1461 insertions(+), 330 deletions(-) create mode 100644 tokens/component/label.json create mode 100644 tokens/component/loader.json create mode 100644 tokens/component/rating.json create mode 100644 tokens/component/tooltip.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 00fe87731cd..1f420c87f75 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -2,10 +2,14 @@ "tokenSetOrder": [ "core", "semantic", - "comp/avatar", - "comp/checkbox", - "comp/chip", - "comp/radio", + "component/avatar", + "component/checkbox", + "component/chip", + "component/label", + "component/loader", + "component/radio", + "component/rating", + "component/tooltip", "calcite/light", "calcite/dark", "brand/global", diff --git a/tokens/$themes.json b/tokens/$themes.json index dae62e1f08e..ea460666ab4 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -1,19 +1,55 @@ [ + { + "id": "59a65f6d4a3657738c9d46d61315ae0b6fc6e9fd", + "name": "Brand - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "enabled", + "brand/dark": "disabled", + "component/label": "disabled", + "component/tooltip": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "d7056b4e805091c91b5ec1b6ce901ba3d606e7a8", + "name": "Brand - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "disabled", + "brand/dark": "enabled", + "component/label": "disabled", + "component/tooltip": "disabled" + }, + "$figmaStyleReferences": {} + }, { "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", "name": "Calcite Headless", "selectedTokenSets": { "core": "enabled", "semantic": "enabled", - "comp/avatar": "enabled", - "comp/checkbox": "enabled", - "comp/chip": "enabled", - "comp/radio": "enabled", "brand/light": "disabled", "brand/dark": "disabled", "calcite/light": "disabled", "calcite/dark": "disabled", - "brand/global": "disabled" + "brand/global": "disabled", + "component/avatar": "enabled", + "component/checkbox": "enabled", + "component/chip": "enabled", + "component/loader": "enabled", + "component/radio": "enabled", + "component/rating": "enabled", + "component/label": "enabled", + "component/tooltip": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -425,161 +461,200 @@ "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", - "semantic.font.default.light.-3h": "S:8d93abd302a6c6d873083e31155e5ca579ac6daf,", - "semantic.font.default.light.-2h": "S:48ba5bad0cd12ce100b0a5f41f1bda58af13fad6,", - "semantic.font.default.light.-1h": "S:2ee47ddad93c691f1050054ffc1a691a528fe495,", - "semantic.font.default.light.0h": "S:e28c47cc394adf10147fa0a92026f6327f5ee7a7,", - "semantic.font.default.light.1h": "S:15557a3e32fc922d1e83ef3d989af847f16a0794,", - "semantic.font.default.light.2h": "S:c96dd0a55bc26f31d3120c856be7e99fa89c7ad9,", - "semantic.font.default.light.3h": "S:119ee83681601bc27c769eadc4b905df9166d9ce,", - "semantic.font.default.light.4h": "S:d5f0d1667123ed79a2270b18184fa6206607dfab,", - "semantic.font.default.light.5h": "S:5c571618fdb7fb45226228c90a9b6110f6eb9a03,", - "semantic.font.default.light.6h": "S:4dfca61c237a4cafbb4c9f1a3692612929727bf8,", - "semantic.font.default.light.7h": "S:5245e6ed0a01531bf2e48c40d8b76e451be6f6f9,", - "semantic.font.default.light.8h": "S:ffe269b1e1d543842efc540955c4f907d9b351d9,", - "semantic.font.default.regular.-3h": "S:b0b35a04a37c9a29aa7925bd75498dc771680cb5,", - "semantic.font.default.regular.-2h": "S:d770e2b59d87b40e689b9c5f34ea3a8306fe7993,", - "semantic.font.default.regular.-1h": "S:52b0a03be6e8c92845a6164726fd8ae5c2f120fe,", - "semantic.font.default.regular.0h": "S:3287d661d16494f5cd0b5a818dc282efb96628d5,", - "semantic.font.default.regular.1h": "S:4f53252aa1ed562f81bb47f0855dbb9cc70d3954,", - "semantic.font.default.regular.2h": "S:bd62889c560a113449a8328b7f1a8265ccf8be4f,", - "semantic.font.default.regular.3h": "S:fdfbfd56ed8919ce4733596865b718b4d4097219,", - "semantic.font.default.regular.4h": "S:11405971acb8b1d05136498ca6c0c60b6c81e4a5,", - "semantic.font.default.regular.5h": "S:11531723ac0f511d7cf7550dd5a93bcd6d04426f,", - "semantic.font.default.regular.6h": "S:ceaaad8a660db7d0f65235ffb26fd24f40aab3b1,", - "semantic.font.default.regular.7h": "S:5db9f9faf6cadc5767581167eaad422f1ae6eb1a,", - "semantic.font.default.regular.8h": "S:114e82128269e25d8c98ae4d96b5927e0f2e75e8,", - "semantic.font.default.medium.-3h": "S:f015803819b536b0d5b07f75cb3d9845965c8dc4,", - "semantic.font.default.medium.-2h": "S:5cfb6dd4d4d3130e18bbb2261976f13552faf1ef,", - "semantic.font.default.medium.-1h": "S:2c6f92665bed2ba9154a3ef77f8797564b0b0c23,", - "semantic.font.default.medium.0h": "S:e9c170618b67cab8db99c5cdbbacca6f1c9773f0,", - "semantic.font.default.medium.1h": "S:732930d1806fcd2a09b181959d5510c9b5c55481,", - "semantic.font.default.medium.2h": "S:9c7024577a73553ab2cd641a0e34c1f63cd89314,", - "semantic.font.default.medium.3h": "S:fc0757849ab900466d8dce601d3c70badf05e28f,", - "semantic.font.default.medium.4h": "S:fdf476df9c7b527600f83548e3cae8dedd9cb197,", - "semantic.font.default.medium.5h": "S:90e90f6bce54565ab3972859c2b9c26668927563,", - "semantic.font.default.medium.6h": "S:8385392fe331f91b12abb3cb874ac8d2f4475788,", - "semantic.font.default.medium.7h": "S:cb983ff00b985ec9102266f6f7b75c52be94343f,", - "semantic.font.default.medium.8h": "S:c904decae387952bde0d63123ec3d6d2d6e145bd,", - "semantic.font.default.bold.-3h": "S:f7fd959c964347a5bfcce4451cc9f4f70a6748e3,", - "semantic.font.default.bold.-2h": "S:3828498c4b1112590a83bb832b3dc9f18559aa7d,", - "semantic.font.default.bold.-1h": "S:da92aad9955c7793fbadd29db8b780b1d56b9048,", - "semantic.font.default.bold.0h": "S:49b4b1cba336b48be0994d0ab024745050db4b4d,", - "semantic.font.default.bold.1h": "S:b85c93979092ca81d0e495a098e379a0775411ce,", - "semantic.font.default.bold.2h": "S:81603a43709025a94121f17f5b690763c999a82d,", - "semantic.font.default.bold.3h": "S:5bf7d62f3d28f6e7763ece3a3178b8c1ccbd8270,", - "semantic.font.default.bold.4h": "S:0a217a634b8153be7c27c0275a6de39aba674b32,", - "semantic.font.default.bold.5h": "S:915fce0d9af62b0ff7bf5d9a6e1855b13be064d0,", - "semantic.font.default.bold.6h": "S:0b126d0e5c1baebbe0128a34a545fb905c1664fa,", - "semantic.font.default.bold.7h": "S:bda8759eba40ade0bf4da2578858b977b9f45373,", - "semantic.font.default.bold.8h": "S:adbcdd77d0246ea002a2b49bf9213a099e5dfd61,", + "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", + "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", + "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", + "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", + "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", + "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", + "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", + "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", + "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", + "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", + "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", + "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", + "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", + "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", + "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", + "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", + "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", + "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", + "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", + "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", + "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", + "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", + "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", + "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", + "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", + "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", + "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", + "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", + "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", + "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", + "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", + "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", + "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", + "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", + "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", + "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", + "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", + "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", + "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", + "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", + "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", + "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", + "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", + "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", + "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", + "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", + "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", + "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", - "semantic.font.wrap.light.0": "S:3d32b755a2e95bf1046e4322e7c69e2e940c43ee,", - "semantic.font.wrap.light.1": "S:65aa2076b047efdce03b7ae1fe0a916d180dfaae,", - "semantic.font.wrap.light.2": "S:3644f0cd7c11ffc9c7c778beafa22b489f473d68,", - "semantic.font.wrap.light.3": "S:19c7184a16209855ae620eedace1e30353729605,", - "semantic.font.wrap.light.4": "S:c29323deae74b42479e9ffa71e93e328c80f5c75,", - "semantic.font.wrap.light.5": "S:e7b6525fa2d9a1988ccb1d8fbf6aa049491ea1c6,", - "semantic.font.wrap.light.6": "S:cb15a71b095257c12b0527f62ff344fe93d37e44,", - "semantic.font.wrap.light.7": "S:08f7964d15ea1d033c58481c87af15c68d790bf3,", - "semantic.font.wrap.light.8": "S:7dff3d9326ce1394d50103a83a46bfa6b7be1fee,", - "semantic.font.wrap.light.-3": "S:9c4a7c36f4158a87a9f3d53a00e08307b7040312,", - "semantic.font.wrap.light.-2": "S:b7c56ea9e4d6e2d254ba320237506dc3356f987f,", - "semantic.font.wrap.light.-1": "S:4f0c25cb4378827ff9082ef81679e584308c48f5,", - "semantic.font.wrap.regular.0": "S:7be72eeccf1fd5aeac2ea699d3780abae79bfb28,", - "semantic.font.wrap.regular.1": "S:30eb423fbb25cda745650b095a7f087898a3402b,", - "semantic.font.wrap.regular.2": "S:9a3a3634c87c1c12f055ba669ec91802ba0599d6,", - "semantic.font.wrap.regular.3": "S:13cc8850a343d8660622986b10f7dc40d6e8bd79,", - "semantic.font.wrap.regular.4": "S:207a9a50d842c1173c0cf5c9311fedaa70d0b0cc,", - "semantic.font.wrap.regular.5": "S:9452ce256b457eaf0e4be0c07ba5918568222b51,", - "semantic.font.wrap.regular.6": "S:5f5b53ab6557877bccecb0ecf172208c0166a344,", - "semantic.font.wrap.regular.7": "S:d1019dab142e27aec9e19cf8efea848875fbbc42,", - "semantic.font.wrap.regular.8": "S:00708c7d7ed4c934acda631d34193a1eb0700838,", - "semantic.font.wrap.regular.-3": "S:068955cfd5ab35a4fe38f2bc8575b5e596d7bf0c,", - "semantic.font.wrap.regular.-2": "S:289f9a9617d2c811a0f1ace31af1d46d55398a98,", - "semantic.font.wrap.regular.-1": "S:0a204631e2aaee0cad3494b2c8e8665cbfda04e3,", - "semantic.font.wrap.medium.0": "S:ce9fa0a3218e3e9de75dbe86b6c1313674c99370,", - "semantic.font.wrap.medium.1": "S:52e0c2d175093033a35b35c96ad84f3f4cf4ff5f,", - "semantic.font.wrap.medium.2": "S:26eac9b9923748efb165ade7952779e54cd33e2f,", - "semantic.font.wrap.medium.3": "S:a02bf20db12ab4379c64c451aa974b6747b10359,", - "semantic.font.wrap.medium.4": "S:5097ea68f6ac1f2275336a57ce1ce8b0facd36c8,", - "semantic.font.wrap.medium.5": "S:2ea14ab2c03f621ab4e734fa28ffe6f2c0ed5f99,", - "semantic.font.wrap.medium.6": "S:c1e938bc02efe7bd30c5476b25599ca81cd6ce87,", - "semantic.font.wrap.medium.7": "S:6e7c3533cc1f3fa3f42353a9ca487b1c3593df37,", - "semantic.font.wrap.medium.8": "S:62518487bdd05dbe7c121ee9b765c012783f5ecc,", - "semantic.font.wrap.medium.-3": "S:db94a069ed4f71b70080ee02a4a1037e3e32c002,", - "semantic.font.wrap.medium.-2": "S:2104d5e843eb52869041f48cbada5369858f3bfd,", - "semantic.font.wrap.medium.-1": "S:f88ce0568f3d4d77e71352d176430ed64c0e23c5,", - "semantic.font.wrap.bold.0": "S:9ce7150124b1b7413d9d7972469227aa4324f2f2,", - "semantic.font.wrap.bold.1": "S:856a457826c786cb1baf8666628d43681c84efa1,", - "semantic.font.wrap.bold.2": "S:f0887954370e5d057c090e439fd538f87d111fe2,", - "semantic.font.wrap.bold.3": "S:5f634f2eac960f594e79625e99dabd36968e2dde,", - "semantic.font.wrap.bold.4": "S:2fc0277469e2453e563a3a8d47b5e437310d3588,", - "semantic.font.wrap.bold.5": "S:517a3320d92f6bbf74f75d7ba24cadbd7d165a82,", - "semantic.font.wrap.bold.6": "S:74599745584dc9bb90d174698ce237e195dd561c,", - "semantic.font.wrap.bold.7": "S:8a72e62ca5d2218601e1824cec21396e52a1ff37,", - "semantic.font.wrap.bold.8": "S:7093ae471198164fd5ba04f7c69ea954721eef9e,", - "semantic.font.wrap.bold.-3": "S:92ee205025c4f451f9e1545d3f938eb3d5be4701,", - "semantic.font.wrap.bold.-2": "S:0454cc8c25134115c72a1e347a2699403a1a0127,", - "semantic.font.wrap.bold.-1": "S:56a44367a1f708f5311fc785fcb9cb0525d630a9,", - "semantic.font.hierarchy.display-1": "S:5e2132bd242290157143e5dcd7f51cf6b8b5e35e,", - "semantic.font.hierarchy.display-2": "S:ebc5b0ded1ce135ebb7631a3bd23886c6d6e4d15,", - "semantic.font.hierarchy.heading-1": "S:107d4116a1f074d3571800328260c63ec9c24bd7,", - "semantic.font.hierarchy.heading-2": "S:3144ef6b2b7f7c6962f8896eeb198fc70dc9f000,", - "semantic.font.hierarchy.heading-3": "S:3f4072a04c4ebb82fb3b4dc573678e17fe974cb8,", - "semantic.font.hierarchy.heading-4": "S:c58f0ad053fafc550a5cd3cff927a9d46be740fe,", - "semantic.font.hierarchy.heading-5": "S:f4b6bd8f0f8460b65654a3b7cf66bc4ecadfd89c,", - "semantic.font.hierarchy.heading-6": "S:8080e86888d65901b48f346a10b30e736033a02a,", - "semantic.font.hierarchy.body-1": "S:f894c00986c5f22fec96b5df40bd86271a2a2b7a,", - "semantic.font.hierarchy.body-2": "S:54ef871bebebdae62ce878e38ec14d6b354e76d5,", - "semantic.font.hierarchy.overline": "S:5bbc5dada31383e027d288904b827d16da63f6e1,", - "semantic.font.hierarchy.caption": "S:ea29b8176497aa471a8c9cc3dcbeb7a0c11e6aed,", - "chip.font.sm": "S:6e06f46dc72628d9885379a6004cf38f62484a73,", - "chip.font.md": "S:68294c7fe5f4ce03d019a90dda3db83341979a16,", - "chip.font.lg": "S:b95c4150dbcfdfade9d0c300b08c8c3d0a445f21,", - "avatar.font.sm": "S:efec04e44db6f5d35afc99fe8864a7e436c7a970,", - "avatar.font.md": "S:15d9a2a6851d81c2a36de0b624a0da2a7dcdb3c2,", - "avatar.font.lg": "S:58e8ec8c0fe66e574ecd8fd82f47f0e44c97d516," + "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", + "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", + "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", + "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", + "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", + "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", + "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", + "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", + "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", + "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", + "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", + "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", + "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", + "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", + "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", + "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", + "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", + "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", + "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", + "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", + "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", + "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", + "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", + "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", + "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", + "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", + "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", + "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", + "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", + "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", + "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", + "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", + "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", + "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", + "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", + "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", + "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", + "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", + "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", + "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", + "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", + "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", + "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", + "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", + "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", + "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", + "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", + "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", + "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", + "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", + "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", + "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", + "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", + "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", + "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", + "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", + "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", + "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", + "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", + "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } }, { - "id": "db0ed14d4a0b21ff8f9b48aa6aca6c4a40503a5d", - "name": "Brand - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "comp/avatar": "source", - "comp/checkbox": "source", - "comp/chip": "source", - "comp/radio": "source", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "enabled", - "brand/light": "enabled", - "brand/dark": "disabled" - }, - "$figmaStyleReferences": {} - }, - { - "id": "ef2ebffc4ef5d41b0e1e0ef1e8b0f53708e912a6", - "name": "Brand - Dark", + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", "selectedTokenSets": { "core": "source", "semantic": "source", - "comp/avatar": "source", - "comp/checkbox": "source", - "comp/chip": "source", - "comp/radio": "source", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "enabled", "brand/light": "disabled", - "brand/dark": "enabled" + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source" }, - "$figmaStyleReferences": {} + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } }, { "id": "ed0c822a9f81dad2733717990c607c1527803a14", @@ -587,15 +662,19 @@ "selectedTokenSets": { "core": "source", "semantic": "source", - "comp/avatar": "source", - "comp/checkbox": "source", - "comp/chip": "source", - "comp/radio": "source", "brand/light": "disabled", "brand/dark": "disabled", "calcite/light": "enabled", "calcite/dark": "disabled", - "brand/global": "disabled" + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -635,10 +714,10 @@ "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:37f992e75a052738564bb6e45f2881725c6be26c,", - "avatar.font.dark": "S:b3f2c979fbb6560d01f47ffada32f69a8e5ee4c0,", - "avatar.icon.light": "S:10bc38033f68341726fd88f175b4d148759b85f6,", - "avatar.icon.dark": "S:ade53344f9ff9e425d456e02821c65a916571fd2,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", @@ -655,171 +734,10 @@ "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "chip.font.clear.light": "S:3796c540361235edaa562a50b84740e1b7a2a2ef,", - "chip.font.clear.dark": "S:38f0fa788614055e79cd90f840a2e541660a3377,", - "chip.font.solid.grey.light": "S:4f82c96efd5b76332f8b9f44c6414ed081135f2a,", - "chip.font.solid.grey.dark": "S:81d6e9416270217de3388f867430a70300b0bb89,", - "chip.font.solid.blue.light": "S:1ddac7921333b1e6978330f2356785f08130e8d4,", - "chip.font.solid.blue.dark": "S:bc29193aa2fb9572e1475186480fc66b89369c90,", - "chip.font.solid.red.light": "S:f4f17270e4101488c89f4ddb4ffd23a6016fd872,", - "chip.font.solid.red.dark": "S:ef4d19c4853831a38b3bbd55da49370eeb35fb8c,", - "chip.font.solid.yellow.light": "S:9bb793fff13c211bf32be90940ee86857b0a9618,", - "chip.font.solid.yellow.dark": "S:8a1256f5c45c56aa93a7d63697818f6655090fd1,", - "chip.font.solid.green.light": "S:0095fea4c4d53fa63d1c697faf9087abebd2d27f,", - "chip.font.solid.green.dark": "S:fa89f4eba1fa0e77c39ffb9865e5c6a4e5f5ff58,", - "chip.icon.solid.grey.light": "S:6147a3770f8cc0388e68f18ef590629164b74ad1,", - "chip.icon.solid.grey.dark": "S:2383616509f6e32739e9627cf31092a2bd5e532e,", - "chip.icon.solid.blue.light": "S:0ede0cbfab02f8a6206bfd72f2b2b5c4ef0391a4,", - "chip.icon.solid.blue.dark": "S:64fc94c19c6463ec6a3faa21ccc68445a5bdc33c,", - "chip.icon.solid.red.light": "S:8213f2322bf1aeb82e962c9e69ccd5d9a7a42d62,", - "chip.icon.solid.red.dark": "S:1bf1591f07441aa110de9565d0fc05b2bd086a54,", - "chip.icon.solid.yellow.light": "S:3f4a8b434a5abf960435627242f22e50d5d72581,", - "chip.icon.solid.yellow.dark": "S:a71f913d216cdca778d6ab55dde6c8075be9542f,", - "chip.icon.solid.green.light": "S:e7fa37e56e18167a125ab34d6952652efc9ee8cc,", - "chip.icon.solid.green.dark": "S:bfd9f00685321f642603ebcf17f7c42a0afd45f5,", - "chip.icon.clear.light": "S:2c454e2577b73e2706481c306b84482462afec2d,", - "chip.icon.clear.dark": "S:61452b5f6cee57924670d7b34154991d055c1c20,", - "chip.background.solid.grey.light": "S:5ef2501996a6ba3435541a0e343ab2d6c72e9dab,", - "chip.background.solid.grey.dark": "S:18180adb6d184947d589c2a98a17b98d76ab9fa5,", - "chip.background.solid.red.light": "S:8e7e237924a205cdd85de502de1215b870572363,", - "chip.background.solid.red.dark": "S:00e84c6471059d87fd6d0f801a7cf4f9531fc922,", - "chip.background.solid.blue.light": "S:2b2ce7ddf48811a68a82ae829327495b4c1a03de,", - "chip.background.solid.blue.dark": "S:a2b4aae80c9816b169140309adf74c0fdf4250c7,", - "chip.background.solid.green.light": "S:b428295a8744dedd12c3e664170aaa587ef0ad42,", - "chip.background.solid.green.dark": "S:f8038289d6691172cd6a135d93e8dbbea45ec734,", - "chip.background.solid.yellow.light": "S:aeb0742e480f88dafee81614bde4e2bc98d18c3f,", - "chip.background.solid.yellow.dark": "S:90642467ac27ce031784b2e4f0235cdc3a5d2361,", - "chip.closable-icon.light": "S:0a5bdbb4061168eec0fd3761865d47157e182509,", - "chip.closable-icon.dark": "S:3ffeee1923fabd41c1d279f4a42b0575c136472a,", - "chip.border.clear.grey.light": "S:c97faf9857a59ea268babab31e011612610c12db,", - "chip.border.clear.grey.dark": "S:4b89540bee15ededc199005f07871d7fd9016bf1,", - "chip.border.clear.red.light": "S:28b07b815f7d3a8633d914ed71d701db2e0f7ddf,", - "chip.border.clear.red.dark": "S:ce59070c5f307b2e0cef6be20ac165968a2b1fef,", - "chip.border.clear.blue.light": "S:36bc59ba2225bff309cf39afd2a63abeab651b56,", - "chip.border.clear.blue.dark": "S:c7c54446058d24e4c3068df8c43c28a262694ea2,", - "chip.border.clear.green.light": "S:b636725fa88e7d72a78d56cb40c63fd83a6994e2,", - "chip.border.clear.green.dark": "S:6fede667bcae13aeaf69b3707548aa5e45ad0afc,", - "chip.border.clear.yellow.light": "S:48e80fe2ff9c694715481d747d53c445bd310141,", - "chip.border.clear.yellow.dark": "S:3e5334840af51339ac7a413fbe70bcc66c7bb7e0," - } - }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "comp/avatar": "source", - "comp/checkbox": "source", - "comp/chip": "source", - "comp/radio": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "enabled", - "brand/global": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:29302cd432556a1fdb454981f0d8a77cad7e0038,", - "avatar.font.dark": "S:acd21d86e04f2ea85d86c6f9bb5b562912c4d232,", - "avatar.icon.light": "S:c3edf45109840e13243fbfac7a8d54aaa307eddb,", - "avatar.icon.dark": "S:3bfc69f7657e19b09736257e25925de41860c631,", - "avatar.background.default.light": "S:85ccb49a090c57bfcea0a24d14c6943e730f8369,", - "avatar.background.default.dark": "S:e676cad9fcab1b63c61c7c68f3ae5f5cdb29c012,", - "avatar.background.red.light": "S:91b63ee959f6138fab84e5707cb92308b2ecb95b,", - "avatar.background.red.dark": "S:479e864a2ee36e450cdd9d7ae1e073b024250d9c,", - "avatar.background.teal.light": "S:6efb9bd330337548e3f89af55007995897e3a1a6,", - "avatar.background.teal.dark": "S:2b7ce96033c8a25c162bf6a2abd4ca687b39ec63,", - "avatar.background.blue.light": "S:31857edc10e6823833037e491a2ead24801eb14b,", - "avatar.background.blue.dark": "S:e8f523cae05208f7e438bdc7ec15f4fc92785345,", - "avatar.background.green.light": "S:76886056ecde76a8897d4d78b8dadf5e130503c3,", - "avatar.background.green.dark": "S:e20ac5197482c84e2123bcbdc881ad7d0620e2b6,", - "avatar.background.yellow.light": "S:8e7da6a5ef14e6b5c18c6f4b2aaa2a3bc2499d6d,", - "avatar.background.yellow.dark": "S:31ab9e24759619594990e7245a4c6d1da0578860,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "chip.font.clear.light": "S:cd1869eff963b3226a5b8e325ae8961edcdc860f,", - "chip.font.clear.dark": "S:318909616281bace8235daa27ed979d1aff4b0a9,", - "chip.font.solid.grey.light": "S:b8867e1a3020eeea9a2650a271a7359a2bbccae4,", - "chip.font.solid.grey.dark": "S:86c4d462b5819b9735d20140b4521a8abcf958fd,", - "chip.font.solid.blue.light": "S:f1fe969047811f0e19a589b82d6518d9f566c5a0,", - "chip.font.solid.blue.dark": "S:262eb659c661db432c7078836990d348e9cd8192,", - "chip.font.solid.red.light": "S:f4bdc45dbdd3cc39c909101780960b79e7f3d290,", - "chip.font.solid.red.dark": "S:70b6fce9e84d9e5e339bacb9b01c037ee3d65777,", - "chip.font.solid.yellow.light": "S:56b1b5eba1aeb3d188f2ae5b6f81ab1c881ac00d,", - "chip.font.solid.yellow.dark": "S:d4def11e776320658b303e9ca4dc7cd6c3cfd487,", - "chip.font.solid.green.light": "S:74149bc8e5589583d6c3ec05f9913a7337d68896,", - "chip.font.solid.green.dark": "S:dffa78fe6bf4023de4136d2987dcb676dbd26884,", - "chip.icon.solid.grey.light": "S:d97a4c55308b9f4d790e0ee17b5d24f61e57e671,", - "chip.icon.solid.grey.dark": "S:562b8adc7da03fe1c2b1dfe7de7e03e37b4c44a0,", - "chip.icon.solid.blue.light": "S:6bb0769be1bdfa3d0fdc0a6e74c138377b691836,", - "chip.icon.solid.blue.dark": "S:572c404ec7b60487b95450fd2f484338ccc3a0dc,", - "chip.icon.solid.red.light": "S:f057a349cb80f832952ff77cd151c5ceb474c4ea,", - "chip.icon.solid.red.dark": "S:6c639d005249f8fc0d53a6a766e87b4eebc9a40a,", - "chip.icon.solid.yellow.light": "S:63e19df15d6d62afa1ddc79e9226a76ee0f248ec,", - "chip.icon.solid.yellow.dark": "S:e68a8ef3629d3464d117b437c38dc4ebe1061608,", - "chip.icon.solid.green.light": "S:e6fa8a496243b0e127ae95b5668958bdafe35882,", - "chip.icon.solid.green.dark": "S:4523cc9b509173ddf2d5943bb2f07765ac2c1b65,", - "chip.icon.clear.light": "S:25936659b8a8179a70b6284139020c0086fbcd83,", - "chip.icon.clear.dark": "S:5287507d1d26d4469fefc4d2d3e310b5785e4b76,", - "chip.background.solid.grey.light": "S:0909a8594cdece59d95658524e35e8851574b9b0,", - "chip.background.solid.grey.dark": "S:566795705bffb811b01570d2461dd1e9e8e7199a,", - "chip.background.solid.red.light": "S:2a693a5b566104a571168cc4f1ae7dab4f1a33e2,", - "chip.background.solid.red.dark": "S:0549fc6214086a5be651fdb03ca738828ea58c77,", - "chip.background.solid.blue.light": "S:2c1907ce6f179a7b05d270604eeac2441186d599,", - "chip.background.solid.blue.dark": "S:c1d148796f813966898658324460c131c6dcba29,", - "chip.background.solid.green.light": "S:27ea2b8e8e2221a36363f3daec91f097caa37825,", - "chip.background.solid.green.dark": "S:655b6a79fd0da910a91e828d4a87c25fe9f8c369,", - "chip.background.solid.yellow.light": "S:4675e80ae6c13180656635fe8cb7e57734cf7cca,", - "chip.background.solid.yellow.dark": "S:7783c5c18a6ee992c210dc49387ad18c627fb9b0,", - "chip.closable-icon.light": "S:776823e8214067bd67130b39c90decaf04b44084,", - "chip.closable-icon.dark": "S:f5d53e306b0ba1f1811dc1f58fac219e27be0ab2,", - "chip.border.clear.grey.light": "S:61294370e8a894ad396f4b0f0202731c446989c2,", - "chip.border.clear.grey.dark": "S:fbf51d5f24552fd9a4ce00a799617b538ac7d5e8,", - "chip.border.clear.red.light": "S:04cadf14d9f5813d96f1b10ec7ecffe975a60a8f,", - "chip.border.clear.red.dark": "S:d051253031f4b12e45abf1bbd7505c6bdd879fba,", - "chip.border.clear.blue.light": "S:282b074f6d26fc6b5ad65b27300efa01c1d3c369,", - "chip.border.clear.blue.dark": "S:afb5e3fb26a91a407a69055fbe4d940cb485c73e,", - "chip.border.clear.green.light": "S:1d497f4f05ef2b8e6848d8b369b0a5a0db2849a0,", - "chip.border.clear.green.dark": "S:175f79fa692a069c2e74c8a4149dd05adb74c374,", - "chip.border.clear.yellow.light": "S:7e429379cf6504670b6355d2b5694539dfc0fa0c,", - "chip.border.clear.yellow.dark": "S:2661ad97eeff2f2f6c6b00b9cfadf1fb482e9806," + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," } } ] \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 519e7a4caa9..e1cc07b9541 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -175,7 +175,235 @@ }, "checkbox": { "font": { - "value": "$avatar.font.dark", + "value": "$checkbox.font.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.dark", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.dark", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.dark", + "type": "color" + }, + "border": { + "value": "$checkbox.border.dark", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.dark", + "type": "color" + }, + "background": { + "value": "$radio.background.dark", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.dark", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.dark", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.dark", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.dark", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.dark", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.dark", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.dark", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.dark", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.dark", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.dark", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.dark", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.dark", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.dark", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.dark", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.dark", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.dark", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.dark", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.dark", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.dark", + "type": "color" + }, + "border": { + "value": "$tooltip.border.dark", + "type": "color" + }, + "font": { + "value": "$tooltip.font.dark", "type": "color" } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index ecc31febd15..40c45879c37 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -175,7 +175,235 @@ }, "checkbox": { "font": { - "value": "$avatar.font.light", + "value": "$checkbox.font.light", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.light", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.light", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.light", + "type": "color" + }, + "border": { + "value": "$checkbox.border.light", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.light", + "type": "color" + }, + "background": { + "value": "$radio.background.light", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.light", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.light", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.light", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.light", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.light", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.light", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.light", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.light", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.light", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.light", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.light", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.light", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.light", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.light", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.light", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.light", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.light", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.light", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.light", + "type": "color" + }, + "border": { + "value": "$tooltip.border.light", + "type": "color" + }, + "font": { + "value": "$tooltip.font.light", "type": "color" } } diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json index 9e26dfeeb6e..df0ecbad9de 100644 --- a/tokens/component/checkbox.json +++ b/tokens/component/checkbox.json @@ -1 +1,110 @@ -{} \ No newline at end of file +{ + "checkbox": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "selected": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "standard": { + "value": "$core.sizing.5", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/chip.json b/tokens/component/chip.json index 25055b9be38..6d5b1bde371 100644 --- a/tokens/component/chip.json +++ b/tokens/component/chip.json @@ -230,6 +230,20 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" + }, + "space-arround": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } } }, "border": { @@ -299,6 +313,40 @@ "value": "$core.sizing.14", "type": "sizing" } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "border-width": { + "standard": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } } } } \ No newline at end of file diff --git a/tokens/component/label.json b/tokens/component/label.json new file mode 100644 index 00000000000..b658a3053ad --- /dev/null +++ b/tokens/component/label.json @@ -0,0 +1,26 @@ +{ + "label": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/loader.json b/tokens/component/loader.json new file mode 100644 index 00000000000..cdba53194b9 --- /dev/null +++ b/tokens/component/loader.json @@ -0,0 +1,130 @@ +{ + "loader": { + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "text": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "value-text": { + "sm": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "md": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + } + } + }, + "default": { + "comp-size": { + "sm": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.17", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.20", + "type": "sizing" + } + }, + "space-between": { + "standard": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inline": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "foreground": { + "indeterminate": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "determinate": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/radio.json b/tokens/component/radio.json index 9e26dfeeb6e..8c72a63238d 100644 --- a/tokens/component/radio.json +++ b/tokens/component/radio.json @@ -1 +1,124 @@ -{} \ No newline at end of file +{ + "radio": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "border-width": { + "unchecked": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "checked": { + "sm": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.3", + "type": "borderWidth" + } + } + }, + "border": { + "unchecked": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/rating.json b/tokens/component/rating.json new file mode 100644 index 00000000000..c6c40e58835 --- /dev/null +++ b/tokens/component/rating.json @@ -0,0 +1,243 @@ +{ + "rating": { + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "chip": { + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "value-text": { + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "count": { + "font": { + "sm": { + "value": { + "typography": "$rating.chip.value-text.font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$rating.chip.value-text.font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$rating.chip.value-text.font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "star": { + "comp-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "average": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "star-container": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.2", + "type": "spacing" + } + } + }, + "average": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "chip": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json new file mode 100644 index 00000000000..51d50bce707 --- /dev/null +++ b/tokens/component/tooltip.json @@ -0,0 +1,66 @@ +{ + "tooltip": { + "space-arround": { + "top-bottom": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "left-right": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "standard": { + "value": "$semantic.font.wrap.medium.-2", + "type": "typography" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "arrow": { + "width": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "height": { + "value": "$core.sizing.2", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json index 0cee5b781e7..f697f4387a2 100644 --- a/tokens/core.json +++ b/tokens/core.json @@ -38,6 +38,10 @@ "value": "Medium", "type": "fontWeights" }, + "medium-italic": { + "value": "Medium Italic", + "type": "fontWeights" + }, "demi": { "value": "Demi", "type": "fontWeights" @@ -321,6 +325,10 @@ "type": "borderWidth" }, "3": { + "value": "6px", + "type": "borderWidth" + }, + "4": { "value": "8px", "type": "borderWidth" }, From 7e331d7d0e5b927c7f5ad604cbb983cbdfb18661 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 27 Oct 2022 14:55:55 -0700 Subject: [PATCH 019/696] ci(actions): adding github actions for designers --- .github/workflows/design-tokens-automerge.yml | 37 ++++++++++++++++++ .github/workflows/design-tokens-pr.yml | 2 +- .github/workflows/design-tokens-sync.yml | 38 +++++++++++++++++++ 3 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/design-tokens-automerge.yml create mode 100644 .github/workflows/design-tokens-sync.yml diff --git a/.github/workflows/design-tokens-automerge.yml b/.github/workflows/design-tokens-automerge.yml new file mode 100644 index 00000000000..9c92dae7f29 --- /dev/null +++ b/.github/workflows/design-tokens-automerge.yml @@ -0,0 +1,37 @@ +name: automerge +on: + pull_request: + types: + - labeled + - unlabeled + - synchronize + - opened + - edited + - ready_for_review + - reopened + - unlocked + pull_request_review: + types: + - submitted + check_suite: + types: + - completed + status: {} +jobs: + automerge: + runs-on: ubuntu-latest + steps: + - id: automerge + name: automerge + uses: "pascalgn/automerge-action@v0.15.5" + env: + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + MERGE_LABELS: "automerge" + MERGE_REMOVE_LABELS: "automerge" + MERGE_METHOD: "squash" + MERGE_COMMIT_MESSAGE: "automatic merge" + MERGE_FORKS: "false" + MERGE_RETRIES: "6" + MERGE_RETRY_SLEEP: "10000" + MERGE_REQUIRED_APPROVALS: "0" + UPDATE_LABELS: "" \ No newline at end of file diff --git a/.github/workflows/design-tokens-pr.yml b/.github/workflows/design-tokens-pr.yml index 36eb31e8e3c..34d001029a4 100644 --- a/.github/workflows/design-tokens-pr.yml +++ b/.github/workflows/design-tokens-pr.yml @@ -2,7 +2,7 @@ name: Automate PR for Designers Action on: push: branches: - - brunoaires + - designer/* jobs: create-pull-request: diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml new file mode 100644 index 00000000000..a790493221a --- /dev/null +++ b/.github/workflows/design-tokens-sync.yml @@ -0,0 +1,38 @@ +name: Automate Designers Branches Sync +on: + push: + branches: + - feature/design-tokens + +jobs: + sync-branches: + runs-on: ubuntu-latest + name: Syncing branches for designers + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: 12 + - name: Opening pull request + id: pull + uses: tretuna/sync-branches@1.4.0 + with: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + FROM_BRANCH: 'feature/design-tokens' + TO_BRANCH: 'designer/brunoaires' + - name: Opening pull request + id: pull + uses: tretuna/sync-branches@1.4.0 + with: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + FROM_BRANCH: 'feature/design-tokens' + TO_BRANCH: 'designer/manuelacosta' + - name: Opening pull request + id: pull + uses: tretuna/sync-branches@1.4.0 + with: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + FROM_BRANCH: 'feature/design-tokens' + TO_BRANCH: 'designer/jacqueskeet' From 656d10b666134ab9bd8e707646d7feb43283ec0a Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 31 Oct 2022 22:15:32 +0100 Subject: [PATCH 020/696] This is my first test --- tokens/$metadata.json | 5 +++++ tokens/$themes.json | 1 + tokens/global.json | 1 + 3 files changed, 7 insertions(+) create mode 100644 tokens/$metadata.json create mode 100644 tokens/$themes.json create mode 100644 tokens/global.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json new file mode 100644 index 00000000000..74cad535f24 --- /dev/null +++ b/tokens/$metadata.json @@ -0,0 +1,5 @@ +{ + "tokenSetOrder": [ + "global" + ] +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json new file mode 100644 index 00000000000..0637a088a01 --- /dev/null +++ b/tokens/$themes.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tokens/global.json b/tokens/global.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/global.json @@ -0,0 +1 @@ +{} \ No newline at end of file From d6892e0dffed9d59d1d7ca3496e542a6a07ec6ea Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 1 Nov 2022 13:05:09 -0700 Subject: [PATCH 021/696] fix(gh-actions): action for automerge prs --- .github/workflows/design-tokens-automerge.yml | 10 ++-------- .github/workflows/design-tokens-sync.yml | 13 ++++++++++++- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/.github/workflows/design-tokens-automerge.yml b/.github/workflows/design-tokens-automerge.yml index 9c92dae7f29..ffd0eb15add 100644 --- a/.github/workflows/design-tokens-automerge.yml +++ b/.github/workflows/design-tokens-automerge.yml @@ -3,13 +3,6 @@ on: pull_request: types: - labeled - - unlabeled - - synchronize - - opened - - edited - - ready_for_review - - reopened - - unlocked pull_request_review: types: - submitted @@ -34,4 +27,5 @@ jobs: MERGE_RETRIES: "6" MERGE_RETRY_SLEEP: "10000" MERGE_REQUIRED_APPROVALS: "0" - UPDATE_LABELS: "" \ No newline at end of file + UPDATE_LABELS: "" + UPDATE_METHOD: "rebase" \ No newline at end of file diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index a790493221a..72fc66cb0a1 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v3 with: - node-version: 12 + node-version: 16 - name: Opening pull request id: pull uses: tretuna/sync-branches@1.4.0 @@ -22,6 +22,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} FROM_BRANCH: 'feature/design-tokens' TO_BRANCH: 'designer/brunoaires' + LABELS: 'automerge' - name: Opening pull request id: pull uses: tretuna/sync-branches@1.4.0 @@ -29,6 +30,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} FROM_BRANCH: 'feature/design-tokens' TO_BRANCH: 'designer/manuelacosta' + LABELS: 'automerge' - name: Opening pull request id: pull uses: tretuna/sync-branches@1.4.0 @@ -36,3 +38,12 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} FROM_BRANCH: 'feature/design-tokens' TO_BRANCH: 'designer/jacqueskeet' + LABELS: 'automerge' + - name: Opening pull request + id: pull + uses: tretuna/sync-branches@1.4.0 + with: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + FROM_BRANCH: 'feature/design-tokens' + TO_BRANCH: 'designer/test' + LABELS: 'automerge' From 2c9d563cb03347efd555e4b7d2e0ed31c80b9998 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 1 Nov 2022 13:18:53 -0700 Subject: [PATCH 022/696] fix(gh-actions): unique ids for actions sync --- .github/workflows/design-tokens-sync.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index 72fc66cb0a1..8bad017e565 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -16,7 +16,7 @@ jobs: with: node-version: 16 - name: Opening pull request - id: pull + id: pullbrunoaires uses: tretuna/sync-branches@1.4.0 with: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} @@ -24,7 +24,7 @@ jobs: TO_BRANCH: 'designer/brunoaires' LABELS: 'automerge' - name: Opening pull request - id: pull + id: pullmanuelacosta uses: tretuna/sync-branches@1.4.0 with: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} @@ -32,7 +32,7 @@ jobs: TO_BRANCH: 'designer/manuelacosta' LABELS: 'automerge' - name: Opening pull request - id: pull + id: pulljacqueskeet uses: tretuna/sync-branches@1.4.0 with: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} @@ -40,7 +40,7 @@ jobs: TO_BRANCH: 'designer/jacqueskeet' LABELS: 'automerge' - name: Opening pull request - id: pull + id: pulltest uses: tretuna/sync-branches@1.4.0 with: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} From 151482c83a73fe04f78ccb86f0613720b775a0d3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 1 Nov 2022 13:21:49 -0700 Subject: [PATCH 023/696] fix(gh-actions): add back pr types in action --- .github/workflows/design-tokens-automerge.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/design-tokens-automerge.yml b/.github/workflows/design-tokens-automerge.yml index ffd0eb15add..13cbb3a56b1 100644 --- a/.github/workflows/design-tokens-automerge.yml +++ b/.github/workflows/design-tokens-automerge.yml @@ -3,6 +3,13 @@ on: pull_request: types: - labeled + - unlabeled + - synchronize + - opened + - edited + - ready_for_review + - reopened + - unlocked pull_request_review: types: - submitted From 712e32d22c0d3fccfcdbcedb7339781aaf3cbbe6 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 7 Nov 2022 14:52:41 +0100 Subject: [PATCH 024/696] Pushing to my own branch --- tokens/$metadata.json | 16 +- tokens/$themes.json | 744 +++++++++- tokens/{global.json => brand/dark.json} | 0 tokens/brand/global.json | 1 + tokens/brand/light.json | 20 + tokens/calcite/dark.json | 412 ++++++ tokens/calcite/light.json | 412 ++++++ tokens/component/avatar.json | 140 ++ tokens/component/checkbox.json | 110 ++ tokens/component/chip.json | 352 +++++ tokens/component/label.json | 26 + tokens/component/loader.json | 130 ++ tokens/component/radio.json | 124 ++ tokens/component/rating.json | 243 ++++ tokens/component/tooltip.json | 66 + tokens/core.json | 1696 +++++++++++++++++++++++ tokens/semantic.json | 1673 ++++++++++++++++++++++ 17 files changed, 6163 insertions(+), 2 deletions(-) rename tokens/{global.json => brand/dark.json} (100%) create mode 100644 tokens/brand/global.json create mode 100644 tokens/brand/light.json create mode 100644 tokens/calcite/dark.json create mode 100644 tokens/calcite/light.json create mode 100644 tokens/component/avatar.json create mode 100644 tokens/component/checkbox.json create mode 100644 tokens/component/chip.json create mode 100644 tokens/component/label.json create mode 100644 tokens/component/loader.json create mode 100644 tokens/component/radio.json create mode 100644 tokens/component/rating.json create mode 100644 tokens/component/tooltip.json create mode 100644 tokens/core.json create mode 100644 tokens/semantic.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 74cad535f24..1f420c87f75 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -1,5 +1,19 @@ { "tokenSetOrder": [ - "global" + "core", + "semantic", + "component/avatar", + "component/checkbox", + "component/chip", + "component/label", + "component/loader", + "component/radio", + "component/rating", + "component/tooltip", + "calcite/light", + "calcite/dark", + "brand/global", + "brand/light", + "brand/dark" ] } \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index 0637a088a01..ea460666ab4 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -1 +1,743 @@ -[] \ No newline at end of file +[ + { + "id": "59a65f6d4a3657738c9d46d61315ae0b6fc6e9fd", + "name": "Brand - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "enabled", + "brand/dark": "disabled", + "component/label": "disabled", + "component/tooltip": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "d7056b4e805091c91b5ec1b6ce901ba3d606e7a8", + "name": "Brand - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "disabled", + "brand/dark": "enabled", + "component/label": "disabled", + "component/tooltip": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", + "name": "Calcite Headless", + "selectedTokenSets": { + "core": "enabled", + "semantic": "enabled", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/avatar": "enabled", + "component/checkbox": "enabled", + "component/chip": "enabled", + "component/loader": "enabled", + "component/radio": "enabled", + "component/rating": "enabled", + "component/label": "enabled", + "component/tooltip": "enabled" + }, + "$figmaStyleReferences": { + "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", + "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", + "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", + "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", + "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", + "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", + "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", + "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", + "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", + "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", + "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", + "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", + "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", + "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", + "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", + "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", + "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", + "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", + "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", + "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", + "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", + "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", + "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", + "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", + "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", + "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", + "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", + "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", + "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", + "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", + "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", + "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", + "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", + "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", + "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", + "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", + "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", + "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", + "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", + "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", + "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", + "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", + "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", + "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", + "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", + "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", + "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", + "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", + "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", + "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", + "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", + "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", + "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", + "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", + "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", + "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", + "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", + "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", + "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", + "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", + "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", + "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", + "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", + "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", + "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", + "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", + "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", + "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", + "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", + "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", + "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", + "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", + "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", + "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", + "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", + "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", + "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", + "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", + "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", + "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", + "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", + "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", + "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", + "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", + "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", + "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", + "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", + "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", + "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", + "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", + "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", + "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", + "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", + "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", + "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", + "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", + "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", + "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", + "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", + "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", + "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", + "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", + "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", + "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", + "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", + "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", + "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", + "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", + "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", + "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", + "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", + "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", + "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", + "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", + "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", + "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", + "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", + "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", + "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", + "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", + "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", + "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", + "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", + "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", + "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", + "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", + "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", + "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", + "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", + "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", + "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", + "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", + "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", + "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", + "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", + "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", + "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", + "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", + "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", + "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", + "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", + "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", + "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", + "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", + "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", + "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", + "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", + "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", + "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", + "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", + "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", + "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", + "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", + "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", + "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", + "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", + "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", + "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", + "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", + "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", + "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", + "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", + "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", + "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", + "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", + "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", + "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", + "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", + "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", + "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", + "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", + "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", + "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", + "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", + "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", + "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", + "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", + "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", + "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", + "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", + "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", + "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", + "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", + "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", + "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", + "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", + "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", + "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", + "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", + "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", + "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", + "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", + "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", + "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", + "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", + "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", + "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", + "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", + "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", + "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", + "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", + "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", + "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", + "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", + "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", + "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", + "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", + "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", + "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", + "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", + "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", + "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", + "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", + "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", + "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", + "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", + "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", + "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", + "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", + "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", + "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", + "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", + "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", + "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", + "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", + "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", + "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", + "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", + "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", + "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", + "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", + "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", + "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", + "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", + "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", + "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", + "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", + "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", + "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", + "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", + "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", + "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", + "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", + "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", + "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", + "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", + "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", + "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", + "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", + "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", + "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", + "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", + "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", + "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", + "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", + "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", + "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", + "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", + "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", + "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", + "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", + "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", + "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", + "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", + "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", + "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", + "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", + "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", + "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", + "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", + "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", + "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", + "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", + "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", + "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", + "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", + "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", + "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", + "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", + "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", + "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", + "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", + "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", + "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", + "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", + "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", + "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", + "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", + "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", + "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", + "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", + "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", + "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", + "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", + "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", + "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", + "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", + "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", + "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", + "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", + "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", + "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", + "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", + "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", + "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", + "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", + "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", + "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", + "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", + "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", + "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", + "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", + "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", + "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", + "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", + "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", + "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", + "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", + "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", + "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", + "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", + "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", + "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", + "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", + "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", + "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", + "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", + "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", + "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", + "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", + "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", + "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", + "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", + "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", + "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", + "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", + "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", + "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", + "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", + "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", + "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", + "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", + "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", + "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", + "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", + "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", + "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", + "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", + "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", + "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", + "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", + "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", + "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", + "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", + "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", + "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", + "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", + "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", + "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", + "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", + "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", + "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", + "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", + "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", + "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", + "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", + "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", + "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", + "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", + "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", + "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", + "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", + "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", + "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", + "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", + "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", + "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", + "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", + "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", + "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", + "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", + "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", + "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", + "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", + "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", + "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", + "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", + "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", + "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", + "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", + "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", + "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", + "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", + "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", + "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", + "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", + "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", + "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", + "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", + "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", + "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", + "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", + "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", + "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", + "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", + "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", + "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", + "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", + "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", + "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", + "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", + "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", + "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", + "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", + "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", + "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", + "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", + "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", + "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", + "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", + "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", + "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", + "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", + "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", + "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", + "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", + "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", + "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", + "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", + "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", + "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", + "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", + "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", + "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", + "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", + "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", + "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", + "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", + "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", + "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", + "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", + "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", + "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", + "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", + "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", + "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", + "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", + "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", + "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", + "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", + "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", + "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", + "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", + "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", + "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", + "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", + "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", + "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", + "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", + "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", + "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", + "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", + "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", + "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", + "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", + "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", + "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", + "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", + "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", + "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", + "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", + "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", + "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", + "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", + "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", + "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", + "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", + "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", + "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", + "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", + "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", + "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", + "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", + "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", + "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", + "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", + "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", + "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", + "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", + "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", + "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", + "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", + "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", + "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", + "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", + "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", + "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", + "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", + "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", + "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", + "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", + "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", + "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", + "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", + "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", + "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", + "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", + "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", + "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", + "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", + "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", + "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", + "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", + "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", + "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", + "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", + "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", + "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", + "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," + } + }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "enabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + } + } +] \ No newline at end of file diff --git a/tokens/global.json b/tokens/brand/dark.json similarity index 100% rename from tokens/global.json rename to tokens/brand/dark.json diff --git a/tokens/brand/global.json b/tokens/brand/global.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/brand/global.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/brand/light.json b/tokens/brand/light.json new file mode 100644 index 00000000000..a55d3c5bc32 --- /dev/null +++ b/tokens/brand/light.json @@ -0,0 +1,20 @@ +{ + "core": { + "font": { + "font-size": { + "6": { + "value": "26px", + "type": "fontSizes" + } + } + } + }, + "breakpoint": { + "width": { + "lg": { + "value": "$core.breakpoint.width.lg", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json new file mode 100644 index 00000000000..e1cc07b9541 --- /dev/null +++ b/tokens/calcite/dark.json @@ -0,0 +1,412 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.dark", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.dark", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.dark", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.dark", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.dark", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.dark", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.dark", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.dark", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.dark", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.dark", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.dark", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.dark", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.dark", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.dark", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.dark", + "type": "color" + }, + "border": { + "value": "$checkbox.border.dark", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.dark", + "type": "color" + }, + "background": { + "value": "$radio.background.dark", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.dark", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.dark", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.dark", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.dark", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.dark", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.dark", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.dark", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.dark", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.dark", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.dark", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.dark", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.dark", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.dark", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.dark", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.dark", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.dark", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.dark", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.dark", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.dark", + "type": "color" + }, + "border": { + "value": "$tooltip.border.dark", + "type": "color" + }, + "font": { + "value": "$tooltip.font.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json new file mode 100644 index 00000000000..40c45879c37 --- /dev/null +++ b/tokens/calcite/light.json @@ -0,0 +1,412 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.light", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.light", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.light", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.light", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.light", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.light", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.light", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.light", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.light", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.light", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.light", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.light", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.light", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.light", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.light", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.light", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.light", + "type": "color" + }, + "border": { + "value": "$checkbox.border.light", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.light", + "type": "color" + }, + "background": { + "value": "$radio.background.light", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.light", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.light", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.light", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.light", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.light", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.light", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.light", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.light", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.light", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.light", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.light", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.light", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.light", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.light", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.light", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.light", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.light", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.light", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.light", + "type": "color" + }, + "border": { + "value": "$tooltip.border.light", + "type": "color" + }, + "font": { + "value": "$tooltip.font.light", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json new file mode 100644 index 00000000000..5694023e615 --- /dev/null +++ b/tokens/component/avatar.json @@ -0,0 +1,140 @@ +{ + "avatar": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.red.h-rr-090", + "type": "color" + } + }, + "teal": { + "light": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + } + }, + "green": { + "light": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-100", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json new file mode 100644 index 00000000000..df0ecbad9de --- /dev/null +++ b/tokens/component/checkbox.json @@ -0,0 +1,110 @@ +{ + "checkbox": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "selected": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "standard": { + "value": "$core.sizing.5", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/chip.json b/tokens/component/chip.json new file mode 100644 index 00000000000..6d5b1bde371 --- /dev/null +++ b/tokens/component/chip.json @@ -0,0 +1,352 @@ +{ + "chip": { + "font": { + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "closable-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "space-arround": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "border": { + "clear": { + "grey": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "comp-height": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "border-width": { + "standard": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/label.json b/tokens/component/label.json new file mode 100644 index 00000000000..b658a3053ad --- /dev/null +++ b/tokens/component/label.json @@ -0,0 +1,26 @@ +{ + "label": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/loader.json b/tokens/component/loader.json new file mode 100644 index 00000000000..cdba53194b9 --- /dev/null +++ b/tokens/component/loader.json @@ -0,0 +1,130 @@ +{ + "loader": { + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "text": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "value-text": { + "sm": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "md": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + } + } + }, + "default": { + "comp-size": { + "sm": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.17", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.20", + "type": "sizing" + } + }, + "space-between": { + "standard": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inline": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "foreground": { + "indeterminate": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "determinate": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/radio.json b/tokens/component/radio.json new file mode 100644 index 00000000000..8c72a63238d --- /dev/null +++ b/tokens/component/radio.json @@ -0,0 +1,124 @@ +{ + "radio": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "border-width": { + "unchecked": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "checked": { + "sm": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.3", + "type": "borderWidth" + } + } + }, + "border": { + "unchecked": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/rating.json b/tokens/component/rating.json new file mode 100644 index 00000000000..c6c40e58835 --- /dev/null +++ b/tokens/component/rating.json @@ -0,0 +1,243 @@ +{ + "rating": { + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "chip": { + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "value-text": { + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "count": { + "font": { + "sm": { + "value": { + "typography": "$rating.chip.value-text.font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$rating.chip.value-text.font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$rating.chip.value-text.font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "star": { + "comp-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "average": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "star-container": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.2", + "type": "spacing" + } + } + }, + "average": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "chip": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json new file mode 100644 index 00000000000..51d50bce707 --- /dev/null +++ b/tokens/component/tooltip.json @@ -0,0 +1,66 @@ +{ + "tooltip": { + "space-arround": { + "top-bottom": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "left-right": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "standard": { + "value": "$semantic.font.wrap.medium.-2", + "type": "typography" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "arrow": { + "width": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "height": { + "value": "$core.sizing.2", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json new file mode 100644 index 00000000000..f697f4387a2 --- /dev/null +++ b/tokens/core.json @@ -0,0 +1,1696 @@ +{ + "core": { + "font": { + "font-family": { + "primary": { + "value": "Avenir Next LT Pro", + "type": "fontFamilies" + }, + "secondary": { + "value": "Avenir Next World", + "type": "fontFamilies" + }, + "code": { + "value": "Monaco", + "type": "fontFamilies" + } + }, + "font-weight": { + "ultralight": { + "value": "UltraLight", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "thin": { + "value": "Thin", + "type": "fontWeights" + }, + "light": { + "value": "Light", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "regular": { + "value": "Regular", + "type": "fontWeights" + }, + "medium": { + "value": "Medium", + "type": "fontWeights" + }, + "medium-italic": { + "value": "Medium Italic", + "type": "fontWeights" + }, + "demi": { + "value": "Demi", + "type": "fontWeights" + }, + "bold": { + "value": "Bold", + "type": "fontWeights" + }, + "extrabold": { + "value": "ExtraBold", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "black": { + "value": "Black", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "heavy": { + "value": "Heavy", + "type": "fontWeights" + } + }, + "line-height": { + "fixed": { + "0": { + "value": "12px", + "type": "lineHeights" + }, + "1": { + "value": "16px", + "type": "lineHeights" + }, + "2": { + "value": "20px", + "type": "lineHeights" + }, + "3": { + "value": "24px", + "type": "lineHeights" + }, + "4": { + "value": "28px", + "type": "lineHeights" + }, + "5": { + "value": "32px", + "type": "lineHeights" + }, + "6": { + "value": "36px", + "type": "lineHeights" + }, + "7": { + "value": "40px", + "type": "lineHeights" + }, + "8": { + "value": "48px", + "type": "lineHeights" + }, + "9": { + "value": "56px", + "type": "lineHeights" + }, + "10": { + "value": "64px", + "type": "lineHeights" + }, + "11": { + "value": "72px", + "type": "lineHeights" + }, + "12": { + "value": "80px", + "type": "lineHeights" + } + }, + "relative": { + "default": { + "value": "auto", + "type": "lineHeights", + "description": "1" + }, + "tight": { + "value": "125%", + "type": "lineHeights", + "description": "1.25" + }, + "snug": { + "value": "137.5%", + "type": "lineHeights", + "description": "1.375" + }, + "normal": { + "value": "150%", + "type": "lineHeights", + "description": "1.5" + }, + "relaxed": { + "value": "162.5%", + "type": "lineHeights", + "description": "1.625" + }, + "loose": { + "value": "200%", + "type": "lineHeights", + "description": "2" + } + } + }, + "font-size": { + "0": { + "value": "10px", + "type": "fontSizes" + }, + "1": { + "value": "12px", + "type": "fontSizes" + }, + "2": { + "value": "14px", + "type": "fontSizes" + }, + "3": { + "value": "16px", + "type": "fontSizes" + }, + "4": { + "value": "18px", + "type": "fontSizes" + }, + "5": { + "value": "20px", + "type": "fontSizes" + }, + "6": { + "value": "24px", + "type": "fontSizes" + }, + "7": { + "value": "32px", + "type": "fontSizes" + }, + "8": { + "value": "40px", + "type": "fontSizes" + }, + "9": { + "value": "48px", + "type": "fontSizes" + }, + "10": { + "value": "56px", + "type": "fontSizes" + }, + "11": { + "value": "64px", + "type": "fontSizes" + }, + "12": { + "value": "72px", + "type": "fontSizes" + }, + "13": { + "value": "80px", + "type": "fontSizes" + }, + "14": { + "value": "96px", + "type": "fontSizes" + }, + "15": { + "value": "120px", + "type": "fontSizes" + } + }, + "letter-spacing": { + "tight": { + "value": "-0.4px", + "type": "letterSpacing" + }, + "normal": { + "value": "0px", + "type": "letterSpacing" + }, + "wide": { + "value": "0.4px", + "type": "letterSpacing" + } + }, + "paragraph-spacing": { + "normal": { + "value": "10px", + "type": "paragraphSpacing" + } + }, + "text-decoration": { + "none": { + "value": "none", + "type": "textDecoration" + }, + "underline": { + "value": "underline", + "type": "textDecoration" + } + }, + "text-case": { + "none": { + "value": "none", + "type": "textCase" + }, + "uppercase": { + "value": "uppercase", + "type": "textCase" + }, + "lowercase": { + "value": "lowercase", + "type": "textCase" + }, + "capitalize": { + "value": "capitalize", + "type": "textCase" + } + } + }, + "border": { + "border-radius": { + "0": { + "value": "2px", + "type": "borderRadius" + }, + "1": { + "value": "4px", + "type": "borderRadius" + }, + "2": { + "value": "6px", + "type": "borderRadius" + }, + "3": { + "value": "8px", + "type": "borderRadius" + }, + "4": { + "value": "12px", + "type": "borderRadius" + }, + "5": { + "value": "16px", + "type": "borderRadius" + }, + "6": { + "value": "24px", + "type": "borderRadius" + }, + "none": { + "value": "0px", + "type": "borderRadius" + }, + "half": { + "value": "50%", + "type": "borderRadius" + }, + "full": { + "value": "9999px", + "type": "borderRadius" + } + }, + "border-width": { + "0": { + "value": "1px", + "type": "borderWidth" + }, + "1": { + "value": "2px", + "type": "borderWidth" + }, + "2": { + "value": "4px", + "type": "borderWidth" + }, + "3": { + "value": "6px", + "type": "borderWidth" + }, + "4": { + "value": "8px", + "type": "borderWidth" + }, + "none": { + "value": "0px", + "type": "borderWidth" + } + } + }, + "opacity": { + "0": { + "value": "0%", + "type": "opacity" + }, + "4": { + "value": "4%", + "type": "opacity" + }, + "8": { + "value": "8%", + "type": "opacity" + }, + "10": { + "value": "10%", + "type": "opacity" + }, + "20": { + "value": "20%", + "type": "opacity" + }, + "30": { + "value": "30%", + "type": "opacity" + }, + "40": { + "value": "40%", + "type": "opacity" + }, + "50": { + "value": "50%", + "type": "opacity" + }, + "60": { + "value": "60%", + "type": "opacity" + }, + "70": { + "value": "70%", + "type": "opacity" + }, + "80": { + "value": "80%", + "type": "opacity" + }, + "90": { + "value": "90%", + "type": "opacity" + }, + "92": { + "value": "92%", + "type": "opacity" + }, + "96": { + "value": "96%", + "type": "opacity" + }, + "100": { + "value": "100%", + "type": "opacity" + } + }, + "color": { + "neutral": { + "blk-000": { + "value": "#ffffff", + "type": "color" + }, + "blk-005": { + "value": "#f8f8f8", + "type": "color" + }, + "blk-010": { + "value": "#f3f3f3", + "type": "color" + }, + "blk-020": { + "value": "#eaeaea", + "type": "color" + }, + "blk-030": { + "value": "#dfdfdf", + "type": "color" + }, + "blk-040": { + "value": "#d4d4d4", + "type": "color" + }, + "blk-050": { + "value": "#cacaca", + "type": "color" + }, + "blk-060": { + "value": "#bfbfbf", + "type": "color" + }, + "blk-070": { + "value": "#b5b5b5", + "type": "color" + }, + "blk-080": { + "value": "#aaaaaa", + "type": "color" + }, + "blk-090": { + "value": "#9f9f9f", + "type": "color" + }, + "blk-100": { + "value": "#949494", + "type": "color" + }, + "blk-110": { + "value": "#8a8a8a", + "type": "color" + }, + "blk-120": { + "value": "#808080", + "type": "color" + }, + "blk-130": { + "value": "#757575", + "type": "color" + }, + "blk-140": { + "value": "#6a6a6a", + "type": "color" + }, + "blk-150": { + "value": "#606060", + "type": "color" + }, + "blk-160": { + "value": "#555555", + "type": "color" + }, + "blk-170": { + "value": "#4a4a4a", + "type": "color" + }, + "blk-180": { + "value": "#404040", + "type": "color" + }, + "blk-190": { + "value": "#353535", + "type": "color" + }, + "blk-200": { + "value": "#2b2b2b", + "type": "color" + }, + "blk-210": { + "value": "#202020", + "type": "color" + }, + "blk-220": { + "value": "#151515", + "type": "color" + }, + "blk-230": { + "value": "#0b0b0b", + "type": "color" + }, + "blk-235": { + "value": "#060606", + "type": "color" + }, + "blk-240": { + "value": "#000000", + "type": "color" + } + }, + "palette": { + "high-saturation": { + "blue": { + "h-bb-010": { + "value": "#c7eaff", + "type": "color" + }, + "h-bb-020": { + "value": "#9fd4f3", + "type": "color" + }, + "h-bb-030": { + "value": "#77bde7", + "type": "color" + }, + "h-bb-040": { + "value": "#50a7da", + "type": "color" + }, + "h-bb-050": { + "value": "#2890ce", + "type": "color" + }, + "h-bb-060": { + "value": "#007ac2", + "type": "color" + }, + "h-bb-070": { + "value": "#00619b", + "type": "color" + }, + "h-bb-080": { + "value": "#004874", + "type": "color" + }, + "h-bb-090": { + "value": "#00304d", + "type": "color" + }, + "h-bb-100": { + "value": "#001726", + "type": "color" + } + }, + "green-blue": { + "h-gb-010": { + "value": "#cef5f4", + "type": "color" + }, + "h-gb-020": { + "value": "#afedec", + "type": "color" + }, + "h-gb-030": { + "value": "#8fe6e5", + "type": "color" + }, + "h-gb-040": { + "value": "#5ae0de", + "type": "color" + }, + "h-gb-050": { + "value": "#28cecb", + "type": "color" + }, + "h-gb-060": { + "value": "#00bab5", + "type": "color" + }, + "h-gb-070": { + "value": "#009b98", + "type": "color" + }, + "h-gb-080": { + "value": "#007472", + "type": "color" + }, + "h-gb-090": { + "value": "#004d4c", + "type": "color" + }, + "h-gb-100": { + "value": "#002625", + "type": "color" + } + }, + "green": { + "h-gg-010": { + "value": "#bdf2c4", + "type": "color" + }, + "h-gg-020": { + "value": "#a2e4ab", + "type": "color" + }, + "h-gg-030": { + "value": "#87d692", + "type": "color" + }, + "h-gg-040": { + "value": "#6bc878", + "type": "color" + }, + "h-gg-050": { + "value": "#50ba5f", + "type": "color" + }, + "h-gg-060": { + "value": "#35ac46", + "type": "color" + }, + "h-gg-070": { + "value": "#288835", + "type": "color" + }, + "h-gg-080": { + "value": "#1a6324", + "type": "color" + }, + "h-gg-090": { + "value": "#0d3f14", + "type": "color" + }, + "h-gg-100": { + "value": "#001a03", + "type": "color" + } + }, + "yellow-green": { + "h-yg-010": { + "value": "#e5f7b4", + "type": "color" + }, + "h-yg-020": { + "value": "#d9ef9f", + "type": "color" + }, + "h-yg-030": { + "value": "#cde78a", + "type": "color" + }, + "h-yg-040": { + "value": "#c2e075", + "type": "color" + }, + "h-yg-050": { + "value": "#b6d860", + "type": "color" + }, + "h-yg-060": { + "value": "#aad04b", + "type": "color" + }, + "h-yg-070": { + "value": "#84a338", + "type": "color" + }, + "h-yg-080": { + "value": "#5e7526", + "type": "color" + }, + "h-yg-090": { + "value": "#384813", + "type": "color" + }, + "h-yg-100": { + "value": "#121a00", + "type": "color" + } + }, + "yellow": { + "h-yy-010": { + "value": "#fff7cc", + "type": "color" + }, + "h-yy-020": { + "value": "#fef3ad", + "type": "color" + }, + "h-yy-030": { + "value": "#fcee8d", + "type": "color" + }, + "h-yy-040": { + "value": "#fbea6e", + "type": "color" + }, + "h-yy-050": { + "value": "#f9e54e", + "type": "color" + }, + "h-yy-060": { + "value": "#edd317", + "type": "color" + }, + "h-yy-070": { + "value": "#d9bc00", + "type": "color" + }, + "h-yy-080": { + "value": "#bfa200", + "type": "color" + }, + "h-yy-090": { + "value": "#8c7500", + "type": "color" + }, + "h-yy-100": { + "value": "#5c4e00", + "type": "color" + } + }, + "orange-yellow": { + "h-oy-010": { + "value": "#ffe2bf", + "type": "color" + }, + "h-oy-020": { + "value": "#fed3a1", + "type": "color" + }, + "h-oy-030": { + "value": "#fcc582", + "type": "color" + }, + "h-oy-040": { + "value": "#fbb664", + "type": "color" + }, + "h-oy-050": { + "value": "#f9a845", + "type": "color" + }, + "h-oy-060": { + "value": "#f89927", + "type": "color" + }, + "h-oy-070": { + "value": "#c67718", + "type": "color" + }, + "h-oy-080": { + "value": "#9a5b10", + "type": "color" + }, + "h-oy-090": { + "value": "#6d3f08", + "type": "color" + }, + "h-oy-100": { + "value": "#402300", + "type": "color" + } + }, + "orange": { + "h-oo-010": { + "value": "#ffd8bf", + "type": "color" + }, + "h-oo-020": { + "value": "#fdc39f", + "type": "color" + }, + "h-oo-030": { + "value": "#faae7f", + "type": "color" + }, + "h-oo-040": { + "value": "#f89960", + "type": "color" + }, + "h-oo-050": { + "value": "#f58440", + "type": "color" + }, + "h-oo-060": { + "value": "#f36f20", + "type": "color" + }, + "h-oo-070": { + "value": "#c65a18", + "type": "color" + }, + "h-oo-080": { + "value": "#9a4410", + "type": "color" + }, + "h-oo-090": { + "value": "#6d2f08", + "type": "color" + }, + "h-oo-100": { + "value": "#401900", + "type": "color" + } + }, + "red-orange": { + "h-ro-010": { + "value": "#ffc7b3", + "type": "color" + }, + "h-ro-020": { + "value": "#f8af95", + "type": "color" + }, + "h-ro-030": { + "value": "#f09677", + "type": "color" + }, + "h-ro-040": { + "value": "#e97e5a", + "type": "color" + }, + "h-ro-050": { + "value": "#e1653c", + "type": "color" + }, + "h-ro-060": { + "value": "#da4d1e", + "type": "color" + }, + "h-ro-070": { + "value": "#ad3c16", + "type": "color" + }, + "h-ro-080": { + "value": "#802c0f", + "type": "color" + }, + "h-ro-090": { + "value": "#531b07", + "type": "color" + }, + "h-ro-100": { + "value": "#260a00", + "type": "color" + } + }, + "red": { + "h-rr-010": { + "value": "#ffc6bf", + "type": "color" + }, + "h-rr-020": { + "value": "#ffaaa1", + "type": "color" + }, + "h-rr-030": { + "value": "#f2877b", + "type": "color" + }, + "h-rr-040": { + "value": "#f07062", + "type": "color" + }, + "h-rr-050": { + "value": "#e65240", + "type": "color" + }, + "h-rr-060": { + "value": "#d83020", + "type": "color" + }, + "h-rr-070": { + "value": "#a82b1e", + "type": "color" + }, + "h-rr-080": { + "value": "#7c1d13", + "type": "color" + }, + "h-rr-090": { + "value": "#4f0e08", + "type": "color" + }, + "h-rr-100": { + "value": "#210300", + "type": "color" + } + }, + "pink": { + "h-pk-010": { + "value": "#ffd1ef", + "type": "color" + }, + "h-pk-020": { + "value": "#fabee4", + "type": "color" + }, + "h-pk-030": { + "value": "#f2a5d6", + "type": "color" + }, + "h-pk-040": { + "value": "#eb8dc9", + "type": "color" + }, + "h-pk-050": { + "value": "#e673bb", + "type": "color" + }, + "h-pk-060": { + "value": "#e04ea6", + "type": "color" + }, + "h-pk-070": { + "value": "#ba2f7e", + "type": "color" + }, + "h-pk-080": { + "value": "#851b52", + "type": "color" + }, + "h-pk-090": { + "value": "#590b32", + "type": "color" + }, + "h-pk-100": { + "value": "#260404", + "type": "color" + } + }, + "violet-red": { + "h-vr-010": { + "value": "#fadbff", + "type": "color" + }, + "h-vr-020": { + "value": "#e4beeb", + "type": "color" + }, + "h-vr-030": { + "value": "#cfa1d7", + "type": "color" + }, + "h-vr-040": { + "value": "#b983c3", + "type": "color" + }, + "h-vr-050": { + "value": "#a466af", + "type": "color" + }, + "h-vr-060": { + "value": "#8e499b", + "type": "color" + }, + "h-vr-070": { + "value": "#73377e", + "type": "color" + }, + "h-vr-080": { + "value": "#572561", + "type": "color" + }, + "h-vr-090": { + "value": "#3c1243", + "type": "color" + }, + "h-vr-100": { + "value": "#200026", + "type": "color" + } + }, + "violet": { + "h-vv-010": { + "value": "#e8d9ff", + "type": "color" + }, + "h-vv-020": { + "value": "#cdb9eb", + "type": "color" + }, + "h-vv-030": { + "value": "#b39ad7", + "type": "color" + }, + "h-vv-040": { + "value": "#987ac3", + "type": "color" + }, + "h-vv-050": { + "value": "#7e5baf", + "type": "color" + }, + "h-vv-060": { + "value": "#633b9b", + "type": "color" + }, + "h-vv-070": { + "value": "#4e2c7e", + "type": "color" + }, + "h-vv-080": { + "value": "#3a1e61", + "type": "color" + }, + "h-vv-090": { + "value": "#250f43", + "type": "color" + }, + "h-vv-100": { + "value": "#100026", + "type": "color" + } + } + }, + "vibrant": { + "blue": { + "v-bb-120": { + "value": "#59d6ff", + "type": "color" + }, + "v-bb-140": { + "value": "#3db8ff", + "type": "color" + }, + "v-bb-160": { + "value": "#009af2", + "type": "color" + }, + "v-bb-180": { + "value": "#009af2", + "type": "color" + } + }, + "green-blue": { + "v-gb-120": { + "value": "#59fffc", + "type": "color" + }, + "v-gb-140": { + "value": "#00f7f3", + "type": "color" + }, + "v-gb-160": { + "value": "#00e6e2", + "type": "color" + }, + "v-gb-180": { + "value": "#00cfca", + "type": "color" + } + }, + "green": { + "v-gg-120": { + "value": "#73ff84", + "type": "color" + }, + "v-gg-140": { + "value": "#3bed52", + "type": "color" + }, + "v-gg-160": { + "value": "#00b81b", + "type": "color" + }, + "v-gg-180": { + "value": "#00a118", + "type": "color" + } + }, + "yellow-green": { + "v-yg-120": { + "value": "#d7ff73", + "type": "color" + }, + "v-yg-140": { + "value": "#bbed3b", + "type": "color" + }, + "v-yg-160": { + "value": "#96cc00", + "type": "color" + }, + "v-yg-180": { + "value": "#7fab00", + "type": "color" + } + }, + "yellow": { + "v-yy-120": { + "value": "#fff766", + "type": "color" + }, + "v-yy-140": { + "value": "#ffee33", + "type": "color" + }, + "v-yy-160": { + "value": "#f5d000", + "type": "color" + }, + "v-yy-180": { + "value": "#ebba17", + "type": "color" + } + }, + "orange-yellow": { + "v-oy-120": { + "value": "#ffb54d", + "type": "color" + }, + "v-oy-140": { + "value": "#ff9500", + "type": "color" + }, + "v-oy-160": { + "value": "#e68600", + "type": "color" + }, + "v-oy-180": { + "value": "#d17300", + "type": "color" + } + }, + "red-orange": { + "v-ro-120": { + "value": "#ff824d", + "type": "color" + }, + "v-ro-140": { + "value": "#ff4d00", + "type": "color" + }, + "v-ro-160": { + "value": "#de4300", + "type": "color" + }, + "v-ro-180": { + "value": "#c93b00", + "type": "color" + } + }, + "red": { + "v-rr-120": { + "value": "#ff624d", + "type": "color" + }, + "v-rr-140": { + "value": "#ff0015", + "type": "color" + }, + "v-rr-160": { + "value": "#d90012", + "type": "color" + }, + "v-rr-180": { + "value": "#b3000f", + "type": "color" + } + }, + "pink": { + "v-pk-120": { + "value": "#ff66c2", + "type": "color" + }, + "v-pk-140": { + "value": "#ff19a4", + "type": "color" + }, + "v-pk-160": { + "value": "#d11486", + "type": "color" + }, + "v-pk-180": { + "value": "#c00073", + "type": "color" + } + }, + "violet-red": { + "v-vr-120": { + "value": "#ea80ff", + "type": "color" + }, + "v-vr-140": { + "value": "#dd33ff", + "type": "color" + }, + "v-vr-160": { + "value": "#ac08cc", + "type": "color" + }, + "v-vr-180": { + "value": "#83009e", + "type": "color" + } + }, + "violet": { + "v-vv-120": { + "value": "#b580ff", + "type": "color" + }, + "v-vv-140": { + "value": "#974dff", + "type": "color" + }, + "v-vv-160": { + "value": "#8129ff", + "type": "color" + }, + "v-vv-180": { + "value": "#6a0be6", + "type": "color" + } + } + }, + "dark": { + "green": { + "d-gg-410": { + "value": "#44ED51", + "type": "color" + }, + "d-gg-420": { + "value": "#36DA43", + "type": "color" + }, + "d-gg-430": { + "value": "#36DA43", + "type": "color" + } + }, + "yellow": { + "d-yy-410": { + "value": "#FFE24D", + "type": "color" + }, + "d-yy-420": { + "value": "#FFC900", + "type": "color" + }, + "d-yy-430": { + "value": "#F4B000", + "type": "color" + } + }, + "red": { + "d-rr-410": { + "value": "#FF7465", + "type": "color" + }, + "d-rr-420": { + "value": "#FE583E", + "type": "color" + }, + "d-rr-430": { + "value": "#F3381B", + "type": "color" + } + }, + "blue": { + "d-bb-410": { + "value": "#47BBFF", + "type": "color" + }, + "d-bb-420": { + "value": "#00A0FF", + "type": "color" + }, + "d-bb-430": { + "value": "#0087D7", + "type": "color" + } + } + } + } + }, + "sizing": { + "0": { + "value": "2px", + "type": "sizing" + }, + "1": { + "value": "4px", + "type": "sizing" + }, + "2": { + "value": "6px", + "type": "sizing" + }, + "3": { + "value": "8px", + "type": "sizing" + }, + "4": { + "value": "10px", + "type": "sizing" + }, + "5": { + "value": "12px", + "type": "sizing" + }, + "6": { + "value": "14px", + "type": "sizing" + }, + "7": { + "value": "16px", + "type": "sizing" + }, + "8": { + "value": "20px", + "type": "sizing" + }, + "9": { + "value": "24px", + "type": "sizing" + }, + "10": { + "value": "28px", + "type": "sizing" + }, + "11": { + "value": "32px", + "type": "sizing" + }, + "12": { + "value": "36px", + "type": "sizing" + }, + "13": { + "value": "40px", + "type": "sizing" + }, + "14": { + "value": "44px", + "type": "sizing" + }, + "15": { + "value": "48px", + "type": "sizing" + }, + "16": { + "value": "56px", + "type": "sizing" + }, + "17": { + "value": "64px", + "type": "sizing" + }, + "18": { + "value": "72px", + "type": "sizing" + }, + "19": { + "value": "80px", + "type": "sizing" + }, + "20": { + "value": "96px", + "type": "sizing" + }, + "21": { + "value": "112px", + "type": "sizing" + }, + "22": { + "value": "128px", + "type": "sizing" + }, + "23": { + "value": "144px", + "type": "sizing" + }, + "24": { + "value": "160px", + "type": "sizing" + }, + "25": { + "value": "192px", + "type": "sizing" + }, + "26": { + "value": "224px", + "type": "sizing" + }, + "27": { + "value": "256px", + "type": "sizing" + }, + "28": { + "value": "288px", + "type": "sizing" + }, + "none": { + "value": "0px", + "type": "sizing" + } + }, + "spacing": { + "0": { + "value": "2px", + "type": "spacing" + }, + "1": { + "value": "4px", + "type": "spacing" + }, + "2": { + "value": "6px", + "type": "spacing" + }, + "3": { + "value": "8px", + "type": "spacing" + }, + "4": { + "value": "10px", + "type": "spacing" + }, + "5": { + "value": "12px", + "type": "spacing" + }, + "6": { + "value": "14px", + "type": "spacing" + }, + "7": { + "value": "16px", + "type": "spacing" + }, + "8": { + "value": "20px", + "type": "spacing" + }, + "9": { + "value": "24px", + "type": "spacing" + }, + "10": { + "value": "28px", + "type": "spacing" + }, + "11": { + "value": "32px", + "type": "spacing" + }, + "12": { + "value": "36px", + "type": "spacing" + }, + "13": { + "value": "40px", + "type": "spacing" + }, + "14": { + "value": "44px", + "type": "spacing" + }, + "15": { + "value": "48px", + "type": "spacing" + }, + "16": { + "value": "56px", + "type": "spacing" + }, + "17": { + "value": "64px", + "type": "spacing" + }, + "18": { + "value": "72px", + "type": "spacing" + }, + "19": { + "value": "80px", + "type": "spacing" + }, + "20": { + "value": "96px", + "type": "spacing" + }, + "21": { + "value": "112px", + "type": "spacing" + }, + "22": { + "value": "128px", + "type": "spacing" + }, + "23": { + "value": "144px", + "type": "spacing" + }, + "24": { + "value": "160px", + "type": "spacing" + }, + "25": { + "value": "192px", + "type": "spacing" + }, + "26": { + "value": "224px", + "type": "spacing" + }, + "27": { + "value": "256px", + "type": "spacing" + }, + "28": { + "value": "288px", + "type": "spacing" + }, + "none": { + "value": "0px", + "type": "spacing" + } + }, + "breakpoint": { + "width": { + "xs": { + "value": "476px", + "type": "sizing", + "description": "min-width size" + }, + "sm": { + "value": "768px", + "type": "sizing", + "description": "min-width size" + }, + "md": { + "value": "1152px", + "type": "sizing", + "description": "min-width size" + }, + "lg": { + "value": "1440px", + "type": "sizing", + "description": "min-width size" + } + }, + "margin": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "gutter": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "content": { + "fluid": { + "value": "100%", + "type": "sizing", + "description": "for fluid grid widths" + }, + "fixed": { + "value": "1440px", + "type": "sizing", + "description": "only for lg breakpoint fixed grid width" + } + }, + "cols": { + "xs": { + "value": "6", + "type": "other", + "description": "columns" + }, + "sm": { + "value": "12", + "type": "other", + "description": "columns" + }, + "md": { + "value": "24", + "type": "other", + "description": "columns" + }, + "lg": { + "value": "24", + "type": "other", + "description": "columns" + } + } + }, + "z-index": { + "deep": { + "value": "-999999", + "type": "other" + }, + "default": { + "value": "1", + "type": "other" + }, + "sticky": { + "value": "300", + "type": "other" + }, + "header": { + "value": "400", + "type": "other" + }, + "toast": { + "value": "500", + "type": "other" + }, + "dropdown": { + "value": "600", + "type": "other" + }, + "overlay": { + "value": "700", + "type": "other" + }, + "modal": { + "value": "800", + "type": "other" + }, + "popup": { + "value": "900", + "type": "other" + } + }, + "box-shadow": { + "0": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + }, + "1": { + "value": [ + { + "x": "0", + "y": "2", + "blur": "8", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "4", + "blur": "16", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "2": { + "value": [ + { + "x": "0", + "y": "4", + "blur": "20", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "12", + "blur": "32", + "spread": "-2", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "none": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + } + } + } +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json new file mode 100644 index 00000000000..b195cf841eb --- /dev/null +++ b/tokens/semantic.json @@ -0,0 +1,1673 @@ +{ + "semantic": { + "font": { + "default": { + "light": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "wrap": { + "light": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "hierarchy": { + "display-1": { + "value": "$semantic.font.wrap.regular.8", + "type": "typography" + }, + "display-2": { + "value": "$semantic.font.wrap.regular.7", + "type": "typography" + }, + "heading-1": { + "value": "$semantic.font.wrap.regular.6", + "type": "typography" + }, + "heading-2": { + "value": "$semantic.font.wrap.regular.5", + "type": "typography" + }, + "heading-3": { + "value": "$semantic.font.wrap.regular.4", + "type": "typography" + }, + "heading-4": { + "value": "$semantic.font.wrap.regular.3", + "type": "typography" + }, + "heading-5": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + }, + "heading-6": { + "value": "$semantic.font.wrap.regular.1", + "type": "typography" + }, + "body-1": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "body-2": { + "value": "$semantic.font.wrap.regular.-1", + "type": "typography" + }, + "overline": { + "value": { + "fontFamilies": "$core.font.font-family.primary", + "fontWeights": "$core.font.font-weight.bold", + "fontSizes": "$core.font.font-size.2", + "lineHeights": "$core.font.line-height.fixed.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textCase": "$core.font.text-case.uppercase", + "textDecoration": "$core.font.text-decoration.none", + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.bold", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2" + }, + "type": "typography" + }, + "caption": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + } + } + }, + "border": { + "border-radius": { + "sharp": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "round": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "circular": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "pill": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + } + }, + "ui": { + "border": { + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + } + }, + "color": { + "brand": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$core.color.neutral.blk-005", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-190", + "type": "color" + } + }, + "foreground": { + "1": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-200", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-010", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-210", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-020", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + } + }, + "text": { + "1": { + "light": { + "value": "$core.color.neutral.blk-220", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-000", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-170", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-060", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-140", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-090", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + }, + "link": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + } + }, + "border": { + "1": { + "light": { + "value": "$core.color.neutral.blk-050", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-160", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-040", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-170", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-030", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-180", + "type": "color" + } + }, + "input": { + "light": { + "value": "$core.color.neutral.blk-100", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-130", + "type": "color" + } + } + }, + "info": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + } + }, + "success": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.green.d-gg-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-160", + "type": "color" + } + } + }, + "warning": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.yellow.d-yy-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-160", + "type": "color" + } + } + }, + "danger": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.red.d-rr-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-160", + "type": "color" + } + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-190", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-005", + "type": "color" + } + } + } + } + } +} \ No newline at end of file From 0c2f750b9a98db487ffa9ab6c57d7e40e12c2641 Mon Sep 17 00:00:00 2001 From: BrunoAires <108296750+BrunoAiresUS@users.noreply.github.com> Date: Mon, 7 Nov 2022 15:19:25 +0000 Subject: [PATCH 025/696] input-time --- tokens/$metadata.json | 1 + tokens/$themes.json | 341 ++++++++++++++++--------------- tokens/component/input-time.json | 1 + 3 files changed, 175 insertions(+), 168 deletions(-) create mode 100644 tokens/component/input-time.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 1f420c87f75..8804bfabb6c 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -5,6 +5,7 @@ "component/avatar", "component/checkbox", "component/chip", + "component/input-time", "component/label", "component/loader", "component/radio", diff --git a/tokens/$themes.json b/tokens/$themes.json index ea460666ab4..3f719e2dc5d 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -11,7 +11,8 @@ "brand/light": "enabled", "brand/dark": "disabled", "component/label": "disabled", - "component/tooltip": "disabled" + "component/tooltip": "disabled", + "component/input-time": "disabled" }, "$figmaStyleReferences": {} }, @@ -27,10 +28,178 @@ "brand/light": "disabled", "brand/dark": "enabled", "component/label": "disabled", - "component/tooltip": "disabled" + "component/tooltip": "disabled", + "component/input-time": "disabled" }, "$figmaStyleReferences": {} }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/input-time": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "enabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/input-time": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + } + }, { "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", "name": "Calcite Headless", @@ -49,7 +218,8 @@ "component/radio": "enabled", "component/rating": "enabled", "component/label": "enabled", - "component/tooltip": "enabled" + "component/tooltip": "enabled", + "component/input-time": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -574,170 +744,5 @@ "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } - }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "enabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," - } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "enabled", - "calcite/dark": "disabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", - "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", - "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", - "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", - "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", - "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", - "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", - "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", - "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", - "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", - "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", - "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", - "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", - "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," - } } ] \ No newline at end of file diff --git a/tokens/component/input-time.json b/tokens/component/input-time.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/component/input-time.json @@ -0,0 +1 @@ +{} \ No newline at end of file From 7c4a7c99ff6c2014f1f40f0e2fb623616e89e14c Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 7 Nov 2022 17:00:43 +0100 Subject: [PATCH 026/696] Adding link, progress & pagination tokens --- tokens/$metadata.json | 3 ++ tokens/$themes.json | 25 ++++++++++--- tokens/calcite/dark.json | 2 +- tokens/calcite/light.json | 2 +- tokens/component/link.json | 36 ++++++++++++++++++ tokens/component/pagination.json | 64 ++++++++++++++++++++++++++++++++ tokens/component/progress.json | 50 +++++++++++++++++++++++++ 7 files changed, 175 insertions(+), 7 deletions(-) create mode 100644 tokens/component/link.json create mode 100644 tokens/component/pagination.json create mode 100644 tokens/component/progress.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 1f420c87f75..ebe00edbdd8 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -6,7 +6,10 @@ "component/checkbox", "component/chip", "component/label", + "component/link", "component/loader", + "component/pagination", + "component/progress", "component/radio", "component/rating", "component/tooltip", diff --git a/tokens/$themes.json b/tokens/$themes.json index ea460666ab4..c602803f4a3 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -11,7 +11,10 @@ "brand/light": "enabled", "brand/dark": "disabled", "component/label": "disabled", - "component/tooltip": "disabled" + "component/tooltip": "disabled", + "component/link": "disabled", + "component/progress": "disabled", + "component/pagination": "disabled" }, "$figmaStyleReferences": {} }, @@ -27,7 +30,10 @@ "brand/light": "disabled", "brand/dark": "enabled", "component/label": "disabled", - "component/tooltip": "disabled" + "component/tooltip": "disabled", + "component/link": "disabled", + "component/progress": "disabled", + "component/pagination": "disabled" }, "$figmaStyleReferences": {} }, @@ -49,7 +55,10 @@ "component/radio": "enabled", "component/rating": "enabled", "component/label": "enabled", - "component/tooltip": "enabled" + "component/tooltip": "enabled", + "component/link": "disabled", + "component/progress": "disabled", + "component/pagination": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -593,7 +602,10 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/link": "disabled", + "component/progress": "disabled", + "component/pagination": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -674,7 +686,10 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/link": "disabled", + "component/progress": "disabled", + "component/pagination": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index e1cc07b9541..6769a6d3178 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -329,7 +329,7 @@ }, "label": { "font": { - "value": "$label.font.dark", + "value": "{pagination.font.dark}", "type": "color" } }, diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 40c45879c37..5324bcec53a 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -329,7 +329,7 @@ }, "label": { "font": { - "value": "$label.font.light", + "value": "{pagination.font.light}", "type": "color" } }, diff --git a/tokens/component/link.json b/tokens/component/link.json new file mode 100644 index 00000000000..427c1a3101a --- /dev/null +++ b/tokens/component/link.json @@ -0,0 +1,36 @@ +{ + "link": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "icon": { + "light": { + "value": "{semantic.ui.color.text.link.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.link.dark}", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json new file mode 100644 index 00000000000..6cdf95df6b8 --- /dev/null +++ b/tokens/component/pagination.json @@ -0,0 +1,64 @@ +{ + "pagination": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "border-bottom": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/progress.json b/tokens/component/progress.json new file mode 100644 index 00000000000..2d222db3415 --- /dev/null +++ b/tokens/component/progress.json @@ -0,0 +1,50 @@ +{ + "progress": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "background": { + "track": { + "idle": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file From b5761fc7c60a74492f75734a820358a95d354eac Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 7 Nov 2022 17:08:36 +0100 Subject: [PATCH 027/696] Update to pagination colors --- tokens/calcite/dark.json | 2 +- tokens/calcite/light.json | 2 +- tokens/component/pagination.json | 24 ++++++++++++++++++------ 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 6769a6d3178..8d6c908e931 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -329,7 +329,7 @@ }, "label": { "font": { - "value": "{pagination.font.dark}", + "value": "{pagination.font.inactive.dark}", "type": "color" } }, diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 5324bcec53a..9c39c05256b 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -329,7 +329,7 @@ }, "label": { "font": { - "value": "{pagination.font.light}", + "value": "{pagination.font.active.light}", "type": "color" } }, diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json index 6cdf95df6b8..d6d4d06a075 100644 --- a/tokens/component/pagination.json +++ b/tokens/component/pagination.json @@ -13,13 +13,25 @@ "value": "$semantic.font.default.regular.0h", "type": "typography" }, - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" + "inactive": { + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + } } }, "icon": { From f16e12a5dc756c2fda51532e67013befdfdd0307 Mon Sep 17 00:00:00 2001 From: BrunoAiresUS Date: Mon, 7 Nov 2022 17:00:22 +0000 Subject: [PATCH 028/696] templates --- tokens/component/[template-comp-name].json | 90 ++++++++++++++++++++++ tokens/component/chip.json | 8 +- 2 files changed, 93 insertions(+), 5 deletions(-) create mode 100644 tokens/component/[template-comp-name].json diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json new file mode 100644 index 00000000000..b94c7511bcc --- /dev/null +++ b/tokens/component/[template-comp-name].json @@ -0,0 +1,90 @@ +{ + "[comp-name]": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + } + } + } \ No newline at end of file diff --git a/tokens/component/chip.json b/tokens/component/chip.json index 6d5b1bde371..3b9b021bff9 100644 --- a/tokens/component/chip.json +++ b/tokens/component/chip.json @@ -231,7 +231,7 @@ "value": "$semantic.ui.color.text.3.dark", "type": "color" }, - "space-arround": { + "space-around": { "sm": { "value": "$core.spacing.1", "type": "spacing" @@ -300,7 +300,7 @@ } } }, - "comp-height": { + "comp-size": { "sm": { "value": "$core.sizing.9", "type": "sizing" @@ -314,7 +314,7 @@ "type": "sizing" } }, - "space-arround": { + "space-around": { "sm": { "value": "$core.spacing.3", "type": "spacing" @@ -343,10 +343,8 @@ } }, "border-width": { - "standard": { "value": "$core.border.border-width.0", "type": "borderWidth" - } } } } \ No newline at end of file From e6a271a621f1873f59dc716057d8a4b0f7e51e5c Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 7 Nov 2022 17:14:54 +0000 Subject: [PATCH 029/696] new branch added --- tokens/$metadata.json | 5 +++++ tokens/$themes.json | 1 + tokens/global.json | 1 + 3 files changed, 7 insertions(+) create mode 100644 tokens/$metadata.json create mode 100644 tokens/$themes.json create mode 100644 tokens/global.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json new file mode 100644 index 00000000000..74cad535f24 --- /dev/null +++ b/tokens/$metadata.json @@ -0,0 +1,5 @@ +{ + "tokenSetOrder": [ + "global" + ] +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json new file mode 100644 index 00000000000..0637a088a01 --- /dev/null +++ b/tokens/$themes.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/tokens/global.json b/tokens/global.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/global.json @@ -0,0 +1 @@ +{} \ No newline at end of file From 6a7c09cd41e16321fcb6fb0d15ea84fd0e4587b7 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 7 Nov 2022 17:16:19 +0000 Subject: [PATCH 030/696] updating my branch with the design tokens --- tokens/$metadata.json | 18 +- tokens/$themes.json | 749 ++++++++- tokens/{global.json => brand/dark.json} | 0 tokens/brand/global.json | 1 + tokens/brand/light.json | 20 + tokens/calcite/dark.json | 412 +++++ tokens/calcite/light.json | 412 +++++ tokens/component/[template-comp-name].json | 90 ++ tokens/component/avatar.json | 140 ++ tokens/component/checkbox.json | 110 ++ tokens/component/chip.json | 350 ++++ tokens/component/input-time.json | 1 + tokens/component/label.json | 26 + tokens/component/loader.json | 130 ++ tokens/component/radio.json | 124 ++ tokens/component/rating.json | 243 +++ tokens/component/tooltip.json | 66 + tokens/core.json | 1696 ++++++++++++++++++++ tokens/semantic.json | 1673 +++++++++++++++++++ 19 files changed, 6259 insertions(+), 2 deletions(-) rename tokens/{global.json => brand/dark.json} (100%) create mode 100644 tokens/brand/global.json create mode 100644 tokens/brand/light.json create mode 100644 tokens/calcite/dark.json create mode 100644 tokens/calcite/light.json create mode 100644 tokens/component/[template-comp-name].json create mode 100644 tokens/component/avatar.json create mode 100644 tokens/component/checkbox.json create mode 100644 tokens/component/chip.json create mode 100644 tokens/component/input-time.json create mode 100644 tokens/component/label.json create mode 100644 tokens/component/loader.json create mode 100644 tokens/component/radio.json create mode 100644 tokens/component/rating.json create mode 100644 tokens/component/tooltip.json create mode 100644 tokens/core.json create mode 100644 tokens/semantic.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 74cad535f24..14ea9f27498 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -1,5 +1,21 @@ { "tokenSetOrder": [ - "global" + "core", + "semantic", + "component/avatar", + "component/checkbox", + "component/chip", + "component/input-time", + "component/label", + "component/loader", + "component/radio", + "component/rating", + "component/tooltip", + "calcite/light", + "calcite/dark", + "brand/global", + "brand/light", + "brand/dark", + "component/[template-comp-name]" ] } \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index 0637a088a01..3f719e2dc5d 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -1 +1,748 @@ -[] \ No newline at end of file +[ + { + "id": "59a65f6d4a3657738c9d46d61315ae0b6fc6e9fd", + "name": "Brand - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "enabled", + "brand/dark": "disabled", + "component/label": "disabled", + "component/tooltip": "disabled", + "component/input-time": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "d7056b4e805091c91b5ec1b6ce901ba3d606e7a8", + "name": "Brand - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "disabled", + "brand/dark": "enabled", + "component/label": "disabled", + "component/tooltip": "disabled", + "component/input-time": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/input-time": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "enabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/input-time": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + } + }, + { + "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", + "name": "Calcite Headless", + "selectedTokenSets": { + "core": "enabled", + "semantic": "enabled", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/avatar": "enabled", + "component/checkbox": "enabled", + "component/chip": "enabled", + "component/loader": "enabled", + "component/radio": "enabled", + "component/rating": "enabled", + "component/label": "enabled", + "component/tooltip": "enabled", + "component/input-time": "enabled" + }, + "$figmaStyleReferences": { + "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", + "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", + "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", + "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", + "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", + "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", + "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", + "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", + "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", + "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", + "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", + "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", + "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", + "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", + "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", + "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", + "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", + "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", + "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", + "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", + "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", + "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", + "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", + "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", + "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", + "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", + "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", + "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", + "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", + "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", + "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", + "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", + "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", + "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", + "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", + "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", + "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", + "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", + "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", + "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", + "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", + "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", + "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", + "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", + "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", + "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", + "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", + "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", + "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", + "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", + "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", + "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", + "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", + "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", + "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", + "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", + "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", + "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", + "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", + "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", + "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", + "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", + "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", + "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", + "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", + "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", + "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", + "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", + "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", + "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", + "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", + "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", + "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", + "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", + "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", + "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", + "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", + "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", + "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", + "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", + "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", + "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", + "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", + "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", + "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", + "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", + "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", + "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", + "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", + "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", + "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", + "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", + "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", + "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", + "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", + "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", + "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", + "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", + "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", + "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", + "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", + "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", + "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", + "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", + "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", + "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", + "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", + "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", + "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", + "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", + "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", + "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", + "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", + "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", + "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", + "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", + "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", + "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", + "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", + "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", + "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", + "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", + "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", + "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", + "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", + "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", + "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", + "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", + "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", + "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", + "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", + "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", + "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", + "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", + "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", + "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", + "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", + "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", + "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", + "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", + "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", + "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", + "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", + "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", + "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", + "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", + "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", + "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", + "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", + "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", + "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", + "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", + "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", + "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", + "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", + "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", + "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", + "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", + "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", + "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", + "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", + "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", + "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", + "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", + "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", + "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", + "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", + "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", + "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", + "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", + "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", + "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", + "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", + "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", + "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", + "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", + "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", + "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", + "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", + "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", + "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", + "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", + "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", + "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", + "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", + "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", + "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", + "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", + "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", + "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", + "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", + "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", + "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", + "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", + "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", + "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", + "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", + "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", + "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", + "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", + "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", + "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", + "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", + "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", + "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", + "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", + "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", + "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", + "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", + "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", + "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", + "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", + "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", + "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", + "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", + "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", + "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", + "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", + "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", + "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", + "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", + "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", + "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", + "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", + "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", + "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", + "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", + "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", + "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", + "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", + "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", + "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", + "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", + "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", + "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", + "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", + "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", + "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", + "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", + "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", + "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", + "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", + "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", + "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", + "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", + "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", + "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", + "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", + "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", + "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", + "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", + "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", + "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", + "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", + "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", + "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", + "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", + "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", + "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", + "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", + "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", + "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", + "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", + "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", + "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", + "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", + "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", + "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", + "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", + "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", + "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", + "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", + "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", + "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", + "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", + "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", + "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", + "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", + "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", + "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", + "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", + "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", + "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", + "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", + "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", + "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", + "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", + "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", + "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", + "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", + "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", + "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", + "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", + "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", + "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", + "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", + "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", + "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", + "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", + "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", + "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", + "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", + "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", + "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", + "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", + "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", + "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", + "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", + "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", + "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", + "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", + "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", + "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", + "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", + "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", + "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", + "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", + "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", + "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", + "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", + "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", + "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", + "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", + "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", + "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", + "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", + "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", + "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", + "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", + "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", + "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", + "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", + "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", + "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", + "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", + "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", + "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", + "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", + "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", + "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", + "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", + "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", + "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", + "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", + "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", + "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", + "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", + "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", + "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", + "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", + "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", + "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", + "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", + "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", + "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", + "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", + "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", + "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", + "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", + "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", + "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", + "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", + "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", + "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", + "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", + "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", + "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", + "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", + "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", + "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", + "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", + "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", + "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", + "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", + "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", + "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", + "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", + "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", + "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", + "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", + "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", + "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", + "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", + "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", + "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", + "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", + "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", + "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", + "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", + "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", + "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", + "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", + "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", + "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", + "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", + "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", + "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", + "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", + "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", + "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", + "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", + "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", + "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", + "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", + "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", + "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", + "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", + "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", + "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", + "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", + "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", + "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", + "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", + "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", + "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", + "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", + "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", + "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", + "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", + "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", + "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", + "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", + "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", + "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", + "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", + "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", + "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", + "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", + "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", + "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", + "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", + "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", + "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", + "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", + "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", + "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", + "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", + "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", + "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", + "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", + "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", + "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", + "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", + "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", + "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", + "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", + "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", + "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", + "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", + "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", + "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", + "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", + "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", + "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", + "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", + "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", + "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", + "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", + "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", + "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", + "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", + "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", + "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", + "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", + "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", + "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", + "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", + "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", + "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", + "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", + "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", + "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", + "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", + "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", + "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", + "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", + "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", + "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", + "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", + "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", + "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", + "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", + "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", + "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", + "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", + "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", + "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", + "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", + "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", + "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", + "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", + "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", + "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", + "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", + "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", + "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", + "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", + "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", + "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", + "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", + "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", + "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", + "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", + "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", + "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", + "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", + "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", + "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", + "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", + "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", + "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", + "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", + "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", + "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", + "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", + "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", + "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", + "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", + "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," + } + } +] \ No newline at end of file diff --git a/tokens/global.json b/tokens/brand/dark.json similarity index 100% rename from tokens/global.json rename to tokens/brand/dark.json diff --git a/tokens/brand/global.json b/tokens/brand/global.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/brand/global.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/brand/light.json b/tokens/brand/light.json new file mode 100644 index 00000000000..a55d3c5bc32 --- /dev/null +++ b/tokens/brand/light.json @@ -0,0 +1,20 @@ +{ + "core": { + "font": { + "font-size": { + "6": { + "value": "26px", + "type": "fontSizes" + } + } + } + }, + "breakpoint": { + "width": { + "lg": { + "value": "$core.breakpoint.width.lg", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json new file mode 100644 index 00000000000..e1cc07b9541 --- /dev/null +++ b/tokens/calcite/dark.json @@ -0,0 +1,412 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.dark", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.dark", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.dark", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.dark", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.dark", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.dark", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.dark", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.dark", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.dark", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.dark", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.dark", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.dark", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.dark", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.dark", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.dark", + "type": "color" + }, + "border": { + "value": "$checkbox.border.dark", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.dark", + "type": "color" + }, + "background": { + "value": "$radio.background.dark", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.dark", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.dark", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.dark", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.dark", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.dark", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.dark", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.dark", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.dark", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.dark", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.dark", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.dark", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.dark", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.dark", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.dark", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.dark", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.dark", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.dark", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.dark", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.dark", + "type": "color" + }, + "border": { + "value": "$tooltip.border.dark", + "type": "color" + }, + "font": { + "value": "$tooltip.font.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json new file mode 100644 index 00000000000..40c45879c37 --- /dev/null +++ b/tokens/calcite/light.json @@ -0,0 +1,412 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.light", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.light", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.light", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.light", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.light", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.light", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.light", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.light", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.light", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.light", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.light", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.light", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.light", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.light", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.light", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.light", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.light", + "type": "color" + }, + "border": { + "value": "$checkbox.border.light", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.light", + "type": "color" + }, + "background": { + "value": "$radio.background.light", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.light", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.light", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.light", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.light", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.light", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.light", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.light", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.light", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.light", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.light", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.light", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.light", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.light", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.light", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.light", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.light", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.light", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.light", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.light", + "type": "color" + }, + "border": { + "value": "$tooltip.border.light", + "type": "color" + }, + "font": { + "value": "$tooltip.font.light", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json new file mode 100644 index 00000000000..d154f674eef --- /dev/null +++ b/tokens/component/[template-comp-name].json @@ -0,0 +1,90 @@ +{ + "[comp-name]": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json new file mode 100644 index 00000000000..5694023e615 --- /dev/null +++ b/tokens/component/avatar.json @@ -0,0 +1,140 @@ +{ + "avatar": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.red.h-rr-090", + "type": "color" + } + }, + "teal": { + "light": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + } + }, + "green": { + "light": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-100", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json new file mode 100644 index 00000000000..df0ecbad9de --- /dev/null +++ b/tokens/component/checkbox.json @@ -0,0 +1,110 @@ +{ + "checkbox": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "selected": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "standard": { + "value": "$core.sizing.5", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/chip.json b/tokens/component/chip.json new file mode 100644 index 00000000000..65914eb59f6 --- /dev/null +++ b/tokens/component/chip.json @@ -0,0 +1,350 @@ +{ + "chip": { + "font": { + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "closable-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "space-around": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "border": { + "clear": { + "grey": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } +} \ No newline at end of file diff --git a/tokens/component/input-time.json b/tokens/component/input-time.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/component/input-time.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/component/label.json b/tokens/component/label.json new file mode 100644 index 00000000000..b658a3053ad --- /dev/null +++ b/tokens/component/label.json @@ -0,0 +1,26 @@ +{ + "label": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/loader.json b/tokens/component/loader.json new file mode 100644 index 00000000000..cdba53194b9 --- /dev/null +++ b/tokens/component/loader.json @@ -0,0 +1,130 @@ +{ + "loader": { + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "text": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "value-text": { + "sm": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "md": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + } + } + }, + "default": { + "comp-size": { + "sm": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.17", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.20", + "type": "sizing" + } + }, + "space-between": { + "standard": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inline": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "foreground": { + "indeterminate": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "determinate": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/radio.json b/tokens/component/radio.json new file mode 100644 index 00000000000..8c72a63238d --- /dev/null +++ b/tokens/component/radio.json @@ -0,0 +1,124 @@ +{ + "radio": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "border-width": { + "unchecked": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "checked": { + "sm": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.3", + "type": "borderWidth" + } + } + }, + "border": { + "unchecked": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/rating.json b/tokens/component/rating.json new file mode 100644 index 00000000000..c6c40e58835 --- /dev/null +++ b/tokens/component/rating.json @@ -0,0 +1,243 @@ +{ + "rating": { + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "chip": { + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "value-text": { + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "count": { + "font": { + "sm": { + "value": { + "typography": "$rating.chip.value-text.font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$rating.chip.value-text.font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$rating.chip.value-text.font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "star": { + "comp-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "average": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "star-container": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.2", + "type": "spacing" + } + } + }, + "average": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "chip": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json new file mode 100644 index 00000000000..51d50bce707 --- /dev/null +++ b/tokens/component/tooltip.json @@ -0,0 +1,66 @@ +{ + "tooltip": { + "space-arround": { + "top-bottom": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "left-right": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "standard": { + "value": "$semantic.font.wrap.medium.-2", + "type": "typography" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "arrow": { + "width": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "height": { + "value": "$core.sizing.2", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json new file mode 100644 index 00000000000..f697f4387a2 --- /dev/null +++ b/tokens/core.json @@ -0,0 +1,1696 @@ +{ + "core": { + "font": { + "font-family": { + "primary": { + "value": "Avenir Next LT Pro", + "type": "fontFamilies" + }, + "secondary": { + "value": "Avenir Next World", + "type": "fontFamilies" + }, + "code": { + "value": "Monaco", + "type": "fontFamilies" + } + }, + "font-weight": { + "ultralight": { + "value": "UltraLight", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "thin": { + "value": "Thin", + "type": "fontWeights" + }, + "light": { + "value": "Light", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "regular": { + "value": "Regular", + "type": "fontWeights" + }, + "medium": { + "value": "Medium", + "type": "fontWeights" + }, + "medium-italic": { + "value": "Medium Italic", + "type": "fontWeights" + }, + "demi": { + "value": "Demi", + "type": "fontWeights" + }, + "bold": { + "value": "Bold", + "type": "fontWeights" + }, + "extrabold": { + "value": "ExtraBold", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "black": { + "value": "Black", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "heavy": { + "value": "Heavy", + "type": "fontWeights" + } + }, + "line-height": { + "fixed": { + "0": { + "value": "12px", + "type": "lineHeights" + }, + "1": { + "value": "16px", + "type": "lineHeights" + }, + "2": { + "value": "20px", + "type": "lineHeights" + }, + "3": { + "value": "24px", + "type": "lineHeights" + }, + "4": { + "value": "28px", + "type": "lineHeights" + }, + "5": { + "value": "32px", + "type": "lineHeights" + }, + "6": { + "value": "36px", + "type": "lineHeights" + }, + "7": { + "value": "40px", + "type": "lineHeights" + }, + "8": { + "value": "48px", + "type": "lineHeights" + }, + "9": { + "value": "56px", + "type": "lineHeights" + }, + "10": { + "value": "64px", + "type": "lineHeights" + }, + "11": { + "value": "72px", + "type": "lineHeights" + }, + "12": { + "value": "80px", + "type": "lineHeights" + } + }, + "relative": { + "default": { + "value": "auto", + "type": "lineHeights", + "description": "1" + }, + "tight": { + "value": "125%", + "type": "lineHeights", + "description": "1.25" + }, + "snug": { + "value": "137.5%", + "type": "lineHeights", + "description": "1.375" + }, + "normal": { + "value": "150%", + "type": "lineHeights", + "description": "1.5" + }, + "relaxed": { + "value": "162.5%", + "type": "lineHeights", + "description": "1.625" + }, + "loose": { + "value": "200%", + "type": "lineHeights", + "description": "2" + } + } + }, + "font-size": { + "0": { + "value": "10px", + "type": "fontSizes" + }, + "1": { + "value": "12px", + "type": "fontSizes" + }, + "2": { + "value": "14px", + "type": "fontSizes" + }, + "3": { + "value": "16px", + "type": "fontSizes" + }, + "4": { + "value": "18px", + "type": "fontSizes" + }, + "5": { + "value": "20px", + "type": "fontSizes" + }, + "6": { + "value": "24px", + "type": "fontSizes" + }, + "7": { + "value": "32px", + "type": "fontSizes" + }, + "8": { + "value": "40px", + "type": "fontSizes" + }, + "9": { + "value": "48px", + "type": "fontSizes" + }, + "10": { + "value": "56px", + "type": "fontSizes" + }, + "11": { + "value": "64px", + "type": "fontSizes" + }, + "12": { + "value": "72px", + "type": "fontSizes" + }, + "13": { + "value": "80px", + "type": "fontSizes" + }, + "14": { + "value": "96px", + "type": "fontSizes" + }, + "15": { + "value": "120px", + "type": "fontSizes" + } + }, + "letter-spacing": { + "tight": { + "value": "-0.4px", + "type": "letterSpacing" + }, + "normal": { + "value": "0px", + "type": "letterSpacing" + }, + "wide": { + "value": "0.4px", + "type": "letterSpacing" + } + }, + "paragraph-spacing": { + "normal": { + "value": "10px", + "type": "paragraphSpacing" + } + }, + "text-decoration": { + "none": { + "value": "none", + "type": "textDecoration" + }, + "underline": { + "value": "underline", + "type": "textDecoration" + } + }, + "text-case": { + "none": { + "value": "none", + "type": "textCase" + }, + "uppercase": { + "value": "uppercase", + "type": "textCase" + }, + "lowercase": { + "value": "lowercase", + "type": "textCase" + }, + "capitalize": { + "value": "capitalize", + "type": "textCase" + } + } + }, + "border": { + "border-radius": { + "0": { + "value": "2px", + "type": "borderRadius" + }, + "1": { + "value": "4px", + "type": "borderRadius" + }, + "2": { + "value": "6px", + "type": "borderRadius" + }, + "3": { + "value": "8px", + "type": "borderRadius" + }, + "4": { + "value": "12px", + "type": "borderRadius" + }, + "5": { + "value": "16px", + "type": "borderRadius" + }, + "6": { + "value": "24px", + "type": "borderRadius" + }, + "none": { + "value": "0px", + "type": "borderRadius" + }, + "half": { + "value": "50%", + "type": "borderRadius" + }, + "full": { + "value": "9999px", + "type": "borderRadius" + } + }, + "border-width": { + "0": { + "value": "1px", + "type": "borderWidth" + }, + "1": { + "value": "2px", + "type": "borderWidth" + }, + "2": { + "value": "4px", + "type": "borderWidth" + }, + "3": { + "value": "6px", + "type": "borderWidth" + }, + "4": { + "value": "8px", + "type": "borderWidth" + }, + "none": { + "value": "0px", + "type": "borderWidth" + } + } + }, + "opacity": { + "0": { + "value": "0%", + "type": "opacity" + }, + "4": { + "value": "4%", + "type": "opacity" + }, + "8": { + "value": "8%", + "type": "opacity" + }, + "10": { + "value": "10%", + "type": "opacity" + }, + "20": { + "value": "20%", + "type": "opacity" + }, + "30": { + "value": "30%", + "type": "opacity" + }, + "40": { + "value": "40%", + "type": "opacity" + }, + "50": { + "value": "50%", + "type": "opacity" + }, + "60": { + "value": "60%", + "type": "opacity" + }, + "70": { + "value": "70%", + "type": "opacity" + }, + "80": { + "value": "80%", + "type": "opacity" + }, + "90": { + "value": "90%", + "type": "opacity" + }, + "92": { + "value": "92%", + "type": "opacity" + }, + "96": { + "value": "96%", + "type": "opacity" + }, + "100": { + "value": "100%", + "type": "opacity" + } + }, + "color": { + "neutral": { + "blk-000": { + "value": "#ffffff", + "type": "color" + }, + "blk-005": { + "value": "#f8f8f8", + "type": "color" + }, + "blk-010": { + "value": "#f3f3f3", + "type": "color" + }, + "blk-020": { + "value": "#eaeaea", + "type": "color" + }, + "blk-030": { + "value": "#dfdfdf", + "type": "color" + }, + "blk-040": { + "value": "#d4d4d4", + "type": "color" + }, + "blk-050": { + "value": "#cacaca", + "type": "color" + }, + "blk-060": { + "value": "#bfbfbf", + "type": "color" + }, + "blk-070": { + "value": "#b5b5b5", + "type": "color" + }, + "blk-080": { + "value": "#aaaaaa", + "type": "color" + }, + "blk-090": { + "value": "#9f9f9f", + "type": "color" + }, + "blk-100": { + "value": "#949494", + "type": "color" + }, + "blk-110": { + "value": "#8a8a8a", + "type": "color" + }, + "blk-120": { + "value": "#808080", + "type": "color" + }, + "blk-130": { + "value": "#757575", + "type": "color" + }, + "blk-140": { + "value": "#6a6a6a", + "type": "color" + }, + "blk-150": { + "value": "#606060", + "type": "color" + }, + "blk-160": { + "value": "#555555", + "type": "color" + }, + "blk-170": { + "value": "#4a4a4a", + "type": "color" + }, + "blk-180": { + "value": "#404040", + "type": "color" + }, + "blk-190": { + "value": "#353535", + "type": "color" + }, + "blk-200": { + "value": "#2b2b2b", + "type": "color" + }, + "blk-210": { + "value": "#202020", + "type": "color" + }, + "blk-220": { + "value": "#151515", + "type": "color" + }, + "blk-230": { + "value": "#0b0b0b", + "type": "color" + }, + "blk-235": { + "value": "#060606", + "type": "color" + }, + "blk-240": { + "value": "#000000", + "type": "color" + } + }, + "palette": { + "high-saturation": { + "blue": { + "h-bb-010": { + "value": "#c7eaff", + "type": "color" + }, + "h-bb-020": { + "value": "#9fd4f3", + "type": "color" + }, + "h-bb-030": { + "value": "#77bde7", + "type": "color" + }, + "h-bb-040": { + "value": "#50a7da", + "type": "color" + }, + "h-bb-050": { + "value": "#2890ce", + "type": "color" + }, + "h-bb-060": { + "value": "#007ac2", + "type": "color" + }, + "h-bb-070": { + "value": "#00619b", + "type": "color" + }, + "h-bb-080": { + "value": "#004874", + "type": "color" + }, + "h-bb-090": { + "value": "#00304d", + "type": "color" + }, + "h-bb-100": { + "value": "#001726", + "type": "color" + } + }, + "green-blue": { + "h-gb-010": { + "value": "#cef5f4", + "type": "color" + }, + "h-gb-020": { + "value": "#afedec", + "type": "color" + }, + "h-gb-030": { + "value": "#8fe6e5", + "type": "color" + }, + "h-gb-040": { + "value": "#5ae0de", + "type": "color" + }, + "h-gb-050": { + "value": "#28cecb", + "type": "color" + }, + "h-gb-060": { + "value": "#00bab5", + "type": "color" + }, + "h-gb-070": { + "value": "#009b98", + "type": "color" + }, + "h-gb-080": { + "value": "#007472", + "type": "color" + }, + "h-gb-090": { + "value": "#004d4c", + "type": "color" + }, + "h-gb-100": { + "value": "#002625", + "type": "color" + } + }, + "green": { + "h-gg-010": { + "value": "#bdf2c4", + "type": "color" + }, + "h-gg-020": { + "value": "#a2e4ab", + "type": "color" + }, + "h-gg-030": { + "value": "#87d692", + "type": "color" + }, + "h-gg-040": { + "value": "#6bc878", + "type": "color" + }, + "h-gg-050": { + "value": "#50ba5f", + "type": "color" + }, + "h-gg-060": { + "value": "#35ac46", + "type": "color" + }, + "h-gg-070": { + "value": "#288835", + "type": "color" + }, + "h-gg-080": { + "value": "#1a6324", + "type": "color" + }, + "h-gg-090": { + "value": "#0d3f14", + "type": "color" + }, + "h-gg-100": { + "value": "#001a03", + "type": "color" + } + }, + "yellow-green": { + "h-yg-010": { + "value": "#e5f7b4", + "type": "color" + }, + "h-yg-020": { + "value": "#d9ef9f", + "type": "color" + }, + "h-yg-030": { + "value": "#cde78a", + "type": "color" + }, + "h-yg-040": { + "value": "#c2e075", + "type": "color" + }, + "h-yg-050": { + "value": "#b6d860", + "type": "color" + }, + "h-yg-060": { + "value": "#aad04b", + "type": "color" + }, + "h-yg-070": { + "value": "#84a338", + "type": "color" + }, + "h-yg-080": { + "value": "#5e7526", + "type": "color" + }, + "h-yg-090": { + "value": "#384813", + "type": "color" + }, + "h-yg-100": { + "value": "#121a00", + "type": "color" + } + }, + "yellow": { + "h-yy-010": { + "value": "#fff7cc", + "type": "color" + }, + "h-yy-020": { + "value": "#fef3ad", + "type": "color" + }, + "h-yy-030": { + "value": "#fcee8d", + "type": "color" + }, + "h-yy-040": { + "value": "#fbea6e", + "type": "color" + }, + "h-yy-050": { + "value": "#f9e54e", + "type": "color" + }, + "h-yy-060": { + "value": "#edd317", + "type": "color" + }, + "h-yy-070": { + "value": "#d9bc00", + "type": "color" + }, + "h-yy-080": { + "value": "#bfa200", + "type": "color" + }, + "h-yy-090": { + "value": "#8c7500", + "type": "color" + }, + "h-yy-100": { + "value": "#5c4e00", + "type": "color" + } + }, + "orange-yellow": { + "h-oy-010": { + "value": "#ffe2bf", + "type": "color" + }, + "h-oy-020": { + "value": "#fed3a1", + "type": "color" + }, + "h-oy-030": { + "value": "#fcc582", + "type": "color" + }, + "h-oy-040": { + "value": "#fbb664", + "type": "color" + }, + "h-oy-050": { + "value": "#f9a845", + "type": "color" + }, + "h-oy-060": { + "value": "#f89927", + "type": "color" + }, + "h-oy-070": { + "value": "#c67718", + "type": "color" + }, + "h-oy-080": { + "value": "#9a5b10", + "type": "color" + }, + "h-oy-090": { + "value": "#6d3f08", + "type": "color" + }, + "h-oy-100": { + "value": "#402300", + "type": "color" + } + }, + "orange": { + "h-oo-010": { + "value": "#ffd8bf", + "type": "color" + }, + "h-oo-020": { + "value": "#fdc39f", + "type": "color" + }, + "h-oo-030": { + "value": "#faae7f", + "type": "color" + }, + "h-oo-040": { + "value": "#f89960", + "type": "color" + }, + "h-oo-050": { + "value": "#f58440", + "type": "color" + }, + "h-oo-060": { + "value": "#f36f20", + "type": "color" + }, + "h-oo-070": { + "value": "#c65a18", + "type": "color" + }, + "h-oo-080": { + "value": "#9a4410", + "type": "color" + }, + "h-oo-090": { + "value": "#6d2f08", + "type": "color" + }, + "h-oo-100": { + "value": "#401900", + "type": "color" + } + }, + "red-orange": { + "h-ro-010": { + "value": "#ffc7b3", + "type": "color" + }, + "h-ro-020": { + "value": "#f8af95", + "type": "color" + }, + "h-ro-030": { + "value": "#f09677", + "type": "color" + }, + "h-ro-040": { + "value": "#e97e5a", + "type": "color" + }, + "h-ro-050": { + "value": "#e1653c", + "type": "color" + }, + "h-ro-060": { + "value": "#da4d1e", + "type": "color" + }, + "h-ro-070": { + "value": "#ad3c16", + "type": "color" + }, + "h-ro-080": { + "value": "#802c0f", + "type": "color" + }, + "h-ro-090": { + "value": "#531b07", + "type": "color" + }, + "h-ro-100": { + "value": "#260a00", + "type": "color" + } + }, + "red": { + "h-rr-010": { + "value": "#ffc6bf", + "type": "color" + }, + "h-rr-020": { + "value": "#ffaaa1", + "type": "color" + }, + "h-rr-030": { + "value": "#f2877b", + "type": "color" + }, + "h-rr-040": { + "value": "#f07062", + "type": "color" + }, + "h-rr-050": { + "value": "#e65240", + "type": "color" + }, + "h-rr-060": { + "value": "#d83020", + "type": "color" + }, + "h-rr-070": { + "value": "#a82b1e", + "type": "color" + }, + "h-rr-080": { + "value": "#7c1d13", + "type": "color" + }, + "h-rr-090": { + "value": "#4f0e08", + "type": "color" + }, + "h-rr-100": { + "value": "#210300", + "type": "color" + } + }, + "pink": { + "h-pk-010": { + "value": "#ffd1ef", + "type": "color" + }, + "h-pk-020": { + "value": "#fabee4", + "type": "color" + }, + "h-pk-030": { + "value": "#f2a5d6", + "type": "color" + }, + "h-pk-040": { + "value": "#eb8dc9", + "type": "color" + }, + "h-pk-050": { + "value": "#e673bb", + "type": "color" + }, + "h-pk-060": { + "value": "#e04ea6", + "type": "color" + }, + "h-pk-070": { + "value": "#ba2f7e", + "type": "color" + }, + "h-pk-080": { + "value": "#851b52", + "type": "color" + }, + "h-pk-090": { + "value": "#590b32", + "type": "color" + }, + "h-pk-100": { + "value": "#260404", + "type": "color" + } + }, + "violet-red": { + "h-vr-010": { + "value": "#fadbff", + "type": "color" + }, + "h-vr-020": { + "value": "#e4beeb", + "type": "color" + }, + "h-vr-030": { + "value": "#cfa1d7", + "type": "color" + }, + "h-vr-040": { + "value": "#b983c3", + "type": "color" + }, + "h-vr-050": { + "value": "#a466af", + "type": "color" + }, + "h-vr-060": { + "value": "#8e499b", + "type": "color" + }, + "h-vr-070": { + "value": "#73377e", + "type": "color" + }, + "h-vr-080": { + "value": "#572561", + "type": "color" + }, + "h-vr-090": { + "value": "#3c1243", + "type": "color" + }, + "h-vr-100": { + "value": "#200026", + "type": "color" + } + }, + "violet": { + "h-vv-010": { + "value": "#e8d9ff", + "type": "color" + }, + "h-vv-020": { + "value": "#cdb9eb", + "type": "color" + }, + "h-vv-030": { + "value": "#b39ad7", + "type": "color" + }, + "h-vv-040": { + "value": "#987ac3", + "type": "color" + }, + "h-vv-050": { + "value": "#7e5baf", + "type": "color" + }, + "h-vv-060": { + "value": "#633b9b", + "type": "color" + }, + "h-vv-070": { + "value": "#4e2c7e", + "type": "color" + }, + "h-vv-080": { + "value": "#3a1e61", + "type": "color" + }, + "h-vv-090": { + "value": "#250f43", + "type": "color" + }, + "h-vv-100": { + "value": "#100026", + "type": "color" + } + } + }, + "vibrant": { + "blue": { + "v-bb-120": { + "value": "#59d6ff", + "type": "color" + }, + "v-bb-140": { + "value": "#3db8ff", + "type": "color" + }, + "v-bb-160": { + "value": "#009af2", + "type": "color" + }, + "v-bb-180": { + "value": "#009af2", + "type": "color" + } + }, + "green-blue": { + "v-gb-120": { + "value": "#59fffc", + "type": "color" + }, + "v-gb-140": { + "value": "#00f7f3", + "type": "color" + }, + "v-gb-160": { + "value": "#00e6e2", + "type": "color" + }, + "v-gb-180": { + "value": "#00cfca", + "type": "color" + } + }, + "green": { + "v-gg-120": { + "value": "#73ff84", + "type": "color" + }, + "v-gg-140": { + "value": "#3bed52", + "type": "color" + }, + "v-gg-160": { + "value": "#00b81b", + "type": "color" + }, + "v-gg-180": { + "value": "#00a118", + "type": "color" + } + }, + "yellow-green": { + "v-yg-120": { + "value": "#d7ff73", + "type": "color" + }, + "v-yg-140": { + "value": "#bbed3b", + "type": "color" + }, + "v-yg-160": { + "value": "#96cc00", + "type": "color" + }, + "v-yg-180": { + "value": "#7fab00", + "type": "color" + } + }, + "yellow": { + "v-yy-120": { + "value": "#fff766", + "type": "color" + }, + "v-yy-140": { + "value": "#ffee33", + "type": "color" + }, + "v-yy-160": { + "value": "#f5d000", + "type": "color" + }, + "v-yy-180": { + "value": "#ebba17", + "type": "color" + } + }, + "orange-yellow": { + "v-oy-120": { + "value": "#ffb54d", + "type": "color" + }, + "v-oy-140": { + "value": "#ff9500", + "type": "color" + }, + "v-oy-160": { + "value": "#e68600", + "type": "color" + }, + "v-oy-180": { + "value": "#d17300", + "type": "color" + } + }, + "red-orange": { + "v-ro-120": { + "value": "#ff824d", + "type": "color" + }, + "v-ro-140": { + "value": "#ff4d00", + "type": "color" + }, + "v-ro-160": { + "value": "#de4300", + "type": "color" + }, + "v-ro-180": { + "value": "#c93b00", + "type": "color" + } + }, + "red": { + "v-rr-120": { + "value": "#ff624d", + "type": "color" + }, + "v-rr-140": { + "value": "#ff0015", + "type": "color" + }, + "v-rr-160": { + "value": "#d90012", + "type": "color" + }, + "v-rr-180": { + "value": "#b3000f", + "type": "color" + } + }, + "pink": { + "v-pk-120": { + "value": "#ff66c2", + "type": "color" + }, + "v-pk-140": { + "value": "#ff19a4", + "type": "color" + }, + "v-pk-160": { + "value": "#d11486", + "type": "color" + }, + "v-pk-180": { + "value": "#c00073", + "type": "color" + } + }, + "violet-red": { + "v-vr-120": { + "value": "#ea80ff", + "type": "color" + }, + "v-vr-140": { + "value": "#dd33ff", + "type": "color" + }, + "v-vr-160": { + "value": "#ac08cc", + "type": "color" + }, + "v-vr-180": { + "value": "#83009e", + "type": "color" + } + }, + "violet": { + "v-vv-120": { + "value": "#b580ff", + "type": "color" + }, + "v-vv-140": { + "value": "#974dff", + "type": "color" + }, + "v-vv-160": { + "value": "#8129ff", + "type": "color" + }, + "v-vv-180": { + "value": "#6a0be6", + "type": "color" + } + } + }, + "dark": { + "green": { + "d-gg-410": { + "value": "#44ED51", + "type": "color" + }, + "d-gg-420": { + "value": "#36DA43", + "type": "color" + }, + "d-gg-430": { + "value": "#36DA43", + "type": "color" + } + }, + "yellow": { + "d-yy-410": { + "value": "#FFE24D", + "type": "color" + }, + "d-yy-420": { + "value": "#FFC900", + "type": "color" + }, + "d-yy-430": { + "value": "#F4B000", + "type": "color" + } + }, + "red": { + "d-rr-410": { + "value": "#FF7465", + "type": "color" + }, + "d-rr-420": { + "value": "#FE583E", + "type": "color" + }, + "d-rr-430": { + "value": "#F3381B", + "type": "color" + } + }, + "blue": { + "d-bb-410": { + "value": "#47BBFF", + "type": "color" + }, + "d-bb-420": { + "value": "#00A0FF", + "type": "color" + }, + "d-bb-430": { + "value": "#0087D7", + "type": "color" + } + } + } + } + }, + "sizing": { + "0": { + "value": "2px", + "type": "sizing" + }, + "1": { + "value": "4px", + "type": "sizing" + }, + "2": { + "value": "6px", + "type": "sizing" + }, + "3": { + "value": "8px", + "type": "sizing" + }, + "4": { + "value": "10px", + "type": "sizing" + }, + "5": { + "value": "12px", + "type": "sizing" + }, + "6": { + "value": "14px", + "type": "sizing" + }, + "7": { + "value": "16px", + "type": "sizing" + }, + "8": { + "value": "20px", + "type": "sizing" + }, + "9": { + "value": "24px", + "type": "sizing" + }, + "10": { + "value": "28px", + "type": "sizing" + }, + "11": { + "value": "32px", + "type": "sizing" + }, + "12": { + "value": "36px", + "type": "sizing" + }, + "13": { + "value": "40px", + "type": "sizing" + }, + "14": { + "value": "44px", + "type": "sizing" + }, + "15": { + "value": "48px", + "type": "sizing" + }, + "16": { + "value": "56px", + "type": "sizing" + }, + "17": { + "value": "64px", + "type": "sizing" + }, + "18": { + "value": "72px", + "type": "sizing" + }, + "19": { + "value": "80px", + "type": "sizing" + }, + "20": { + "value": "96px", + "type": "sizing" + }, + "21": { + "value": "112px", + "type": "sizing" + }, + "22": { + "value": "128px", + "type": "sizing" + }, + "23": { + "value": "144px", + "type": "sizing" + }, + "24": { + "value": "160px", + "type": "sizing" + }, + "25": { + "value": "192px", + "type": "sizing" + }, + "26": { + "value": "224px", + "type": "sizing" + }, + "27": { + "value": "256px", + "type": "sizing" + }, + "28": { + "value": "288px", + "type": "sizing" + }, + "none": { + "value": "0px", + "type": "sizing" + } + }, + "spacing": { + "0": { + "value": "2px", + "type": "spacing" + }, + "1": { + "value": "4px", + "type": "spacing" + }, + "2": { + "value": "6px", + "type": "spacing" + }, + "3": { + "value": "8px", + "type": "spacing" + }, + "4": { + "value": "10px", + "type": "spacing" + }, + "5": { + "value": "12px", + "type": "spacing" + }, + "6": { + "value": "14px", + "type": "spacing" + }, + "7": { + "value": "16px", + "type": "spacing" + }, + "8": { + "value": "20px", + "type": "spacing" + }, + "9": { + "value": "24px", + "type": "spacing" + }, + "10": { + "value": "28px", + "type": "spacing" + }, + "11": { + "value": "32px", + "type": "spacing" + }, + "12": { + "value": "36px", + "type": "spacing" + }, + "13": { + "value": "40px", + "type": "spacing" + }, + "14": { + "value": "44px", + "type": "spacing" + }, + "15": { + "value": "48px", + "type": "spacing" + }, + "16": { + "value": "56px", + "type": "spacing" + }, + "17": { + "value": "64px", + "type": "spacing" + }, + "18": { + "value": "72px", + "type": "spacing" + }, + "19": { + "value": "80px", + "type": "spacing" + }, + "20": { + "value": "96px", + "type": "spacing" + }, + "21": { + "value": "112px", + "type": "spacing" + }, + "22": { + "value": "128px", + "type": "spacing" + }, + "23": { + "value": "144px", + "type": "spacing" + }, + "24": { + "value": "160px", + "type": "spacing" + }, + "25": { + "value": "192px", + "type": "spacing" + }, + "26": { + "value": "224px", + "type": "spacing" + }, + "27": { + "value": "256px", + "type": "spacing" + }, + "28": { + "value": "288px", + "type": "spacing" + }, + "none": { + "value": "0px", + "type": "spacing" + } + }, + "breakpoint": { + "width": { + "xs": { + "value": "476px", + "type": "sizing", + "description": "min-width size" + }, + "sm": { + "value": "768px", + "type": "sizing", + "description": "min-width size" + }, + "md": { + "value": "1152px", + "type": "sizing", + "description": "min-width size" + }, + "lg": { + "value": "1440px", + "type": "sizing", + "description": "min-width size" + } + }, + "margin": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "gutter": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "content": { + "fluid": { + "value": "100%", + "type": "sizing", + "description": "for fluid grid widths" + }, + "fixed": { + "value": "1440px", + "type": "sizing", + "description": "only for lg breakpoint fixed grid width" + } + }, + "cols": { + "xs": { + "value": "6", + "type": "other", + "description": "columns" + }, + "sm": { + "value": "12", + "type": "other", + "description": "columns" + }, + "md": { + "value": "24", + "type": "other", + "description": "columns" + }, + "lg": { + "value": "24", + "type": "other", + "description": "columns" + } + } + }, + "z-index": { + "deep": { + "value": "-999999", + "type": "other" + }, + "default": { + "value": "1", + "type": "other" + }, + "sticky": { + "value": "300", + "type": "other" + }, + "header": { + "value": "400", + "type": "other" + }, + "toast": { + "value": "500", + "type": "other" + }, + "dropdown": { + "value": "600", + "type": "other" + }, + "overlay": { + "value": "700", + "type": "other" + }, + "modal": { + "value": "800", + "type": "other" + }, + "popup": { + "value": "900", + "type": "other" + } + }, + "box-shadow": { + "0": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + }, + "1": { + "value": [ + { + "x": "0", + "y": "2", + "blur": "8", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "4", + "blur": "16", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "2": { + "value": [ + { + "x": "0", + "y": "4", + "blur": "20", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "12", + "blur": "32", + "spread": "-2", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "none": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + } + } + } +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json new file mode 100644 index 00000000000..b195cf841eb --- /dev/null +++ b/tokens/semantic.json @@ -0,0 +1,1673 @@ +{ + "semantic": { + "font": { + "default": { + "light": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "wrap": { + "light": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "hierarchy": { + "display-1": { + "value": "$semantic.font.wrap.regular.8", + "type": "typography" + }, + "display-2": { + "value": "$semantic.font.wrap.regular.7", + "type": "typography" + }, + "heading-1": { + "value": "$semantic.font.wrap.regular.6", + "type": "typography" + }, + "heading-2": { + "value": "$semantic.font.wrap.regular.5", + "type": "typography" + }, + "heading-3": { + "value": "$semantic.font.wrap.regular.4", + "type": "typography" + }, + "heading-4": { + "value": "$semantic.font.wrap.regular.3", + "type": "typography" + }, + "heading-5": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + }, + "heading-6": { + "value": "$semantic.font.wrap.regular.1", + "type": "typography" + }, + "body-1": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "body-2": { + "value": "$semantic.font.wrap.regular.-1", + "type": "typography" + }, + "overline": { + "value": { + "fontFamilies": "$core.font.font-family.primary", + "fontWeights": "$core.font.font-weight.bold", + "fontSizes": "$core.font.font-size.2", + "lineHeights": "$core.font.line-height.fixed.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textCase": "$core.font.text-case.uppercase", + "textDecoration": "$core.font.text-decoration.none", + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.bold", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2" + }, + "type": "typography" + }, + "caption": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + } + } + }, + "border": { + "border-radius": { + "sharp": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "round": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "circular": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "pill": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + } + }, + "ui": { + "border": { + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + } + }, + "color": { + "brand": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$core.color.neutral.blk-005", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-190", + "type": "color" + } + }, + "foreground": { + "1": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-200", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-010", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-210", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-020", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + } + }, + "text": { + "1": { + "light": { + "value": "$core.color.neutral.blk-220", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-000", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-170", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-060", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-140", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-090", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + }, + "link": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + } + }, + "border": { + "1": { + "light": { + "value": "$core.color.neutral.blk-050", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-160", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-040", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-170", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-030", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-180", + "type": "color" + } + }, + "input": { + "light": { + "value": "$core.color.neutral.blk-100", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-130", + "type": "color" + } + } + }, + "info": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + } + }, + "success": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.green.d-gg-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-160", + "type": "color" + } + } + }, + "warning": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.yellow.d-yy-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-160", + "type": "color" + } + } + }, + "danger": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.red.d-rr-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-160", + "type": "color" + } + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-190", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-005", + "type": "color" + } + } + } + } + } +} \ No newline at end of file From abde2140f0b6792c17ff40c1919d637bcf6bef69 Mon Sep 17 00:00:00 2001 From: BrunoAires <108296750+BrunoAiresUS@users.noreply.github.com> Date: Mon, 7 Nov 2022 17:30:19 +0000 Subject: [PATCH 031/696] template organised and input-time added to calcite-headless --- tokens/$metadata.json | 1 + tokens/$themes.json | 3 +- tokens/component/[template-comp-name].json | 152 ++++++++++----------- tokens/component/chip.json | 4 +- 4 files changed, 81 insertions(+), 79 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 8804bfabb6c..1139f5276d7 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -11,6 +11,7 @@ "component/radio", "component/rating", "component/tooltip", + "component/[template-comp-name]", "calcite/light", "calcite/dark", "brand/global", diff --git a/tokens/$themes.json b/tokens/$themes.json index 3f719e2dc5d..37a81425060 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -219,7 +219,8 @@ "component/rating": "enabled", "component/label": "enabled", "component/tooltip": "enabled", - "component/input-time": "enabled" + "component/input-time": "enabled", + "component/[template-comp-name]": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index b94c7511bcc..d154f674eef 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -1,90 +1,90 @@ { - "[comp-name]": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } + "[comp-name]": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" }, - "icon": { + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.foreground.2.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.foreground.2.dark", "type": "color" } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - } + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } + "md": { + "value": "$core.sizing.11", + "type": "sizing" }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" } } - } \ No newline at end of file + } +} \ No newline at end of file diff --git a/tokens/component/chip.json b/tokens/component/chip.json index 3b9b021bff9..65914eb59f6 100644 --- a/tokens/component/chip.json +++ b/tokens/component/chip.json @@ -343,8 +343,8 @@ } }, "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" + "value": "$core.border.border-width.0", + "type": "borderWidth" } } } \ No newline at end of file From 94bf839c9013df852068172df65dab95bc7c1943 Mon Sep 17 00:00:00 2001 From: BrunoAires <108296750+BrunoAiresUS@users.noreply.github.com> Date: Mon, 7 Nov 2022 19:22:03 +0000 Subject: [PATCH 032/696] Space-around tokens typo corrected, calcite headless theme updated --- tokens/component/loader.json | 4 ++-- tokens/component/rating.json | 4 ++-- tokens/component/tooltip.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tokens/component/loader.json b/tokens/component/loader.json index cdba53194b9..96d861d0212 100644 --- a/tokens/component/loader.json +++ b/tokens/component/loader.json @@ -9,7 +9,7 @@ "value": "$semantic.ui.color.text.1.dark", "type": "color" }, - "text": { + "standard": { "value": "$semantic.font.wrap.regular.-2", "type": "typography" }, @@ -89,7 +89,7 @@ "type": "spacing" } }, - "space-arround": { + "space-around": { "sm": { "value": "$core.spacing.2", "type": "spacing" diff --git a/tokens/component/rating.json b/tokens/component/rating.json index c6c40e58835..7f38f76893b 100644 --- a/tokens/component/rating.json +++ b/tokens/component/rating.json @@ -195,7 +195,7 @@ "type": "spacing" } }, - "space-arround": { + "space-around": { "sm": { "value": "$core.sizing.3", "type": "spacing" @@ -225,7 +225,7 @@ "type": "spacing" } }, - "space-arround": { + "space-around": { "sm": { "value": "$core.spacing.3", "type": "spacing" diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json index 51d50bce707..57a5c1e7105 100644 --- a/tokens/component/tooltip.json +++ b/tokens/component/tooltip.json @@ -1,6 +1,6 @@ { "tooltip": { - "space-arround": { + "space-around": { "top-bottom": { "value": "$core.spacing.5", "type": "spacing" From 9a6b540f577247f808c01f906481a74dba8b71af Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 8 Nov 2022 17:35:10 +0100 Subject: [PATCH 033/696] Updating my branches with the latest changes from everyone --- tokens/$themes.json | 348 ++++++++++++++++++++++---------------------- 1 file changed, 174 insertions(+), 174 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index c602803f4a3..3c88b3cc19a 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -37,6 +37,177 @@ }, "$figmaStyleReferences": {} }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/link": "disabled", + "component/progress": "disabled", + "component/pagination": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "enabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/link": "disabled", + "component/progress": "disabled", + "component/pagination": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + } + }, { "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", "name": "Calcite Headless", @@ -56,9 +227,9 @@ "component/rating": "enabled", "component/label": "enabled", "component/tooltip": "enabled", - "component/link": "disabled", - "component/progress": "disabled", - "component/pagination": "disabled" + "component/link": "enabled", + "component/progress": "enabled", + "component/pagination": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -583,176 +754,5 @@ "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } - }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "enabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/link": "disabled", - "component/progress": "disabled", - "component/pagination": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," - } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "enabled", - "calcite/dark": "disabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/link": "disabled", - "component/progress": "disabled", - "component/pagination": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", - "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", - "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", - "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", - "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", - "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", - "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", - "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", - "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", - "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", - "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", - "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", - "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", - "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," - } } ] \ No newline at end of file From ccbfb760a7275a6d8b8f30f49daa7c83f506e0ae Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 9 Nov 2022 18:26:23 +0000 Subject: [PATCH 034/696] switch tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++-- tokens/component/switch.json | 164 +++++++++++++++++++++++++++++++++++ 3 files changed, 175 insertions(+), 5 deletions(-) create mode 100644 tokens/component/switch.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 14ea9f27498..3319bf4de35 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -11,6 +11,7 @@ "component/radio", "component/rating", "component/tooltip", + "component/switch", "calcite/light", "calcite/dark", "brand/global", diff --git a/tokens/$themes.json b/tokens/$themes.json index 3f719e2dc5d..7fba4ba0921 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -12,7 +12,8 @@ "brand/dark": "disabled", "component/label": "disabled", "component/tooltip": "disabled", - "component/input-time": "disabled" + "component/input-time": "disabled", + "component/switch": "disabled" }, "$figmaStyleReferences": {} }, @@ -29,7 +30,8 @@ "brand/dark": "enabled", "component/label": "disabled", "component/tooltip": "disabled", - "component/input-time": "disabled" + "component/input-time": "disabled", + "component/switch": "disabled" }, "$figmaStyleReferences": {} }, @@ -52,7 +54,8 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/input-time": "disabled" + "component/input-time": "disabled", + "component/switch": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -134,7 +137,8 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/input-time": "disabled" + "component/input-time": "disabled", + "component/switch": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -219,7 +223,8 @@ "component/rating": "enabled", "component/label": "enabled", "component/tooltip": "enabled", - "component/input-time": "enabled" + "component/input-time": "enabled", + "component/switch": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/switch.json b/tokens/component/switch.json new file mode 100644 index 00000000000..a5f11505fc0 --- /dev/null +++ b/tokens/component/switch.json @@ -0,0 +1,164 @@ +{ + "switch": { + "font": { + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.15", + "type": "sizing" + } + }, + "handle-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + } + } + }, + "handle": { + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + } + } + } +} \ No newline at end of file From 68a5fee694f79656556875b18ee3a103fba3e24d Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 9 Nov 2022 18:29:43 +0000 Subject: [PATCH 035/696] switch tokens --- tokens/component/switch.json | 26 ++++++-------------------- 1 file changed, 6 insertions(+), 20 deletions(-) diff --git a/tokens/component/switch.json b/tokens/component/switch.json index a5f11505fc0..6c87344a20f 100644 --- a/tokens/component/switch.json +++ b/tokens/component/switch.json @@ -1,19 +1,5 @@ { "switch": { - "font": { - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, "background": { "default": { "light": { @@ -38,15 +24,15 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.full", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.full", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.full", "type": "borderRadius" } }, @@ -147,15 +133,15 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.half", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.half", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.half", "type": "borderRadius" } } From 685ec268651931db24688c60bfbf3c1a42dac3aa Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 9 Nov 2022 19:12:51 -0800 Subject: [PATCH 036/696] fix(actions): set custom label for PRs --- .github/workflows/design-tokens-automerge.yml | 13 +--- .github/workflows/design-tokens-pr.yml | 8 +-- .github/workflows/design-tokens-sync.yml | 8 +-- CONTRIBUTING.md | 72 +++++++++++++++---- 4 files changed, 69 insertions(+), 32 deletions(-) diff --git a/.github/workflows/design-tokens-automerge.yml b/.github/workflows/design-tokens-automerge.yml index 13cbb3a56b1..ca4a4804021 100644 --- a/.github/workflows/design-tokens-automerge.yml +++ b/.github/workflows/design-tokens-automerge.yml @@ -3,13 +3,6 @@ on: pull_request: types: - labeled - - unlabeled - - synchronize - - opened - - edited - - ready_for_review - - reopened - - unlocked pull_request_review: types: - submitted @@ -26,10 +19,10 @@ jobs: uses: "pascalgn/automerge-action@v0.15.5" env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - MERGE_LABELS: "automerge" - MERGE_REMOVE_LABELS: "automerge" + MERGE_LABELS: "automated-tokens-pr" + MERGE_REMOVE_LABELS: "automated-tokens-pr" MERGE_METHOD: "squash" - MERGE_COMMIT_MESSAGE: "automatic merge" + MERGE_COMMIT_MESSAGE: "chore: automatic merge" MERGE_FORKS: "false" MERGE_RETRIES: "6" MERGE_RETRY_SLEEP: "10000" diff --git a/.github/workflows/design-tokens-pr.yml b/.github/workflows/design-tokens-pr.yml index 34d001029a4..296eece700d 100644 --- a/.github/workflows/design-tokens-pr.yml +++ b/.github/workflows/design-tokens-pr.yml @@ -14,19 +14,19 @@ jobs: script: | const { repo, owner } = context.repo; const result = await github.rest.pulls.create({ - title: 'Design Token Updates', + title: 'feature(tokens): Design Token Updates', owner, repo, head: '${{ github.ref_name }}', base: 'feature/design-tokens', body: [ - 'This PR is auto-generated by', - '[actions/github-script](https://github.com/actions/github-script).' + 'auto-generated: FigmaTokens PR', + '', ].join('\n') }); github.rest.issues.addLabels({ owner, repo, issue_number: result.data.number, - labels: ['feature', 'automated pr'] + labels: [] }); diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index 8bad017e565..cf73d1d7530 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -22,7 +22,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} FROM_BRANCH: 'feature/design-tokens' TO_BRANCH: 'designer/brunoaires' - LABELS: 'automerge' + LABELS: 'automated-tokens-pr' - name: Opening pull request id: pullmanuelacosta uses: tretuna/sync-branches@1.4.0 @@ -30,7 +30,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} FROM_BRANCH: 'feature/design-tokens' TO_BRANCH: 'designer/manuelacosta' - LABELS: 'automerge' + LABELS: 'automated-tokens-pr' - name: Opening pull request id: pulljacqueskeet uses: tretuna/sync-branches@1.4.0 @@ -38,7 +38,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} FROM_BRANCH: 'feature/design-tokens' TO_BRANCH: 'designer/jacqueskeet' - LABELS: 'automerge' + LABELS: 'automated-tokens-pr' - name: Opening pull request id: pulltest uses: tretuna/sync-branches@1.4.0 @@ -46,4 +46,4 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} FROM_BRANCH: 'feature/design-tokens' TO_BRANCH: 'designer/test' - LABELS: 'automerge' + LABELS: 'automated-tokens-pr' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3b2ac8abc5b..e3bb09e742f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,59 +14,103 @@ Found a problem? Want a new feature? Pull requests are the greatest contributions, so be sure they are focused in scope. 1. To begin, [fork this project](fork), clone your fork, and add our upstream. + ```bash # Clone your fork of the repo into the current directory -git clone https://github.com//calcite-tailwind +git clone git@github.com:Esri/calcite-styles.git # Navigate to the newly cloned directory -cd calcite-tailwind -# Assign the original repo to a remote called "upstream" -git remote add upstream https://github.com/esri/calcite-tailwind +cd calcite-styles # Install the tools necessary for development npm install ``` 2. Create a branch for your feature or fix: + ```bash -# Move into a new branch for a feature -git checkout -b feature/thing +# If you are a designer setting up a branch for FigmaTokens Plugin, make sure your branch name starts with `designer/`. +git checkout -b designer/[yourname] ``` + ```bash -# Move into a new branch for a fix -git checkout -b fix/something +# Use the calcite default branching pattern +git checkout -b [yourname]/[type]-[issue#] ``` 3. Start up a local development server: + ```bash # Use the start script to run the default dev environment npm start ``` 4. Be sure your code follows our practices. + ```bash # Test current code npm run test ``` 5. Push your branch up to your fork: + ```bash -# Push a feature branch -git push origin feature/thing +# Push a designer branch +git push origin designer/[yourname] ``` + ```bash -# Push a fix branch -git push origin fix/something +# Push a developer branch +git push origin [yourname]/[type]-[issue#] ``` 6. Now [open a pull request](https://help.github.com/articles/using-pull-requests/) with a clear title and description. ## Bumping the Version -1. Change the version number in `package.json` to the desired version number. +1. Following the rules of [SEMVER](https://semver.org/), change the version number in `package.json` to the appropriate version number. 2. Write a description of the changes, additions, and bug fixes in `CHANGELOG.md`. 3. Run `npm run dist` to make sure the `dist/` files are updated. -4. Make sure `Esri/calcite-tailwind` is up-to-date with your changes (via Pull Request). +4. Make sure `Esri/calcite-styles` is up-to-date with your changes (via Pull Request). 5. Run `npm run release`. If prompted enter your GitHub credentials. ## Updating the documentation 1. `npm run gh-pages` to build the docs and deploy to https://esri.github.io/calcite-tailwind + +## CI Automation + +Github actions facilitate the token handoff between the Designers using the Figma Tokens Plugin and a multi-branch git repo. + +Designers using the Figma Token Plugin should set their watched git repo to `designers/[custom-name]`. + +### design-tokens-pr.yml + +This file allows designers to each work off their own branch. Helping prevent accidental overwrites from other people working on the same tokens files. + +Automated Steps + +1. Watches for changes to any branch in the repo named `designers/*`. +1. Generate a pull request with new changes to the set feature branch. + +### Wait for reviewers + +Await reviews from the team before merging the new work from designers into the feature branch. This allows time for discussion and alignment on bug fixes, features, and potential breaking changes before merging. + +### design-tokens-sync.yml + +When changes are detected on the feature branch, generate a pull-request back to the designer branches. This avoids the burden on designers to have to switch between branches in the Figma Token plugin and ensuring any conflicts between each designer's branch and the feature branch do not accidentally overwrite the designers work. + +Automated Steps + +1. Watch for changes on the feature branch. +1. Open pull-requests to each of the designer branches set in the action file. +1. Add `automated-tokens-pr'` label. + +### design-tokens-automerge.yml + +Auto merge pull requests created with the label `automated-tokens-pr`. + +Automated Steps + +1. Watch for pull requests with the label `automated-tokens-pr`. +1. Wait to confirm the pull request passes required checks. +1. Merge the pull request with the commit message `chore: automatic merge`. From c85311f8f70188212c536b7e8deca702c57e0b32 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 10 Nov 2022 17:02:36 +0000 Subject: [PATCH 037/696] switch border width --- tokens/component/switch.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/tokens/component/switch.json b/tokens/component/switch.json index 6c87344a20f..1bfd307ea81 100644 --- a/tokens/component/switch.json +++ b/tokens/component/switch.json @@ -144,6 +144,34 @@ "value": "$core.border.border-radius.half", "type": "borderRadius" } + }, + "border-width": { + "sm": { + "value": "{core.border.border-width.1}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.border-width.1}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.border-width.1}", + "type": "borderWidth" + } + } + }, + "border-width": { + "sm": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" } } } From 0b4e0b748c832ec05e8778916d29baf6e2c9b5e8 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 10 Nov 2022 20:37:45 +0100 Subject: [PATCH 038/696] Latest updates to light & dark theme tokens for link, pagination & progress --- tokens/calcite/dark.json | 48 +++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 50 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 97 insertions(+), 1 deletion(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 8d6c908e931..4515a004bc9 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -406,6 +406,54 @@ "value": "$tooltip.font.dark", "type": "color" } + }, + "link": { + "font": { + "value": "$link.font.dark", + "type": "color" + }, + "icon": { + "value": "$link.font.dark", + "type": "color" + } + }, + "pagination": { + "font": { + "active": { + "value": "$pagination.font.active.dark", + "type": "color" + }, + "inactive": { + "value": "$pagination.font.inactive.dark", + "type": "color" + } + }, + "icon": { + "value": "$pagination.icon.dark", + "type": "color" + }, + "border": { + "value": "$pagination.border.dark", + "type": "color" + } + }, + "progress": { + "background": { + "track": { + "idle": { + "value": "$progress.background.track.idle.dark", + "type": "color" + }, + "active": { + "value": "$progress.background.track.active.dark", + "type": "color" + } + } + }, + "font": { + "value": "$progress.font.dark", + "type": "color" + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 9c39c05256b..6ca95f934ad 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -329,7 +329,7 @@ }, "label": { "font": { - "value": "{pagination.font.active.light}", + "value": "$pagination.font.active.light", "type": "color" } }, @@ -406,6 +406,54 @@ "value": "$tooltip.font.light", "type": "color" } + }, + "link": { + "font": { + "value": "$link.font.light", + "type": "color" + }, + "icon": { + "value": "$link.font.light", + "type": "color" + } + }, + "pagination": { + "font": { + "active": { + "value": "$pagination.font.active.light", + "type": "color" + }, + "inactive": { + "value": "$pagination.font.inactive.light", + "type": "color" + } + }, + "icon": { + "value": "$pagination.icon.light", + "type": "color" + }, + "border": { + "value": "$pagination.border.light", + "type": "color" + } + }, + "progress": { + "background": { + "track": { + "idle": { + "value": "$progress.background.track.idle.light", + "type": "color" + }, + "active": { + "value": "$progress.background.track.active.light", + "type": "color" + } + } + }, + "font": { + "value": "$progress.font.light", + "type": "color" + } } } } From d7a3ac84cf602c921f5810d2b4f45aea7ef7aec4 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 14 Nov 2022 11:22:04 +0000 Subject: [PATCH 039/696] input message --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +++-- tokens/component/input-message.json | 90 +++++++++++++++++++++++++++++ 3 files changed, 101 insertions(+), 5 deletions(-) create mode 100644 tokens/component/input-message.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 3319bf4de35..1396c7691a2 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -5,6 +5,7 @@ "component/avatar", "component/checkbox", "component/chip", + "component/input-message", "component/input-time", "component/label", "component/loader", diff --git a/tokens/$themes.json b/tokens/$themes.json index 7fba4ba0921..daad2a3681a 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -13,7 +13,8 @@ "component/label": "disabled", "component/tooltip": "disabled", "component/input-time": "disabled", - "component/switch": "disabled" + "component/switch": "disabled", + "component/input-message": "disabled" }, "$figmaStyleReferences": {} }, @@ -31,7 +32,8 @@ "component/label": "disabled", "component/tooltip": "disabled", "component/input-time": "disabled", - "component/switch": "disabled" + "component/switch": "disabled", + "component/input-message": "disabled" }, "$figmaStyleReferences": {} }, @@ -55,7 +57,8 @@ "component/rating": "source", "component/tooltip": "source", "component/input-time": "disabled", - "component/switch": "disabled" + "component/switch": "disabled", + "component/input-message": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -138,7 +141,8 @@ "component/rating": "source", "component/tooltip": "source", "component/input-time": "disabled", - "component/switch": "disabled" + "component/switch": "disabled", + "component/input-message": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -224,7 +228,8 @@ "component/label": "enabled", "component/tooltip": "enabled", "component/input-time": "enabled", - "component/switch": "enabled" + "component/switch": "enabled", + "component/input-message": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json new file mode 100644 index 00000000000..978c59f9e74 --- /dev/null +++ b/tokens/component/input-message.json @@ -0,0 +1,90 @@ +{ + "input-message": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + } + } +} \ No newline at end of file From 3ca88e3262aedeffaf1f1b8cdec9f769a9062d9d Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 14 Nov 2022 15:54:45 +0000 Subject: [PATCH 040/696] input message --- tokens/$themes.json | 2 +- tokens/component/input-message.json | 58 ++++++++++++++--------------- 2 files changed, 28 insertions(+), 32 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index daad2a3681a..f14dd69ab4c 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -229,7 +229,7 @@ "component/tooltip": "enabled", "component/input-time": "enabled", "component/switch": "enabled", - "component/input-message": "disabled" + "component/input-message": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json index 978c59f9e74..b4f54476d2c 100644 --- a/tokens/component/input-message.json +++ b/tokens/component/input-message.json @@ -2,11 +2,11 @@ "input-message": { "font": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" }, "sm": { @@ -14,48 +14,44 @@ "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.bold.-1h", "type": "typography" } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "background": { - "default": { + "idle": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" + "valid": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } } }, "comp-size": { @@ -78,11 +74,11 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.7", "type": "sizing" } } From 912bca4222f6b40a9c9f5a64103b122feec92159 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 14 Nov 2022 23:06:57 +0100 Subject: [PATCH 041/696] Added and updated Tile component tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++++++++----- tokens/component/tile.json | 46 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+), 5 deletions(-) create mode 100644 tokens/component/tile.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index ebe00edbdd8..be79ef2d603 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -13,6 +13,7 @@ "component/radio", "component/rating", "component/tooltip", + "component/tile", "calcite/light", "calcite/dark", "brand/global", diff --git a/tokens/$themes.json b/tokens/$themes.json index 3c88b3cc19a..77abf59a23b 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -14,7 +14,8 @@ "component/tooltip": "disabled", "component/link": "disabled", "component/progress": "disabled", - "component/pagination": "disabled" + "component/pagination": "disabled", + "component/tile": "disabled" }, "$figmaStyleReferences": {} }, @@ -33,7 +34,8 @@ "component/tooltip": "disabled", "component/link": "disabled", "component/progress": "disabled", - "component/pagination": "disabled" + "component/pagination": "disabled", + "component/tile": "disabled" }, "$figmaStyleReferences": {} }, @@ -58,7 +60,8 @@ "component/tooltip": "source", "component/link": "disabled", "component/progress": "disabled", - "component/pagination": "disabled" + "component/pagination": "disabled", + "component/tile": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -142,7 +145,8 @@ "component/tooltip": "source", "component/link": "disabled", "component/progress": "disabled", - "component/pagination": "disabled" + "component/pagination": "disabled", + "component/tile": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -229,7 +233,8 @@ "component/tooltip": "enabled", "component/link": "enabled", "component/progress": "enabled", - "component/pagination": "enabled" + "component/pagination": "enabled", + "component/tile": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/tile.json b/tokens/component/tile.json new file mode 100644 index 00000000000..261e9f6afd0 --- /dev/null +++ b/tokens/component/tile.json @@ -0,0 +1,46 @@ +{ + "tile": { + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "standard": { + "value": "$semantic.font.wrap.medium.-2", + "type": "typography" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } +} \ No newline at end of file From 1d9e752f01727797aa9f2b0db09c301e1ffd6425 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 15 Nov 2022 12:55:36 +0100 Subject: [PATCH 042/696] Tile and button tokens updated --- tokens/$metadata.json | 1 + tokens/$themes.json | 357 ++++++++++++++++++----------------- tokens/calcite/dark.json | 18 ++ tokens/calcite/light.json | 18 ++ tokens/component/button.json | 232 +++++++++++++++++++++++ tokens/component/tile.json | 18 +- 6 files changed, 462 insertions(+), 182 deletions(-) create mode 100644 tokens/component/button.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index be79ef2d603..a5a33a41e52 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -4,6 +4,7 @@ "semantic", "component/avatar", "component/checkbox", + "component/button", "component/chip", "component/label", "component/link", diff --git a/tokens/$themes.json b/tokens/$themes.json index 77abf59a23b..a080354d9c4 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -15,7 +15,8 @@ "component/link": "disabled", "component/progress": "disabled", "component/pagination": "disabled", - "component/tile": "disabled" + "component/tile": "disabled", + "component/button": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,183 +36,11 @@ "component/link": "disabled", "component/progress": "disabled", "component/pagination": "disabled", - "component/tile": "disabled" + "component/tile": "disabled", + "component/button": "disabled" }, "$figmaStyleReferences": {} }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "enabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/link": "disabled", - "component/progress": "disabled", - "component/pagination": "disabled", - "component/tile": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," - } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "enabled", - "calcite/dark": "disabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/link": "disabled", - "component/progress": "disabled", - "component/pagination": "disabled", - "component/tile": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", - "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", - "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", - "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", - "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", - "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", - "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", - "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", - "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", - "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", - "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", - "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", - "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", - "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," - } - }, { "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", "name": "Calcite Headless", @@ -234,7 +63,8 @@ "component/link": "enabled", "component/progress": "enabled", "component/pagination": "enabled", - "component/tile": "disabled" + "component/tile": "enabled", + "component/button": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -759,5 +589,180 @@ "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } + }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/link": "source", + "component/progress": "source", + "component/pagination": "source", + "component/tile": "source", + "component/button": "source" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "enabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/link": "source", + "component/progress": "source", + "component/pagination": "source", + "component/tile": "source", + "component/button": "source" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + } } ] \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 4515a004bc9..6528fda2c17 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -454,6 +454,24 @@ "value": "$progress.font.dark", "type": "color" } + }, + "tile": { + "foreground": { + "value": "$tile.foreground.dark", + "type": "color" + }, + "font": { + "value": "$tile.font.dark", + "type": "color" + }, + "icon": { + "value": "$tile.icon.dark", + "type": "color" + }, + "border": { + "value": "$tile.border.dark", + "type": "color" + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 6ca95f934ad..3196e1afeeb 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -454,6 +454,24 @@ "value": "$progress.font.light", "type": "color" } + }, + "tile": { + "foreground": { + "value": "$tile.foreground.light", + "type": "color" + }, + "font": { + "value": "$tile.font.light", + "type": "color" + }, + "icon": { + "value": "$tile.icon.light", + "type": "color" + }, + "border": { + "value": "$tile.border.light", + "type": "color" + } } } } diff --git a/tokens/component/button.json b/tokens/component/button.json new file mode 100644 index 00000000000..fb171f025be --- /dev/null +++ b/tokens/component/button.json @@ -0,0 +1,232 @@ +{ + "button": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-radius": { + "square": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + }, + "rounded": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "border": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "blue": { + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "space-around": { + "standard": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "icon": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tile.json b/tokens/component/tile.json index 261e9f6afd0..5e8bb9219a9 100644 --- a/tokens/component/tile.json +++ b/tokens/component/tile.json @@ -12,11 +12,11 @@ }, "font": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.text.2.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.2.dark", "type": "color" }, "standard": { @@ -34,13 +34,19 @@ "type": "color" } }, - "border-radius": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - }, "border-width": { "value": "$core.border.border-width.0", "type": "borderWidth" + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } } } } \ No newline at end of file From ab7530da30e0baa469487c2123cca3beaa71def9 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 16 Nov 2022 14:40:07 +0000 Subject: [PATCH 043/696] accordion-item token --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/component/accordion-item.json | 212 +++++++++++++++++++++++++++ 3 files changed, 223 insertions(+), 5 deletions(-) create mode 100644 tokens/component/accordion-item.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 1396c7691a2..092e171e508 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -2,6 +2,7 @@ "tokenSetOrder": [ "core", "semantic", + "component/accordion-item", "component/avatar", "component/checkbox", "component/chip", diff --git a/tokens/$themes.json b/tokens/$themes.json index f14dd69ab4c..943f068e9a7 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -14,7 +14,8 @@ "component/tooltip": "disabled", "component/input-time": "disabled", "component/switch": "disabled", - "component/input-message": "disabled" + "component/input-message": "disabled", + "component/accordion-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -33,7 +34,8 @@ "component/tooltip": "disabled", "component/input-time": "disabled", "component/switch": "disabled", - "component/input-message": "disabled" + "component/input-message": "disabled", + "component/accordion-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -58,7 +60,8 @@ "component/tooltip": "source", "component/input-time": "disabled", "component/switch": "disabled", - "component/input-message": "disabled" + "component/input-message": "disabled", + "component/accordion-item": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -142,7 +145,8 @@ "component/tooltip": "source", "component/input-time": "disabled", "component/switch": "disabled", - "component/input-message": "disabled" + "component/input-message": "disabled", + "component/accordion-item": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -229,7 +233,8 @@ "component/tooltip": "enabled", "component/input-time": "enabled", "component/switch": "enabled", - "component/input-message": "enabled" + "component/input-message": "enabled", + "component/accordion-item": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json new file mode 100644 index 00000000000..2e8897433f9 --- /dev/null +++ b/tokens/component/accordion-item.json @@ -0,0 +1,212 @@ +{ + "accordion-item": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + } + } +} \ No newline at end of file From 72a1427e074e967fc8deb916255d8e087ef3378f Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 16 Nov 2022 14:56:25 +0000 Subject: [PATCH 044/696] accordion-item tokens --- tokens/component/accordion-item.json | 44 ++++++++++++++++++++++------ 1 file changed, 35 insertions(+), 9 deletions(-) diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index 2e8897433f9..4fb8670f0ef 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -35,13 +35,25 @@ } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } } }, "background": { @@ -194,19 +206,33 @@ }, "left-right": { "sm": { - "value": "{core.spacing.3}", + "value": "{core.spacing.none}", "type": "spacing" }, "md": { - "value": "{core.spacing.5}", + "value": "{core.spacing.none}", "type": "spacing" }, "lg": { - "value": "{core.spacing.7}", + "value": "{core.spacing.none}", "type": "spacing" } } } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } } } } \ No newline at end of file From 2fd4ece24245651dc4d8f066e4612fd19f18c221 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 16 Nov 2022 17:42:52 +0000 Subject: [PATCH 045/696] alert tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +++-- tokens/component/alert.json | 122 ++++++++++++++++++++++++++++++++++++ 3 files changed, 133 insertions(+), 5 deletions(-) create mode 100644 tokens/component/alert.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 092e171e508..b02c3104452 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -3,6 +3,7 @@ "core", "semantic", "component/accordion-item", + "component/alert", "component/avatar", "component/checkbox", "component/chip", diff --git a/tokens/$themes.json b/tokens/$themes.json index 943f068e9a7..b11b4947cec 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -15,7 +15,8 @@ "component/input-time": "disabled", "component/switch": "disabled", "component/input-message": "disabled", - "component/accordion-item": "disabled" + "component/accordion-item": "disabled", + "component/alert": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +36,8 @@ "component/input-time": "disabled", "component/switch": "disabled", "component/input-message": "disabled", - "component/accordion-item": "disabled" + "component/accordion-item": "disabled", + "component/alert": "disabled" }, "$figmaStyleReferences": {} }, @@ -61,7 +63,8 @@ "component/input-time": "disabled", "component/switch": "disabled", "component/input-message": "disabled", - "component/accordion-item": "disabled" + "component/accordion-item": "disabled", + "component/alert": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -146,7 +149,8 @@ "component/input-time": "disabled", "component/switch": "disabled", "component/input-message": "disabled", - "component/accordion-item": "disabled" + "component/accordion-item": "disabled", + "component/alert": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -234,7 +238,8 @@ "component/input-time": "enabled", "component/switch": "enabled", "component/input-message": "enabled", - "component/accordion-item": "enabled" + "component/accordion-item": "enabled", + "component/alert": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/alert.json b/tokens/component/alert.json new file mode 100644 index 00000000000..6abdb02bb87 --- /dev/null +++ b/tokens/component/alert.json @@ -0,0 +1,122 @@ +{ + "alert": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "icon": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file From 5b1ac69785518df201d091b264ba43116ad25366 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 16 Nov 2022 18:09:31 +0000 Subject: [PATCH 046/696] alert color tokens --- tokens/component/alert.json | 70 ++++++++++++++++++++++++++++++++----- 1 file changed, 62 insertions(+), 8 deletions(-) diff --git a/tokens/component/alert.json b/tokens/component/alert.json index 6abdb02bb87..fca3f18297c 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -1,6 +1,16 @@ { "alert": { - "font": { + "title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "message": { "light": { "value": "$semantic.ui.color.text.3.light", "type": "color" @@ -8,7 +18,9 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" - }, + } + }, + "font": { "sm": { "value": "$semantic.font.default.bold.-3h", "type": "typography" @@ -89,31 +101,73 @@ }, "green": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "highlight": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.success.default.dark", "type": "color" } }, "yellow": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.warning.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.warning.default.dark", "type": "color" } }, "red": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } } From 9e0325d93979f1d8b1dc79a5a19778760d7fa5ed Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 16 Nov 2022 18:23:06 +0000 Subject: [PATCH 047/696] alert type tokens --- tokens/component/alert.json | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/tokens/component/alert.json b/tokens/component/alert.json index fca3f18297c..c7f8fa2d0d3 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -8,6 +8,18 @@ "dark": { "value": "$semantic.ui.color.text.1.dark", "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.1h", + "type": "typography" } }, "message": { @@ -18,11 +30,9 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" - } - }, - "font": { + }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "md": { From 02a68471bea1e60a97cb02979ae2ccea0090f8dd Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 16 Nov 2022 19:13:29 +0000 Subject: [PATCH 048/696] alert tokens --- tokens/component/alert.json | 46 +++++++++++++++++++++++++++---------- 1 file changed, 34 insertions(+), 12 deletions(-) diff --git a/tokens/component/alert.json b/tokens/component/alert.json index c7f8fa2d0d3..5904afdc9a7 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -45,28 +45,36 @@ } }, "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.1", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.1", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.1", "type": "borderRadius" } }, @@ -181,6 +189,20 @@ "type": "color" } } + }, + "space-between": { + "sm": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } } } } \ No newline at end of file From b2f0849c685916b7af8a3c8cd8f35f98a068ec9f Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 16 Nov 2022 19:17:46 +0000 Subject: [PATCH 049/696] alert spacing tokens --- tokens/component/alert.json | 58 +++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/tokens/component/alert.json b/tokens/component/alert.json index 5904afdc9a7..68e7dd42aa9 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -203,6 +203,64 @@ "value": "{core.spacing.8}", "type": "spacing" } + }, + "space-around": { + "top": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "bottom": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "left": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + } } } } \ No newline at end of file From 3186bd3f06cad4fc3a3f62934b1cd1fc11f78ef1 Mon Sep 17 00:00:00 2001 From: BrunoAires <108296750+BrunoAiresUS@users.noreply.github.com> Date: Thu, 17 Nov 2022 14:37:30 +0000 Subject: [PATCH 050/696] checkbox spacing tokens aliases corrected --- tokens/component/checkbox.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json index df0ecbad9de..ea861c5b1eb 100644 --- a/tokens/component/checkbox.json +++ b/tokens/component/checkbox.json @@ -16,15 +16,15 @@ }, "space-between": { "sm": { - "value": "$core.sizing.1", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "$core.sizing.3", + "value": "$core.spacing.3", "type": "spacing" }, "lg": { - "value": "$core.sizing.3", + "value": "$core.spacing.3", "type": "spacing" } }, @@ -102,7 +102,7 @@ }, "space-around": { "standard": { - "value": "$core.sizing.5", + "value": "$core.spacing.5", "type": "spacing" } } From a1b85ee2dc633fecff2d522fd06f10b1a65b8b1d Mon Sep 17 00:00:00 2001 From: BrunoAiresUS Date: Thu, 17 Nov 2022 14:38:21 +0000 Subject: [PATCH 051/696] spacing added --- tokens/component/[template-comp-name].json | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index d154f674eef..4a4b1a9a3fa 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -85,6 +85,34 @@ "value": "$core.sizing.11", "type": "sizing" } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } } } } \ No newline at end of file From 70be1e4a21a920f18ef084ecf9af08020c6f5475 Mon Sep 17 00:00:00 2001 From: BrunoAiresUS Date: Thu, 17 Nov 2022 14:44:37 +0000 Subject: [PATCH 052/696] border widthss --- tokens/component/[template-comp-name].json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 4a4b1a9a3fa..d5b509cd8fe 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -58,6 +58,20 @@ "type": "borderRadius" } }, + "border-width": { + "sm": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.5", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.6", + "type": "borderWidth" + } + }, "comp-size": { "sm": { "value": "$core.sizing.9", From 0f168e15d9b38f58bf0bb3cefded3a7043174581 Mon Sep 17 00:00:00 2001 From: BrunoAires <108296750+BrunoAiresUS@users.noreply.github.com> Date: Thu, 17 Nov 2022 14:46:54 +0000 Subject: [PATCH 053/696] template updated --- tokens/component/[template-comp-name].json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index d5b509cd8fe..876ea458a7f 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -60,15 +60,15 @@ }, "border-width": { "sm": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.1", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.5", + "value": "$core.border.border-width.2", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.6", + "value": "$core.border.border-width.4", "type": "borderWidth" } }, From b7cfab4210eceec514aa2042ffbf97ea6c36f149 Mon Sep 17 00:00:00 2001 From: BrunoAires <108296750+BrunoAiresUS@users.noreply.github.com> Date: Thu, 17 Nov 2022 16:50:10 +0000 Subject: [PATCH 054/696] update typography template --- tokens/component/[template-comp-name].json | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 876ea458a7f..6f41977dd79 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -127,6 +127,31 @@ "value": "$core.spacing.11", "type": "spacing" } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } } } } \ No newline at end of file From 0c2d10d1170053aa9bcb4410ca5cebca545f7144 Mon Sep 17 00:00:00 2001 From: BrunoAiresUS Date: Thu, 17 Nov 2022 17:10:59 +0000 Subject: [PATCH 055/696] update color templates --- tokens/component/[template-comp-name].json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 6f41977dd79..f1f63332baf 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -32,8 +32,29 @@ "type": "color" } }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, "background": { "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { "light": { "value": "$semantic.ui.color.foreground.2.light", "type": "color" @@ -42,7 +63,6 @@ "value": "$semantic.ui.color.foreground.2.dark", "type": "color" } - } }, "border-radius": { "sm": { From ed7f5d4474d380d87b0047f11600243efcfe17d3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 21 Nov 2022 12:10:13 -0800 Subject: [PATCH 056/696] chore(init): repurposing this repo for calcite-design-tokens --- .editorconfig | 16 + .gitignore | 8 +- .npmignore | 25 + CHANGELOG.md | 10 - CONTRIBUTING.md | 28 +- README.md | 107 +- config.json | 147 + docs/index.html | 1528 --------- docs/postcss.config.js | 9 - docs/tailwind.config.js | 5 - package-lock.json | 7099 +++++---------------------------------- package.json | 65 +- postcss.config.js | 7 - tailwind.config.js | 271 -- tailwind.css | 3 - 15 files changed, 1055 insertions(+), 8273 deletions(-) create mode 100644 .editorconfig create mode 100644 .npmignore create mode 100644 config.json delete mode 100644 docs/index.html delete mode 100644 docs/postcss.config.js delete mode 100644 docs/tailwind.config.js delete mode 100644 postcss.config.js delete mode 100644 tailwind.config.js delete mode 100644 tailwind.css diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..fec720497a2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 2 + +# Matches multiple files with brace expansion notation +# Set default charset +[*.{js,py,css,html}] +charset = utf-8 diff --git a/.gitignore b/.gitignore index 85e070862c1..f645f3fd4b7 100644 --- a/.gitignore +++ b/.gitignore @@ -9,5 +9,9 @@ node_modules # macOS metadata .DS_Store -dist/ -docs/tailwind.css +# Node Package distribution +build + +# Transformation Directory +sd-tokens +sd-example diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000000..4fd42cfc171 --- /dev/null +++ b/.npmignore @@ -0,0 +1,25 @@ +# Logs +logs +*.log + +# Dependency directory +# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- +node_modules + +# macOS metadata +.DS_Store + +# Pre-Build Folders +sd-example +tokens +sd-transform + +# Documentation +CONTRIBUTING.md + +# Configurations +.editorconfig +.gitignore +config.bak.json +config.json + diff --git a/CHANGELOG.md b/CHANGELOG.md index acf7870e05a..d6637e04998 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,3 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [0.1.0] - 2021-02-22 -### Added -- Initial tailwind config version featuring: - - colors - - borders - - shadows - - typography - - layout - - + more! diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3b2ac8abc5b..ec279af2e07 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to calcite-tailwind +# Contributing to calcite-design-tokens You want to contribute? Nice! Below are some guidelines for ensuring that your contribution makes sense for everybody. @@ -16,11 +16,11 @@ Pull requests are the greatest contributions, so be sure they are focused in sco 1. To begin, [fork this project](fork), clone your fork, and add our upstream. ```bash # Clone your fork of the repo into the current directory -git clone https://github.com//calcite-tailwind +git clone https://github.com//calcite-design-tokens # Navigate to the newly cloned directory -cd calcite-tailwind +cd calcite-design-tokens # Assign the original repo to a remote called "upstream" -git remote add upstream https://github.com/esri/calcite-tailwind +git remote add upstream https://github.com/esri/calcite-design-tokens # Install the tools necessary for development npm install ``` @@ -35,19 +35,13 @@ git checkout -b feature/thing git checkout -b fix/something ``` -3. Start up a local development server: -```bash -# Use the start script to run the default dev environment -npm start -``` - -4. Be sure your code follows our practices. +3. Be sure your code follows our practices. ```bash # Test current code npm run test ``` -5. Push your branch up to your fork: +4. Push your branch up to your fork: ```bash # Push a feature branch git push origin feature/thing @@ -57,16 +51,12 @@ git push origin feature/thing git push origin fix/something ``` -6. Now [open a pull request](https://help.github.com/articles/using-pull-requests/) with a clear title and description. +5. Now [open a pull request](https://help.github.com/articles/using-pull-requests/) with a clear title and description. ## Bumping the Version 1. Change the version number in `package.json` to the desired version number. 2. Write a description of the changes, additions, and bug fixes in `CHANGELOG.md`. -3. Run `npm run dist` to make sure the `dist/` files are updated. -4. Make sure `Esri/calcite-tailwind` is up-to-date with your changes (via Pull Request). +3. Run `npm run build` to make sure the `build/` files are updated. +4. Make sure `Esri/calcite-design-tokens` is up-to-date with your changes (via Pull Request). 5. Run `npm run release`. If prompted enter your GitHub credentials. - -## Updating the documentation - -1. `npm run gh-pages` to build the docs and deploy to https://esri.github.io/calcite-tailwind diff --git a/README.md b/README.md index d2b0fcc13a2..7dfd1bbbccc 100644 --- a/README.md +++ b/README.md @@ -1,89 +1,42 @@ -# Calcite Styles - -The calcite-styles repository holds the shared styles and Tailwind configuration used to build calcite-components. - -:warning: Warning! :warning: - -> This package is currently in its very early stages of development. The styles config will change as we begin to adopt it. Until version 1.0.0 minor versions could contain breaking changes to class names! - -## Install - -If you use npm, installation is as easy as: +# Calcite Design Tokens +## Getting Started +```bash +npm install ``` -npm install @esri/calcite-styles +```bash +npm run build ``` -You can also [download the latest release manually](https://github.com/Esri/calcite-styles/releases). - -_Note_: this project assumes you have the light and dark theme variables defined on your page. If you're using calcite components, these will already be defined for you. If not, please see [calcite-colors](https://github.com/Esri/calcite-colors/) for steps on how to import the theme. - -### PostCSS/styles - -To add Calcite's tailwind configuration to your project you can simply import it in your `styles.config.js` file: - -```js -var calciteTheme = require("@esri/calcite-styles"); - -module.exports = { - purge: ["./public/**/*.html"], // make sure to purge any unused CSS by passing in your HTML here - ...calciteTheme -}; -``` - -### CSS - -A static CSS file is also provided at `dist/styles.css`. This file is a full build of the Tailwind utility classes. When using this option it's a good idea to use nano or another CSS optimization tool to remove the unused classes as the default build can be quite large. - - -### Use - -In HTML, you can use the classes directly: - -```html -
-

-

-``` - -If you'd like to add styles from the the tailwind set to an existing element in CSS, you can use `@apply`: - -```css -.my-class { - @apply font-medium text-0 mb-4; -} -``` - -_Note_: this requires you set up via PostCSS (see above). - -### Tips - -If you're a VS Code user, the [styles CSS IntelliSense](https://marketplace.visualstudio.com/items?itemName=bradlc.vscode-stylescss) plugin will provide auto-complete for the classes, making it much faster to develop styles! - -## Licensing +This will generate build artifacts from tokens created with the Figma Token Plugin -COPYRIGHT © 2021 Esri +scss +✔︎ build/scss/_variables.scss -All rights reserved under the copyright laws of the United States -and applicable international laws, treaties, and conventions. +css +✔︎ build/css/tokens.css -This material is licensed for use under the Esri Master License -Agreement (MLA), and is bound by the terms of that agreement. -You may redistribute and use this code without modification, -provided you adhere to the terms of the MLA and include this -copyright notice. +js-es6 +✔︎ build/es6/tokens.js +✔︎ build/es6/tokens.d.ts -See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english +js-cjs +✔︎ build/cjs/tokens.js +✔︎ build/cjs/tokens.d.ts -For additional information, contact: -Environmental Systems Research Institute, Inc. -Attn: Contracts and Legal Services Department -380 New York Street -Redlands, California, USA 92373 -USA +android +✔︎ build/android/font_dimens.xml +✔︎ build/android/colors.xml -email: contracts@esri.com +ios +✔︎ build/ios/StyleDictionaryColor.h +✔︎ build/ios/StyleDictionaryColor.m +✔︎ build/ios/StyleDictionarySize.h +✔︎ build/ios/StyleDictionarySize.m -## Contributing +ios-swift +✔︎ build/ios-swift/StyleDictionary.swift -Please read the [contribute document](CONTRIBUTING.md). +ios-swift-separate-enums +✔︎ build/ios-swift/StyleDictionaryColor.swift +✔︎ build/ios-swift/StyleDictionarySize.swift diff --git a/config.json b/config.json new file mode 100644 index 00000000000..8688b526ccf --- /dev/null +++ b/config.json @@ -0,0 +1,147 @@ +{ + "source": ["sd-tokens/**/*.json"], + "platforms": { + "scss": { + "transformGroup": "scss", + "buildPath": "build/scss/", + "files": [{ + "destination": "_variables.scss", + "format": "scss/variables" + }] + }, + "css": { + "transformGroup": "css", + "buildPath": "build/css/", + "files": [{ + "destination": "tokens.css", + "format": "css/variables" + }] + }, + "js": { + "transformGroup": "js", + "buildPath": "build/es6/", + "files": [{ + "destination": "tokens.js", + "format": "javascript/es6" + }, { + "destination": "tokens.d.ts", + "format": "typescript/es6-declarations" + }] + }, + "cjs": { + "transformGroup": "js", + "buildPath": "build/cjs/", + "files": [{ + "destination": "tokens.js", + "format": "javascript/module" + }, { + "destination": "tokens.d.ts", + "format": "typescript/es6-declarations" + }] + }, + "android": { + "transformGroup": "android", + "buildPath": "build/android/", + "files": [{ + "destination": "font_dimens.xml", + "format": "android/fontDimens" + },{ + "destination": "colors.xml", + "format": "android/colors" + }] + }, + "ios": { + "transformGroup": "ios", + "buildPath": "build/ios/", + "files": [{ + "destination": "StyleDictionaryColor.h", + "format": "ios/colors.h", + "className": "StyleDictionaryColor", + "type": "StyleDictionaryColorName", + "filter": { + "attributes": { + "category": "color" + } + } + },{ + "destination": "StyleDictionaryColor.m", + "format": "ios/colors.m", + "className": "StyleDictionaryColor", + "type": "StyleDictionaryColorName", + "filter": { + "attributes": { + "category": "color" + } + } + },{ + "destination": "StyleDictionarySize.h", + "format": "ios/static.h", + "className": "StyleDictionarySize", + "type": "float", + "filter": { + "attributes": { + "category": "size" + } + } + },{ + "destination": "StyleDictionarySize.m", + "format": "ios/static.m", + "className": "StyleDictionarySize", + "type": "float", + "filter": { + "attributes": { + "category": "size" + } + } + }] + }, + "ios-swift": { + "transformGroup": "ios-swift", + "buildPath": "build/ios-swift/", + "files": [{ + "destination": "StyleDictionary+Class.swift", + "format": "ios-swift/class.swift", + "className": "StyleDictionaryClass", + "filter": {} + },{ + "destination": "StyleDictionary+Enum.swift", + "format": "ios-swift/enum.swift", + "className": "StyleDictionaryEnum", + "filter": {} + },{ + "destination": "StyleDictionary+Struct.swift", + "format": "ios-swift/any.swift", + "className": "StyleDictionaryStruct", + "filter": {}, + "options": { + "imports": "SwiftUI", + "objectType": "struct", + "accessControl": "internal" + } + }] + }, + "ios-swift-separate-enums": { + "transformGroup": "ios-swift-separate", + "buildPath": "build/ios-swift/", + "files": [{ + "destination": "StyleDictionaryColor.swift", + "format": "ios-swift/enum.swift", + "className": "StyleDictionaryColor", + "filter": { + "attributes": { + "category": "color" + } + } + },{ + "destination": "StyleDictionarySize.swift", + "format": "ios-swift/enum.swift", + "className": "StyleDictionarySize", + "filter": { + "attributes": { + "category": "size" + } + } + }] + } + } +} diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 565119afc98..00000000000 --- a/docs/index.html +++ /dev/null @@ -1,1528 +0,0 @@ - - - - - Calcite Styles - - - - - - - - -
- - -
-
- -
-
-

Overview

-

For the most part, Calcite leverages the built in classes supplied by Tailwind. For more information about tailwind classes, see the tailwind documentation. This guide is intended to be a "cheat sheet" for quickly viewing what's available.

-

Calcite Tailwind includes some customization of Tailwind in terms of how to use color, etc. Browse the sections below to see what classes are included in Calcite's tailwind config.

-
-
-

Spacing

-

The spacing scale used is the default Tailwind scale. This scale is used for many concepts from width/height to padding/margin.

-
-
0
-
-
-
-
px
-
-
-
-
1
-
-
-
-
2
-
-
-
-
3
-
-
-
-
4
-
-
-
-
5
-
-
-
-
6
-
-
-
-
8
-
-
-
-
10
-
-
-
-
12
-
-
-
-
16
-
-
-
-
20
-
-
-
-
24
-
-
-
-
32
-
-
-
-
40
-
-
-
-
48
-
-
-
-
56
-
-
-
-
64
-
-
-
-
-

Colors

-

The following colors are made available for multiple classes such as borders, backgrounds, text, etc. The colors can be customized via the underlying CSS Variables, see calcite components docs regarding theming for more information.

-
-
-
-
-

brand

-
-
-
-
-
-

brand-hover

-
-
-
-
-
-

brand-press

-
-
-
-
-
-

info

-
-
-
-
-
-

success

-
-
-
-
-
-

warning

-
-
-
-
-
-

danger

-
-
-
-
-
-

danger-hover

-
-
-
-
-
-

danger-press

-
-
-
-
-
-

background

-
-
-
-
-
-

foreground-1

-
-
-
-
-
-

foreground-2

-
-
-
-
-
-

foreground-3

-
-
-
-
-
- Aa -
-

text-1

-
-
-
-
-
- Aa -
-

text-2

-
-
-
-
-
- Aa -
-

text-3

-
-
-
-
-
- Aa -
-

text-link

-
-
-
-
-
-

Typography

-

Classes used for the type scale are custom to Calcite. Some helpers provided by the default Tailwind config have been removed.

- -
-
-

Sizes

-

.text--3

-

Hamburgevons

-

.text--2

-

Hamburgevons

-

.text--1

-

Hamburgevons

-

.text-0

-

Hamburgevons

-

.text-1

-

Hamburgevons

-

.text-2

-

Hamburgevons

-

.text-3

-

Hamburgevons

-

.text-4

-

Hamburgevons

-

.text-5

-

Hamburgevons

-

.text-6

-

Hamburgevons

-

.text-7

-

Hamburgevons

-

.text-8

-

Hamburgevons

-
-
-

Colors

-
-
-
- Aa -
-

.text-color-1

-
-
-
-
-
- Aa -
-

.text-color-2

-
-
-
-
-
- Aa -
-

.text-color-3

-
-
-
-
-
- Aa -
-

.text-color-link

-
-
-
-
-
- Aa -
-

.text-color-inverse

-
-
-
-
-
-
-
-

family

-
-
.font-sans
-
-
-
.font-mono
-
-
-
-

weight

-
-
.font-light
-
-
-
.font-normal
-
-
-
.font-medium
-
-
-
.font-bold
-
-
-
-

letter-spacing

-
-
.tracking-tighter
-
-
-
.tracking-tight
-
-
-
.tracking-normal
-
-
-
.tracking-wide
-
-
-
.tracking-wider
-
-
-
.tracking-widest
-
-
-
-

line-height

-
-
.leading-none
-
-
-
.leading-tight
-
-
-
.leading-snug
-
-
-
.leading-normal
-
-
-
.leading-relaxed
-
-
-
.leading-loose
-
-
-
-

list-style-type

-
-
.list-none
-
-
-
.list-disc
-
-
-
.list-decimal
-
-
-
-
-
-

style

-
-
.italic
-
-
-
.not-italic
-
-
-
-

smoothing

-
-
.antialiased
-
-
-
.subpixel-antialiased
-
-
-
-

list-style-positions

-
-
.list-inside
-
-
-
.list-outside
-
-
-
-

text-align

-
-
.text-left
-
-
-
.text-right
-
-
-
.text-center
-
-
-
.text-justify
-
-
-
-

text-decoration

-
-
.underline
-
-
-
.no-underline
-
-
-
.line-through
-
-
-
-
-
-
-

Flexbox

-

Flexbox classes are all directly from Tailwind with no changes.

- -
-
-
-

direction

-
-
.flex-row
-
-
-
.flex-col
-
-
-
.flex-row-reverse
-
-
-
.flex-col-reverse
-
-
-
-

wrap

-
-
.flex-wrap
-
-
-
.flex-no-wrap
-
-
-
.flex-wrap-reverse
-
-
-
-

align-items

-
-
.items-stretch
-
-
-
.items-start
-
-
-
.items-center
-
-
-
.items-end
-
-
-
.items-baseline
-
-
-
-

align-content

-
-
.content-start
-
-
-
.content-center
-
-
-
.content-end
-
-
-
.content-between
-
-
-
.content-around
-
-
-
-

justify-content

-
-
.justify-start
-
-
-
.justify-center
-
-
-
.justify-end
-
-
-
.justify-between
-
-
-
.justify-around
-
-
-
-
-
-

align-self

-
-
.self-auto
-
-
-
.self-start
-
-
-
.self-center
-
-
-
.self-end
-
-
-
.self-stretch
-
-
-
-

flex

-
-
.flex-initial
-
-
-
.flex-1
-
-
-
.flex-auto
-
-
-
.flex-none
-
-
-
-

flex-grow

-
-
.flex-grow
-
-
-
.flex-grow-0
-
-
-
-

flex-shrink

-
-
.flex-shrink
-
-
-
.flex-shrink-0
-
-
-
-

flex-order

-
-
.order-first
-
-
-
.order-last
-
-
-
.order-none
-
-
-
.order-{1-12}
-
-
-
-
-
-
-

Sizing

-

Sizing classes are all directly from Tailwind with no changes.

-
-
-
-

width

-
-
.w-0
-
-
-
.w-px
-
-
-
.w-auto
-
-
-
.w-{0-64}
-
-
-
.w-1/2
-
-
-
.w-{1-2}/3
-
-
-
.w-{1-3}/4
-
-
-
.w-{1-4}/5
-
-
-
.w-{1-5}/6
-
-
-
.w-{1-11}/12
-
-
-
.w-full
-
-
-
.w-screen
-
-
-
-
-
-
-

min-width

-
-
.min-w-0
-
-
-
.min-w-full
-
-
-
-

max-width

-
-
.max-w-xs
-
-
-
.max-w-sm
-
-
-
.max-w-md
-
-
-
.max-w-lg
-
-
-
.max-w-xl
-
-
-
.max-w-{2-6}xl
-
-
-
.max-w-full
-
-
-
-
-
-
-

height

-
-
.h-{0-64}
-
-
-
.h-px
-
-
-
.h-auto
-
-
-
.h-full
-
-
-
.h-screen
-
-
-
-

min-height

-
-
.min-h-0
-
-
-
.min-h-full
-
-
-
.min-h-screen
-
-
-
-

max-height

-
-
.max-h-full
-
-
-
.max-h-screen
-
-
-
-
-
-
-

Background

-

Background colors have their own classes named for their suggested use.

-
-
-
-

bg-color

-
-
.bg-brand
-
-
-
.bg-brand-hover
-
-
-
.bg-brand-press
-
-
-
.bg-info
-
-
-
.bg-success
-
-
-
.bg-warning
-
-
-
.bg-danger
-
-
-
.bg-danger-hover
-
-
-
.bg-danger-press
-
-
-
.bg-background
-
-
-
.bg-foreground-1
-
-
-
.bg-foreground-2
-
-
-
.bg-foreground-3
-
-
-
.bg-transparent
-
-
-
-
-
-

bg-attachment

-
-
.bg-fixed
-
-
-
.bg-local
-
-
-
.bg-scroll
-
-
-
-

bg-position

-
-
.bg-{left|right|top|bottom}
-
-
-
.bg-center
-
-
-
.bg-{left|right}-{top|bottom}
-
-
-
-

bg-repeat

-
-
.bg-repeat
-
-
-
.bg-norepeat
-
-
-
.bg-repeat-{x|y}
-
-
-
.bg-repeat-{round|space}
-
-
-
-

bg-size

-
-
.bg-auto
-
-
-
.bg-cover
-
-
-
.bg-contain
-
-
-
-
-
-
-

Border

-

Border colors are custom to Calcite, other border classes are inhertied from Tailwind's defaults.

-
-

border-color

-
-
-
-
.border-color-1
-
-
-
-
-
.border-color-2
-
-
-
-
-
.border-color-3
-
-
-
-
-
.border-color-input
-
-
-
-
-
.border-color-brand
-
-
-
-
-
.border-color-brand-hover
-
-
-
-
-
.border-color-brand-press
-
-
-
-
-
.border-color-info
-
-
-
-
-
.border-color-success
-
-
-
-
-
.border-color-warning
-
-
-
-
-
.border-color-danger
-
-
-
-
-
.border-color-danger-hover
-
-
-
-
-
.border-color-danger-press
-
-
-
-
-
-
-

border-style

-
-
.border-solid
-
-
-
.border-dotted
-
-
-
.border-dashed
-
-
-
.border-double
-
-
-
.border-none
-
-
-
-

border-width

-
-
.border-0
-
-
-
.border
-
-
-
.border-{2/4/8}
-
-
-
.border-{t/r/b/l}
-
-
-
.border-{t/r/b/l}-0
-
-
-
.border-{t/r/b/l}-{2/4/8}
-
-
-
-
-
-

border-radius

-
-
.rounded
-
-
-
.rounded-none
-
-
-
.rounded-sm
-
-
-
.rounded-md
-
-
-
.rounded-lg
-
-
-
.rounded-xl
-
-
-
.rounded-2xl
-
-
-
.rounded-3xl
-
-
-
.rounded-full
-
-
-
.rounded-half
-
-
-
.rounded-{t/r/b/l}
-
-
-
.rounded-{t/r/b/l}-{size}
-
-
-
.rounded-{t/r/b/l}-{lg/full}
-
-
-
.rounded-{tr/tl/br/bl}
-
-
-
.rounded-{tr/tl/br/bl}-{size}
-
-
-
-
-
-
-

Layout

-

Tailwind provides helpers for things like flex layouts, floats, positioning, display, etc.

-
-
-
-

Container

-
-
.container
-
-
-
-

Display

-
-
.block
-
-
-
.inline-block
-
-
-
.inline
-
-
-
.flex
-
-
-
.inline-flex
-
-
-
.table
-
-
-
.table-row
-
-
-
.table-cell
-
-
-
.hidden
-
-
-
-

Float

-
-
.float-right
-
-
-
.float-left
-
-
-
.float-none
-
-
-
.clearfix
-
-
-
-

Overflow

-
-
.overflow-auto
-
-
-
.overflow-hidden
-
-
-
.overflow-visible
-
-
-
.overflow-scroll
-
-
-
.object-left-top
-
-
-
.overflow-x-auto
-
-
-
.overflow-y-auto
-
-
-
.overflow-x-hidden
-
-
-
.overflow-y-hidden
-
-
-
.overflow-x-visible
-
-
-
.overflow-y-visible
-
-
-
.overflow-x-scroll
-
-
-
.overflow-y-scroll
-
-
-
.scrolling-touch (webkit)
-
-
-
.scrolling-auto (webkit)
-
-
-
- -
-
-

Object-Fit

-
-
.object-contain
-
-
-
.object-cover
-
-
-
.object-fill
-
-
-
.object-none
-
-
-
-

Object-Positions

-
-
.object-bottom
-
-
-
.object-center
-
-
-
.object-left
-
-
-
.object-left-bottom
-
-
-
.object-scale-down
-
-
-
.object-right
-
-
-
.object-right-bottom
-
-
-
.object-right-top
-
-
-
.object-top
-
-
-
-

Positions

-
-
.static
-
-
-
.relative
-
-
-
.absolute
-
-
-
.fixed
-
-
-
.sticky
-
-
-
-

Positions-TRBL

-
-
.{top|right|bottom|left}-0
-
-
-
.{top|right|bottom|left}-auto
-
-
-
.inset-0
-
-
-
.inset-auto
-
-
-
.inset-{x|y}-0
-
-
-
.inset-{x|y}-auto
-
-
-
-
-
-

Visible

-
-
.visible
-
-
-
.invisible
-
-
-
-

z-index

-
-
.z-0
-
-
-
.z-10
-
-
-
.z-20
-
-
-
.z-30
-
-
-
.z-40
-
-
-
.z-50
-
-
-
.z-auto
-
-
-
-
-
-
-

Margin and Padding

-

Margin and padding can be applied to any cardinal direction in any value on the spacing scale. These classes come directly from the Tailwind defaults.

-
-
-
-

padding

-
-
.p-px
-
-
-
.p-{0-64}
-
-
-
.p{x/y}-px
-
-
-
.p{x/y}-{0-64}
-
-
-
.p{t/r/b/l}-px
-
-
-
.p{t/r/b/l}-{0-64}
-
-
-
-
-
-

margin

-
-
.{-}m-px
-
-
-
.m-auto
-
-
-
.{-}m-{0-64}
-
-
-
.{-}m{x/y}-px
-
-
-
.{-}m{x/y}-{0-64}
-
-
-
.{-}m{t/r/b/l}-px
-
-
-
.{-}m{t/r/b/l}-{0-64}
-
-
-
-
-
-
-

Effect

-

Shadows are custom to Calcite values. Generally, shadows will grow on hover (lg) and lessen during click/active (sm).

-
-
-

Opacity

-
-
-
-
-
.opacity-0
-
-
-
-
-
-
.opacity-25
-
-
-
-
-
-
.opacity-50
-
-
-
-
-
-
.opacity-75
-
-
-
-
-
-
.opacity-100
-
-
-
-

Shadow

-
-
-
.shadow/.shadow-1
-
-
-
.shadow-1-lg
-
-
-
.shadow-1-sm
-
-
-
.shadow-2
-
-
-
.shadow-2-lg
-
-
-
.shadow-2-sm
-
-
-
.shadow-border-bottom
-
-
-
.shadow-outline-active
-
-
-
.shadow-none
-
-
-
-
-
-
-

Table

-
-
-
-

collapse

-
-
.border-collapse
-
-
-
.border-separate
-
-
-
-
-
-

Layout

-
-
.table-auto
-
-
-
.table-fixed
-
-
-
-
-
-
-

Interactivity

-
-
-
-

cursor

-
-
.cursor-auto
-
-
-
.cursor-default
-
-
-
.cursor-pointer
-
-
-
.cursor-wait
-
-
-
.cursor-text
-
-
-
.cursor-move
-
-
-
.cursor-not-allowed
-
-
-
-

user-select

-
-
.select-none
-
-
-
.select-text
-
-
-
.select-all
-
-
-
.select-auto
-
-
-
-
-
-

resize

-
-
.resize
-
-
-
.resize-{x/y}
-
-
-
.resize-none
-
-
-
-

pointer-events

-
-
.pointer-events-auto
-
-
-
.pointer-events-none
-
-
-
-
-
-
-

outline

-
-
.outline-none
-
-
-
-

appearance

-
-
.appearance-none
-
-
-
-
-
-
-
-

SVG

-
-
-

fill

-
-
.fill-current
-
-
-
-

stroke

-
-
.stroke-current
-
-
-
-
-
-
-
-
- - diff --git a/docs/postcss.config.js b/docs/postcss.config.js deleted file mode 100644 index 2b28849bae4..00000000000 --- a/docs/postcss.config.js +++ /dev/null @@ -1,9 +0,0 @@ -module.exports = { - plugins: [ - require("tailwindcss")({ - config: 'docs/tailwind.config.js' - }), - require("autoprefixer"), - ...(process.env.NODE_ENV === "production" ? [require("cssnano")] : []), - ], -}; diff --git a/docs/tailwind.config.js b/docs/tailwind.config.js deleted file mode 100644 index c364961c317..00000000000 --- a/docs/tailwind.config.js +++ /dev/null @@ -1,5 +0,0 @@ -var config = require("../tailwind.config"); -module.exports = { - purge: ["./docs/index.html"], - ...config -} diff --git a/package-lock.json b/package-lock.json index 9650f91cb48..c19fc66f272 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6635 +1,1114 @@ { - "name": "@esri/calcite-styles", + "name": "@esri/calcite-design-tokens", "version": "0.1.0", - "lockfileVersion": 1, + "lockfileVersion": 2, "requires": true, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", - "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", - "dev": true, - "requires": { - "@babel/highlight": "^7.12.13" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.13.10", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz", - "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.12.11", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, - "dependencies": { - "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" - } - }, - "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" - } - } - } - }, - "@fullhuman/postcss-purgecss": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@fullhuman/postcss-purgecss/-/postcss-purgecss-2.3.0.tgz", - "integrity": "sha512-qnKm5dIOyPGJ70kPZ5jiz0I9foVOic0j+cOzNDoo8KoCf6HjicIZ99UfO2OmE7vCYSKAAepEwJtNzpiiZAh9xw==", - "requires": { - "postcss": "7.0.32", - "purgecss": "^2.3.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss": { - "version": "7.0.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", - "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - } - } - }, - "@nodelib/fs.scandir": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", - "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.4", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", - "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", - "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.4", - "fastq": "^1.6.0" - } - }, - "@storybook/storybook-deployer": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@storybook/storybook-deployer/-/storybook-deployer-2.8.7.tgz", - "integrity": "sha512-O0hKHV6hg93fPMvKGC5M/sd7KTL473+SzMKm+WZNVEyLEfXXcVU+Ts9/VL1IhmC1P2A8Bg9oBnkcPqAqjAN46w==", - "dev": true, - "requires": { - "git-url-parse": "^11.1.2", - "glob": "^7.1.3", - "parse-repo": "^1.0.4", - "shelljs": "^0.8.1", - "yargs": "^15.0.0" - } - }, - "@types/normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", - "dev": true - }, - "@types/q": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", - "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", - "dev": true - }, - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "dev": true, - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - } - }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - }, - "acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "requires": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - } - }, - "acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", - "dev": true - }, - "ansi-align": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", - "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", - "dev": true, - "requires": { - "string-width": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "dev": true - }, - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "apache-crypt": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.4.tgz", - "integrity": "sha512-Icze5ny5W5uv3xgMgl8U+iGmRCC0iIDrb2PVPuRBtL3Zy1Y5TMewXP1Vtc4r5X9eNNBEk7KYPu0Qby9m/PmcHg==", - "dev": true, - "requires": { - "unix-crypt-td-js": "^1.1.4" - } - }, - "apache-md5": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.5.tgz", - "integrity": "sha512-sbLEIMQrkV7RkIruqTPXxeCMkAAycv4yzTkBzRgOR1BrR5UB7qZtupqxkersTJSf0HZ3sbaNRrNV80TnnM7cUw==", - "dev": true - }, - "application-config": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/application-config/-/application-config-1.0.1.tgz", - "integrity": "sha1-WqLipe1qvS5dHUc9NZb1dARP6ec=", - "dev": true, - "requires": { - "application-config-path": "^0.1.0", - "mkdirp": "^0.5.1" - } - }, - "application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha1-GTxfCoZUGkxm+6Hi3DhYM2LqXo8=", - "dev": true - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "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" - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "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-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "dev": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "dev": true - }, - "async": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", - "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", - "dev": true - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "dev": true - }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true - }, - "autoprefixer": { - "version": "9.8.6", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", - "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", - "requires": { - "browserslist": "^4.12.0", - "caniuse-lite": "^1.0.30001109", - "colorette": "^1.2.1", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^7.0.32", - "postcss-value-parser": "^4.1.0" - } - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "dev": true - }, - "aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", - "dev": true - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "dev": true, - "requires": { - "safe-buffer": "5.1.2" - } - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "bcryptjs": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", - "integrity": "sha1-mrVie5PmBiH/fNrF2pczAn3x0Ms=", - "dev": true - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "bl": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz", - "integrity": "sha1-/cqHGplxOqANGeO7ukHER4emU5g=", - "dev": true, - "requires": { - "readable-stream": "~2.0.5" - }, - "dependencies": { - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", - "dev": true - }, - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "~1.0.0", - "process-nextick-args": "~1.0.6", - "string_decoder": "~0.10.x", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - } - } - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", - "dev": true - }, - "boxen": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", - "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", - "dev": true, - "requires": { - "ansi-align": "^2.0.0", - "camelcase": "^4.0.0", - "chalk": "^2.0.1", - "cli-boxes": "^1.0.0", - "string-width": "^2.0.0", - "term-size": "^1.2.0", - "widest-line": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", - "dev": true - }, - "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" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "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" - } - } - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "browserslist": { - "version": "4.16.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz", - "integrity": "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==", - "requires": { - "caniuse-lite": "^1.0.30001181", - "colorette": "^1.2.1", - "electron-to-chromium": "^1.3.649", - "escalade": "^3.1.1", - "node-releases": "^1.1.70" - } - }, - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", - "dev": true, - "requires": { - "callsites": "^2.0.0" - } - }, - "caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", - "dev": true, - "requires": { - "caller-callsite": "^2.0.0" - } - }, - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", - "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-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" - }, - "caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "dev": true, - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "caniuse-lite": { - "version": "1.0.30001207", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001207.tgz", - "integrity": "sha512-UPQZdmAsyp2qfCTiMU/zqGSWOYaY9F9LL61V8f+8MrubsaDGpaHD9HRV/EWZGULZn0Hxu48SKzI5DgFwTvHuYw==" - }, - "capture-stack-trace": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", - "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", - "dev": true - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", - "dev": true - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.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==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "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==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "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==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "changelog-parser": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/changelog-parser/-/changelog-parser-2.8.0.tgz", - "integrity": "sha512-ZtSwN0hY7t+WpvaXqqXz98RHCNhWX9HsvCRAv1aBLlqJ7BpKtqdM6Nu6JOiUhRAWR7Gov0aN0fUnmflTz0WgZg==", - "dev": true, - "requires": { - "line-reader": "^0.2.4", - "remove-markdown": "^0.2.2" - } - }, - "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": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "ci-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", - "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", - "dev": true - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "cli-boxes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", - "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", - "dev": true - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "cli-width": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", - "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", - "dev": true - }, - "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" - } - }, - "coa": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "dev": true, - "requires": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" - }, - "dependencies": { - "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" - } - }, - "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" - } - } - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", - "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.4" - } - }, - "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==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "color-string": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", - "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" - }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" - }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "concurrently": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-6.0.1.tgz", - "integrity": "sha512-YCF/Wf31a910hXu7eGN9/SyHKD/usw3Shw4IPYuqIsxxC39v92engYlIlOs/zXnBJtX/6aVuhgzfhZeGJkhU4w==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "date-fns": "^2.16.1", - "lodash": "^4.17.20", - "read-pkg": "^5.2.0", - "rxjs": "^6.6.3", - "spawn-command": "^0.0.2-1", - "supports-color": "^8.1.0", - "tree-kill": "^1.2.2", - "yargs": "^16.2.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" - } - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "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" - } - }, - "y18n": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.6.tgz", - "integrity": "sha512-PlVX4Y0lDTN6E2V4ES2tEdyvXkeKzxa8c/vo0pxPr/TqbztddTP0yn7zZylIyiAuxerqj0Q5GhpJ1YJCP8LaZQ==", - "dev": true - }, - "yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "requires": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - } - }, - "yargs-parser": { - "version": "20.2.7", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz", - "integrity": "sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==", - "dev": true - } - } - }, - "configstore": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.5.tgz", - "integrity": "sha512-nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA==", - "dev": true, - "requires": { - "dot-prop": "^4.2.1", - "graceful-fs": "^4.1.2", - "make-dir": "^1.0.0", - "unique-string": "^1.0.0", - "write-file-atomic": "^2.0.0", - "xdg-basedir": "^3.0.0" - }, - "dependencies": { - "dot-prop": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz", - "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==", - "dev": true, - "requires": { - "is-obj": "^1.0.0" - } - }, - "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", - "dev": true - } - } - }, - "connect": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", - "dev": true, - "requires": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" - } - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "dev": true, - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "dev": true, - "requires": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - }, - "dependencies": { - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", - "dev": true, - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - } - } - }, - "create-error-class": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", - "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", - "dev": true, - "requires": { - "capture-stack-trace": "^1.0.0" - } - }, - "cross-env": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", - "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.1" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypto-random-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", - "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", - "dev": true - }, - "css-color-names": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", - "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", - "dev": true - }, - "css-declaration-sorter": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", - "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", - "dev": true, - "requires": { - "postcss": "^7.0.1", - "timsort": "^0.3.0" - } - }, - "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "dev": true, - "requires": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - } - }, - "css-select-base-adapter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", - "dev": true - }, - "css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", - "dev": true, - "requires": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - } - }, - "css-unit-converter": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", - "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" - }, - "css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", - "dev": true - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - }, - "cssnano": { - "version": "4.1.10", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", - "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", - "dev": true, - "requires": { - "cosmiconfig": "^5.0.0", - "cssnano-preset-default": "^4.0.7", - "is-resolvable": "^1.0.0", - "postcss": "^7.0.0" - } - }, - "cssnano-preset-default": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", - "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", - "dev": true, - "requires": { - "css-declaration-sorter": "^4.0.1", - "cssnano-util-raw-cache": "^4.0.1", - "postcss": "^7.0.0", - "postcss-calc": "^7.0.1", - "postcss-colormin": "^4.0.3", - "postcss-convert-values": "^4.0.1", - "postcss-discard-comments": "^4.0.2", - "postcss-discard-duplicates": "^4.0.2", - "postcss-discard-empty": "^4.0.1", - "postcss-discard-overridden": "^4.0.1", - "postcss-merge-longhand": "^4.0.11", - "postcss-merge-rules": "^4.0.3", - "postcss-minify-font-values": "^4.0.2", - "postcss-minify-gradients": "^4.0.2", - "postcss-minify-params": "^4.0.2", - "postcss-minify-selectors": "^4.0.2", - "postcss-normalize-charset": "^4.0.1", - "postcss-normalize-display-values": "^4.0.2", - "postcss-normalize-positions": "^4.0.2", - "postcss-normalize-repeat-style": "^4.0.2", - "postcss-normalize-string": "^4.0.2", - "postcss-normalize-timing-functions": "^4.0.2", - "postcss-normalize-unicode": "^4.0.1", - "postcss-normalize-url": "^4.0.1", - "postcss-normalize-whitespace": "^4.0.2", - "postcss-ordered-values": "^4.1.2", - "postcss-reduce-initial": "^4.0.3", - "postcss-reduce-transforms": "^4.0.2", - "postcss-svgo": "^4.0.2", - "postcss-unique-selectors": "^4.0.1" - } - }, - "cssnano-util-get-arguments": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", - "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", - "dev": true - }, - "cssnano-util-get-match": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", - "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", - "dev": true - }, - "cssnano-util-raw-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", - "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", - "dev": true, - "requires": { - "postcss": "^7.0.0" - } - }, - "cssnano-util-same-parent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", - "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", - "dev": true - }, - "csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "dev": true, - "requires": { - "css-tree": "^1.1.2" - }, - "dependencies": { - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "dev": true, - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - } - }, - "mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "dev": true - } - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "date-fns": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.19.0.tgz", - "integrity": "sha512-X3bf2iTPgCAQp9wvjOQytnf5vO5rESYRXlPIVcgSbtT5OTScPcsf9eZU+B/YIkKAtYr5WeCii58BgATrNitlWg==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "dev": true - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, - "requires": { - "object-keys": "^1.0.12" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "dev": true - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true - }, - "dependency-graph": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.9.0.tgz", - "integrity": "sha512-9YLIBURXj4DJMFALxXw9K3Y3rwb5Fk0X5/8ipCzaN84+gKxoHK43tVKRNakCQbiEx07E8Uwhuq21BpUagFhZ8w==", - "dev": true - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", - "dev": true - }, - "detective": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", - "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", - "requires": { - "acorn-node": "^1.6.1", - "defined": "^1.0.0", - "minimist": "^1.1.1" - } - }, - "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" - } - }, - "dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "dev": true, - "requires": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - }, - "dependencies": { - "domelementtype": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", - "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", - "dev": true - } - } - }, - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true - }, - "domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "dev": true, - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "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" - } - }, - "duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "duplexer2": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", - "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", - "dev": true, - "requires": { - "readable-stream": "~1.1.9" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - } - } - }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", - "dev": true - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "dev": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.708", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.708.tgz", - "integrity": "sha512-+A8ggYZ5riOLMcVAuzHx6bforaPzaiLnW1QOMD2SlMYQVi7QQTyQ/WrlZoebIH9ikmgr+tLJGpNITFFCUiQcPw==" - }, - "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 - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", - "dev": true - }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true - }, - "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" - }, - "dependencies": { - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - } - } - }, - "es-abstract": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", - "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.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==" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", - "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": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "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 - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", - "dev": true - }, - "event-stream": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", - "integrity": "sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=", - "dev": true, - "requires": { - "duplexer": "~0.1.1", - "from": "~0", - "map-stream": "~0.1.0", - "pause-stream": "0.0.11", - "split": "0.3", - "stream-combiner": "~0.0.4", - "through": "~2.3.1" - } - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", - "dev": true, - "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "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": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "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" - } - } - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "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" - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-glob": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", - "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", - "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" - }, - "dependencies": { - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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 - }, - "micromatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", - "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", - "dev": true, - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.0.5" - } - }, - "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" - } - } - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fastq": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", - "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true, - "optional": true - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "filter-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", - "integrity": "sha1-mzERErxsYSehbgFsbF1/GeCAXFs=", - "dev": true - }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - } - }, - "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" - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "dev": true - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "dev": true, - "requires": { - "map-cache": "^0.2.2" - } - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "dev": true - }, - "from": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", - "integrity": "sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4=", - "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==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "dev": true, - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "dev": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "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.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dev": true, - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "dev": true - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "gh-release": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/gh-release/-/gh-release-3.5.0.tgz", - "integrity": "sha512-CVp5ConOSXhSzO/975jraffwa0ZF7exl/vWJNsAXf4dZsEC9bcjG7QEhadDbJxrtaEVaByZ1jdK2AzLtw/cagQ==", - "dev": true, - "requires": { - "chalk": "^1.0.0", - "changelog-parser": "^2.0.0", - "deep-extend": "^0.6.0", - "gauge": "^2.7.4", - "gh-release-assets": "^1.1.0", - "ghauth": "^3.2.0", - "github-url-to-object": "^3.0.0", - "inquirer": "^6.2.0", - "request": "^2.82.0", - "shelljs": "^0.3.0", - "update-notifier": "^2.2.0", - "yargs": "^2.1.1" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "shelljs": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz", - "integrity": "sha1-NZbmMHp4FUT1kfN9phg2DzHbV7E=", - "dev": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - }, - "yargs": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-2.3.0.tgz", - "integrity": "sha1-6QDIclDsXNCA22AJ/j3WMVbx1/s=", - "dev": true, - "requires": { - "wordwrap": "0.0.2" - } - } - } - }, - "gh-release-assets": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/gh-release-assets/-/gh-release-assets-1.1.2.tgz", - "integrity": "sha1-771OrzKUoZhWNr/2s7lkXY/9lFc=", - "dev": true, - "requires": { - "async": "^0.9.0", - "mime": "^1.3.4", - "progress-stream": "^2.0.0", - "request": "^2.85.0", - "util-extend": "^1.0.1" - } - }, - "ghauth": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ghauth/-/ghauth-3.2.1.tgz", - "integrity": "sha1-RddVZDcWSti0sDfALGJ/1VAZ4xo=", - "dev": true, - "requires": { - "application-config": "~1.0.0", - "bl": "~1.1.2", - "hyperquest": "~2.0.0", - "mkdirp": "~0.5.1", - "read": "~1.0.7", - "xtend": "~4.0.1" - } - }, - "git-up": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/git-up/-/git-up-4.0.2.tgz", - "integrity": "sha512-kbuvus1dWQB2sSW4cbfTeGpCMd8ge9jx9RKnhXhuJ7tnvT+NIrTVfYZxjtflZddQYcmdOTlkAcjmx7bor+15AQ==", - "dev": true, - "requires": { - "is-ssh": "^1.3.0", - "parse-url": "^5.0.0" - } - }, - "git-url-parse": { - "version": "11.4.4", - "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.4.4.tgz", - "integrity": "sha512-Y4o9o7vQngQDIU9IjyCmRJBin5iYjI5u9ZITnddRZpD7dcCFQj2sL2XuMNbLRE4b4B/4ENPsp2Q8P44fjAZ0Pw==", - "dev": true, - "requires": { - "git-up": "^4.0.0" - } - }, - "github-url-to-object": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/github-url-to-object/-/github-url-to-object-3.1.0.tgz", - "integrity": "sha1-FgpdVa188EWeB1f3kS1xgHa37X0=", - "dev": true, - "requires": { - "is-url": "^1.1.0" - } - }, - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "global-dirs": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", - "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", - "dev": true, - "requires": { - "ini": "^1.3.4" - } - }, - "globby": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", - "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", - "slash": "^3.0.0" - } - }, - "got": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", - "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", - "dev": true, - "requires": { - "create-error-class": "^3.0.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-redirect": "^1.0.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "lowercase-keys": "^1.0.0", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "unzip-response": "^2.0.1", - "url-parse-lax": "^1.0.0" - } - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "dev": true - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "dev": true, - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - } - } - }, - "has-bigints": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "dev": true - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "dev": true, - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hex-color-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", - "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", - "dev": true - }, - "hosted-git-info": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", - "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", - "dev": true - }, - "hsl-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", - "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", - "dev": true - }, - "hsla-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", - "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", - "dev": true - }, - "html-comment-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", - "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==", - "dev": true - }, - "html-tags": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", - "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==" - }, - "http-auth": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/http-auth/-/http-auth-3.1.3.tgz", - "integrity": "sha1-lFz63WZSHq+PfISRPTd9exXyTjE=", - "dev": true, - "requires": { - "apache-crypt": "^1.1.2", - "apache-md5": "^1.0.6", - "bcryptjs": "^2.3.0", - "uuid": "^3.0.0" - } - }, - "http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "dependencies": { - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - } - } - }, - "http-parser-js": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", - "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==", - "dev": true - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "hyperquest": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hyperquest/-/hyperquest-2.0.0.tgz", - "integrity": "sha1-PRoMXYMpW83lx1qXjdquQJb4PAI=", - "dev": true, - "requires": { - "duplexer2": "~0.0.2", - "through2": "~0.6.3" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", - "dev": true, - "requires": { - "readable-stream": ">=1.0.33-1 <1.1.0-0", - "xtend": ">=4.0.0 <4.1.0-0" - } - } - } - }, - "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.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", - "dev": true - }, - "import-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", - "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", - "dev": true, - "requires": { - "import-from": "^2.1.0" - } - }, - "import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", - "dev": true, - "requires": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - } - }, - "import-from": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", - "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - } - }, - "import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", - "dev": true - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "inquirer": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz", - "integrity": "sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==", - "dev": true, - "requires": { - "ansi-escapes": "^3.2.0", - "chalk": "^2.4.2", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^2.0.0", - "lodash": "^4.17.12", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rxjs": "^6.4.0", - "string-width": "^2.1.0", - "strip-ansi": "^5.1.0", - "through": "^2.3.6" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "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" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - } - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true - }, - "is-absolute-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", - "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", - "dev": true - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, - "is-bigint": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", - "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==", - "dev": true - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dev": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", - "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", - "dev": true, - "requires": { - "call-bind": "^1.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "dev": true - }, - "is-ci": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", - "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", - "dev": true, - "requires": { - "ci-info": "^1.5.0" - } - }, - "is-color-stop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", - "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", - "dev": true, - "requires": { - "css-color-names": "^0.0.4", - "hex-color-regex": "^1.1.0", - "hsl-regex": "^1.0.0", - "hsla-regex": "^1.0.0", - "rgb-regex": "^1.0.1", - "rgba-regex": "^1.0.0" - } - }, - "is-core-module": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", - "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", - "requires": { - "has": "^1.0.3" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", - "dev": true - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", - "dev": true - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-installed-globally": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", - "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", - "dev": true, - "requires": { - "global-dirs": "^0.1.0", - "is-path-inside": "^1.0.0" - } - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "dev": true - }, - "is-npm": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", - "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", - "dev": true - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-number-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", - "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==", - "dev": true - }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "dev": true, - "requires": { - "path-is-inside": "^1.0.1" - } - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "is-redirect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", - "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", - "dev": true - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - } - }, - "is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", - "dev": true - }, - "is-retry-allowed": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", - "dev": true - }, - "is-ssh": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.2.tgz", - "integrity": "sha512-elEw0/0c2UscLrNG+OAorbP539E3rhliKPg+hDMWN9VwrDXfYK+4PBEykDPfxlYYtQvl84TascnQyobfQLHEhQ==", - "dev": true, - "requires": { - "protocols": "^1.1.0" - } - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "dev": true - }, - "is-string": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", - "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", - "dev": true - }, - "is-svg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", - "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", - "dev": true, - "requires": { - "html-comment-regex": "^1.1.0" - } - }, - "is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "dev": true - }, - "is-url": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", - "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", - "dev": true - }, - "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 - }, - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", - "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" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "dev": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "dev": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "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 - }, - "latest-version": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", - "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", - "dev": true, - "requires": { - "package-json": "^4.0.0" - } - }, - "line-reader": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/line-reader/-/line-reader-0.2.4.tgz", - "integrity": "sha1-xDkrWH3qOFgMlnhXDm6OSfzlJiI=", - "dev": true - }, - "lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", - "dev": true - }, - "live-server": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/live-server/-/live-server-1.2.1.tgz", - "integrity": "sha512-Yn2XCVjErTkqnM3FfTmM7/kWy3zP7+cEtC7x6u+wUzlQ+1UW3zEYbbyJrc0jNDwiMDZI0m4a0i3dxlGHVyXczw==", - "dev": true, - "requires": { - "chokidar": "^2.0.4", - "colors": "^1.4.0", - "connect": "^3.6.6", - "cors": "^2.8.5", - "event-stream": "3.3.4", - "faye-websocket": "0.11.x", - "http-auth": "3.1.x", - "morgan": "^1.9.1", - "object-assign": "^4.1.1", - "opn": "^6.0.0", - "proxy-middleware": "^0.15.0", - "send": "^0.17.1", - "serve-index": "^1.9.1" - }, - "dependencies": { - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "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" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", - "dev": true - }, - "lodash.toarray": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", - "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", - "dev": true - }, - "log-symbols": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", - "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", - "dev": true, - "requires": { - "chalk": "^2.0.1" - }, - "dependencies": { - "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" - } - }, - "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" - } - } - } - }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "dev": true - }, - "lru-cache": { - "version": "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" - } - }, - "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true - }, - "map-stream": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", - "integrity": "sha1-5WqpTEyAVaFkBKBnS3jyFffI4ZQ=", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "dev": true, - "requires": { - "object-visit": "^1.0.0" - } - }, - "mdn-data": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", - "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", - "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": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "mime-db": { - "version": "1.47.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz", - "integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==", - "dev": true - }, - "mime-types": { - "version": "2.1.30", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz", - "integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==", - "dev": true, - "requires": { - "mime-db": "1.47.0" - } - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "dev": true, - "requires": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "nan": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", - "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", - "dev": true, - "optional": true - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - } - }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "dev": true - }, - "node-emoji": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz", - "integrity": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==", - "requires": { - "lodash.toarray": "^4.4.0" - } - }, - "node-releases": { - "version": "1.1.71", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", - "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" - }, - "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" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" - }, - "normalize-url": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", - "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", - "dev": true - }, - "normalize.css": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz", - "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==" - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", - "dev": true, - "requires": { - "path-key": "^2.0.0" - }, - "dependencies": { - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - } - } - }, - "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "dev": true, - "requires": { - "boolbase": "~1.0.0" - } - }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dev": true, - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "object-hash": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.1.1.tgz", - "integrity": "sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ==" - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", - "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-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "dev": true, - "requires": { - "isobject": "^3.0.0" - } - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "object.getownpropertydescriptors": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", - "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "object.values": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz", - "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2", - "has": "^1.0.3" - } - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - } - }, - "opn": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-6.0.0.tgz", - "integrity": "sha512-I9PKfIZC+e4RXZ/qr1RhgyCnGgYX0UEIlXgWnCOVACIvFgaC9rz6Won7xbdhoHrd8IIhV7YEpHjreNUNkqCGkQ==", - "dev": true, - "requires": { - "is-wsl": "^1.1.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "dev": true - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "p-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 - }, - "package-json": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", - "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", - "dev": true, - "requires": { - "got": "^6.7.1", - "registry-auth-token": "^3.0.1", - "registry-url": "^3.0.3", - "semver": "^5.1.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "parse-path": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-4.0.3.tgz", - "integrity": "sha512-9Cepbp2asKnWTJ9x2kpw6Fe8y9JDbqwahGCTvklzd/cEq5C5JC59x2Xb0Kx+x0QZ8bvNquGO8/BWP0cwBHzSAA==", - "dev": true, - "requires": { - "is-ssh": "^1.3.0", - "protocols": "^1.4.0", - "qs": "^6.9.4", - "query-string": "^6.13.8" - } - }, - "parse-repo": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/parse-repo/-/parse-repo-1.0.4.tgz", - "integrity": "sha1-dLkdLLhnXRG5mXagBl9s4X+hvMg=", - "dev": true - }, - "parse-url": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-5.0.2.tgz", - "integrity": "sha512-Czj+GIit4cdWtxo3ISZCvLiUjErSo0iI3wJ+q9Oi3QuMYTI6OZu+7cewMWZ+C1YAnKhYTk6/TLuhIgCypLthPA==", - "dev": true, - "requires": { - "is-ssh": "^1.3.0", - "normalize-url": "^3.3.0", - "parse-path": "^4.0.0", - "protocols": "^1.4.0" - } - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "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-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", - "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.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" - }, - "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 - }, - "pause-stream": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", - "integrity": "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=", - "dev": true, - "requires": { - "through": "~2.3" - } - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", - "dev": true - }, - "picomatch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "dev": true - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "dev": true - }, - "postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - } - } - }, - "postcss-calc": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", - "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", - "dev": true, - "requires": { - "postcss": "^7.0.27", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.0.2" - } - }, - "postcss-cli": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-7.1.2.tgz", - "integrity": "sha512-3mlEmN1v2NVuosMWZM2tP8bgZn7rO5PYxRRrXtdSyL5KipcgBDjJ9ct8/LKxImMCJJi3x5nYhCGFJOkGyEqXBQ==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "chokidar": "^3.3.0", - "dependency-graph": "^0.9.0", - "fs-extra": "^9.0.0", - "get-stdin": "^8.0.0", - "globby": "^11.0.0", - "postcss": "^7.0.0", - "postcss-load-config": "^2.0.0", - "postcss-reporter": "^6.0.0", - "pretty-hrtime": "^1.0.3", - "read-cache": "^1.0.0", - "yargs": "^15.0.2" - }, - "dependencies": { - "anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "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 - }, - "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" - } - }, - "chokidar": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", - "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", - "dev": true, - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.3.1", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" - } - }, - "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" - } - }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "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" - } - }, - "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-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "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" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } - }, - "postcss-colormin": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", - "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", - "dev": true, - "requires": { - "browserslist": "^4.0.0", - "color": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-convert-values": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", - "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", - "dev": true, - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-discard-comments": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", - "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", - "dev": true, - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-discard-duplicates": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", - "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", - "dev": true, - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-discard-empty": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", - "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", - "dev": true, - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-discard-overridden": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", - "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", - "dev": true, - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-functions": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-functions/-/postcss-functions-3.0.0.tgz", - "integrity": "sha1-DpTQFERwCkgd4g3k1V+yZAVkJQ4=", - "requires": { - "glob": "^7.1.2", - "object-assign": "^4.1.1", - "postcss": "^6.0.9", - "postcss-value-parser": "^3.3.0" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-js": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-2.0.3.tgz", - "integrity": "sha512-zS59pAk3deu6dVHyrGqmC3oDXBdNdajk4k1RyxeVXCrcEDBUBHoIhE4QTsmhxgzXxsaqFDAkUZfmMa5f/N/79w==", - "requires": { - "camelcase-css": "^2.0.1", - "postcss": "^7.0.18" - } - }, - "postcss-load-config": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", - "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", - "dev": true, - "requires": { - "cosmiconfig": "^5.0.0", - "import-cwd": "^2.0.0" - } - }, - "postcss-merge-longhand": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", - "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", - "dev": true, - "requires": { - "css-color-names": "0.0.4", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "stylehacks": "^4.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-merge-rules": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", - "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", - "dev": true, - "requires": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "cssnano-util-same-parent": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0", - "vendors": "^1.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-minify-font-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", - "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", - "dev": true, - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-minify-gradients": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", - "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", - "dev": true, - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "is-color-stop": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-minify-params": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", - "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", - "dev": true, - "requires": { - "alphanum-sort": "^1.0.0", - "browserslist": "^4.0.0", - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "uniqs": "^2.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-minify-selectors": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", - "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", - "dev": true, - "requires": { - "alphanum-sort": "^1.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-nested": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-4.2.3.tgz", - "integrity": "sha512-rOv0W1HquRCamWy2kFl3QazJMMe1ku6rCFoAAH+9AcxdbpDeBr6k968MLWuLjvjMcGEip01ak09hKOEgpK9hvw==", - "requires": { - "postcss": "^7.0.32", - "postcss-selector-parser": "^6.0.2" - } - }, - "postcss-normalize-charset": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", - "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", - "dev": true, - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-normalize-display-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", - "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", - "dev": true, - "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-normalize-positions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", - "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", - "dev": true, - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-normalize-repeat-style": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", - "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", - "dev": true, - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-normalize-string": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", - "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", - "dev": true, - "requires": { - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-normalize-timing-functions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", - "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", - "dev": true, - "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-normalize-unicode": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", - "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", - "dev": true, - "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-normalize-url": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", - "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", - "dev": true, - "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-normalize-whitespace": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", - "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", - "dev": true, - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-ordered-values": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", - "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", - "dev": true, - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-reduce-initial": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", - "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", - "dev": true, - "requires": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0" - } - }, - "postcss-reduce-transforms": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", - "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", - "dev": true, - "requires": { - "cssnano-util-get-match": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-reporter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-6.0.1.tgz", - "integrity": "sha512-LpmQjfRWyabc+fRygxZjpRxfhRf9u/fdlKf4VHG4TSPbV2XNsuISzYW1KL+1aQzx53CAppa1bKG4APIB/DOXXw==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "lodash": "^4.17.11", - "log-symbols": "^2.2.0", - "postcss": "^7.0.7" - }, - "dependencies": { - "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" - } - }, - "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" - } - } - } - }, - "postcss-selector-parser": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", - "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", - "requires": { - "cssesc": "^3.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1", - "util-deprecate": "^1.0.2" - } - }, - "postcss-svgo": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", - "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", - "dev": true, - "requires": { - "is-svg": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "svgo": "^1.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - } - } - }, - "postcss-unique-selectors": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", - "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", - "dev": true, - "requires": { - "alphanum-sort": "^1.0.0", - "postcss": "^7.0.0", - "uniqs": "^2.0.0" - } - }, - "postcss-value-parser": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", - "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "dev": true - }, - "pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "progress-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-2.0.0.tgz", - "integrity": "sha1-+sY6Cz0R3qy7CWmrzJOyFLzhntU=", - "dev": true, - "requires": { - "speedometer": "~1.0.0", - "through2": "~2.0.3" - } - }, - "protocols": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-1.4.8.tgz", - "integrity": "sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==", - "dev": true - }, - "proxy-middleware": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.15.0.tgz", - "integrity": "sha1-o/3xvvtzD5UZZYcqwvYHTGFHelY=", - "dev": true - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", - "dev": true - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "purgecss": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-2.3.0.tgz", - "integrity": "sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==", - "requires": { - "commander": "^5.0.0", - "glob": "^7.0.0", - "postcss": "7.0.32", - "postcss-selector-parser": "^6.0.2" - }, - "dependencies": { - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss": { - "version": "7.0.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", - "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - } + "packages": { + "": { + "name": "@esri/calcite-design-tokens", + "version": "0.1.0", + "license": "SEE LICENSE IN README.md", + "devDependencies": { + "style-dictionary": "^3.7.1", + "token-transformer": "^0.0.27" } }, - "q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "dev": true - }, - "qs": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz", - "integrity": "sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==", + "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, - "requires": { - "side-channel": "^1.0.4" + "engines": { + "node": ">=8" } }, - "query-string": { - "version": "6.14.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz", - "integrity": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==", + "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, - "requires": { - "decode-uri-component": "^0.2.0", - "filter-obj": "^1.1.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "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 - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "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 }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "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, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, - "requires": { - "mute-stream": "~0.0.4" + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" } }, - "read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", "dev": true, - "requires": { - "pify": "^2.3.0" - }, "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" } }, - "read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "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, - "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": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "node_modules/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "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, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "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, - "requires": { - "resolve": "^1.1.6" - } - }, - "reduce-css-calc": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", - "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", - "requires": { - "css-unit-converter": "^1.1.1", - "postcss-value-parser": "^3.3.0" - }, "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "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/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true, - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" + "engines": { + "node": ">= 12" } }, - "registry-auth-token": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz", - "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==", + "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 + }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", "dev": true, - "requires": { - "rc": "^1.1.6", - "safe-buffer": "^5.0.1" + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" } }, - "registry-url": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", - "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, - "requires": { - "rc": "^1.0.1" + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "remove-markdown": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/remove-markdown/-/remove-markdown-0.2.2.tgz", - "integrity": "sha1-ZrDO66n7d8qWNrsbAwfOIaMqEqY=", - "dev": true - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "dev": true - }, - "repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "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 }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true + "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" + } }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, "dependencies": { - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true - } + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" } }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true - }, - "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==", + "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 }, - "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", - "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "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.*" } }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "dev": true - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" + "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" } }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true + "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" + } }, - "rgb-regex": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", - "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", - "dev": true + "node_modules/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } }, - "rgba-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", - "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", - "dev": true + "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==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "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 }, - "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==", + "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, - "requires": { - "queue-microtask": "^1.2.2" + "engines": { + "node": ">=8" } }, - "rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "node_modules/json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "dev": true, - "requires": { - "tslib": "^1.9.0" + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" } }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", "dev": true }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "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, - "requires": { - "ret": "~0.1.10" + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "semver-diff": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", - "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, - "requires": { - "semver": "^5.0.3" + "dependencies": { + "tslib": "^2.0.3" } }, - "send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "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, - "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" - }, "dependencies": { - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - } + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, - "requires": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - }, "dependencies": { - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - } + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "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, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } + "wrappy": "1" } }, - "setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", - "dev": true - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, - "requires": { - "shebang-regex": "^3.0.0" + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "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 - }, - "shelljs": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz", - "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", "dev": true, - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "dev": true - }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", - "requires": { - "is-arrayish": "^0.3.1" + "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, + "engines": { + "node": ">=0.10.0" } }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true + "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" + } }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", "dev": true, - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" } }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", "dev": true, - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "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, - "requires": { - "kind-of": "^3.2.0" - }, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "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, - "requires": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "dev": true - }, - "spawn-command": { - "version": "0.0.2-1", - "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", - "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", - "dev": true - }, - "spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "node_modules/style-dictionary": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.1.tgz", + "integrity": "sha512-yYU9Z/J8Znj9T9oJVjo8VOYamrOxv0UbBKPjhSt+PharxrhyQCM4RWb71fgEfv2pK9KO8G83/0ChDNQZ1mn0wQ==", "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "dependencies": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.0", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.1" + }, + "bin": { + "style-dictionary": "bin/style-dictionary" + }, + "engines": { + "node": ">=12.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==", + "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, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "spdx-license-ids": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", - "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", - "dev": true - }, - "speedometer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz", - "integrity": "sha1-zWccsGdSwivKM3Di8zREC+T8YuI=", - "dev": true + "node_modules/tinycolor2": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", + "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", + "dev": true, + "engines": { + "node": "*" + } }, - "split": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", - "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", + "node_modules/token-transformer": { + "version": "0.0.27", + "resolved": "https://registry.npmjs.org/token-transformer/-/token-transformer-0.0.27.tgz", + "integrity": "sha512-IBClwoMFrOGrlTD9ql/wArgRCe1IpKbPVfYoLPkegS9kK5yAOz7O4U8VJeZbq6FjSy73C+zLmtz7H8V5k2LqjQ==", "dev": true, - "requires": { - "through": "2" + "dependencies": { + "yargs": "^17.4.1" + }, + "bin": { + "token-transformer": "index.js" } }, - "split-on-first": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", - "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", + "node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", "dev": true }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, - "requires": { - "extend-shallow": "^3.0.0" + "engines": { + "node": ">= 10.0.0" } }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", "dev": true, - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" + "dependencies": { + "tslib": "^2.0.3" } }, - "stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "dev": true - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", "dev": true, - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } + "tslib": "^2.0.3" } }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "dev": true - }, - "stream-combiner": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", - "integrity": "sha1-TV5DPBhSYd3mI8o/RMWGvPXErRQ=", + "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, - "requires": { - "duplexer": "~0.1.1" + "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" } }, - "strict-uri-encode": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", - "integrity": "sha1-ucczDHBChi9rFC3CdLvMWGbONUY=", + "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 }, - "string-width": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", - "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "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, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" + "engines": { + "node": ">=10" } }, - "string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "node_modules/yargs": { + "version": "17.6.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", + "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "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" } }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "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, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "engines": { + "node": ">=12" } + } + }, + "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 }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "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": { - "safe-buffer": "~5.1.0" + "color-convert": "^2.0.1" } }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "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 + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "requires": { - "ansi-regex": "^5.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", - "dev": true - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - }, - "stylehacks": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", - "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" } }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, "requires": { - "has-flag": "^3.0.0" + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" } }, - "svgo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", - "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "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": { - "chalk": "^2.4.1", - "coa": "^2.0.2", - "css-select": "^2.0.0", - "css-select-base-adapter": "^0.1.1", - "css-tree": "1.0.0-alpha.37", - "csso": "^4.0.2", - "js-yaml": "^3.13.1", - "mkdirp": "~0.5.1", - "object.values": "^1.1.0", - "sax": "~1.2.4", - "stable": "^0.1.8", - "unquote": "~1.1.1", - "util.promisify": "~1.0.0" - }, - "dependencies": { - "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" - } - }, - "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" - } - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "tailwindcss": { - "version": "1.9.6", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-1.9.6.tgz", - "integrity": "sha512-nY8WYM/RLPqGsPEGEV2z63riyQPcHYZUJpAwdyBzVpxQHOHqHE+F/fvbCeXhdF1+TA5l72vSkZrtYCB9hRcwkQ==", + "change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dev": true, "requires": { - "@fullhuman/postcss-purgecss": "^2.1.2", - "autoprefixer": "^9.4.5", - "browserslist": "^4.12.0", - "bytes": "^3.0.0", - "chalk": "^3.0.0 || ^4.0.0", - "color": "^3.1.2", - "detective": "^5.2.0", - "fs-extra": "^8.0.0", - "html-tags": "^3.1.0", - "lodash": "^4.17.20", - "node-emoji": "^1.8.1", - "normalize.css": "^8.0.1", - "object-hash": "^2.0.3", - "postcss": "^7.0.11", - "postcss-functions": "^3.0.0", - "postcss-js": "^2.0.0", - "postcss-nested": "^4.1.1", - "postcss-selector-parser": "^6.0.0", - "postcss-value-parser": "^4.1.0", - "pretty-hrtime": "^1.0.3", - "reduce-css-calc": "^2.1.6", - "resolve": "^1.14.2" + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "term-size": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", - "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", + "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": { - "execa": "^0.7.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" } }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "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": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" + "color-name": "~1.1.4" } }, - "timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "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 }, - "timsort": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", - "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "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" - } + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", "dev": true, "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" } }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.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 }, - "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" } }, - "tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "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 }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "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 }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "requires": { - "safe-buffer": "^5.0.1" + "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" } }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, - "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==", + "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 }, - "unbox-primitive": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", - "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", "dev": true, "requires": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.1", - "has-symbols": "^1.0.2", - "which-boxed-primitive": "^1.0.2" + "capital-case": "^1.0.4", + "tslib": "^2.0.3" } }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" + "once": "^1.3.0", + "wrappy": "1" } }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" - }, - "uniqs": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "unique-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", - "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", - "dev": true, - "requires": { - "crypto-random-string": "^1.0.0" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - }, - "unix-crypt-td-js": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.1.4.tgz", - "integrity": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==", + "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 }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "dev": true }, - "unquote": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", + "jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", "dev": true }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true - } + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" } }, - "unzip-response": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", - "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", - "dev": true - }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "update-notifier": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", - "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "requires": { - "boxen": "^1.2.1", - "chalk": "^2.0.1", - "configstore": "^3.0.0", - "import-lazy": "^2.1.0", - "is-ci": "^1.0.10", - "is-installed-globally": "^0.1.0", - "is-npm": "^1.0.0", - "latest-version": "^3.0.0", - "semver-diff": "^2.0.0", - "xdg-basedir": "^3.0.0" - }, - "dependencies": { - "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" - } - }, - "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" - } - } + "tslib": "^2.0.3" } }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { - "punycode": "^2.1.0" + "brace-expansion": "^1.1.7" } }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "dev": true - }, - "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "requires": { - "prepend-http": "^1.0.1" + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true + "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, + "requires": { + "wrappy": "1" + } }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } }, - "util-extend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", - "integrity": "sha1-p8IW0mdUUWljeztu3GypEZ4v+T8=", - "dev": true + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } }, - "util.promisify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", - "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", "dev": true, "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.2", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.0" + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "utils-merge": { + "path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "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 }, - "validate-npm-package-license": { + "sentence-case": { "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==", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", "dev": true, "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" } }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "dev": true - }, - "vendors": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", - "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", - "dev": true + "snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "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": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" } }, - "websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "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": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" + "ansi-regex": "^5.0.1" } }, - "websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "dev": true + "style-dictionary": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.1.tgz", + "integrity": "sha512-yYU9Z/J8Znj9T9oJVjo8VOYamrOxv0UbBKPjhSt+PharxrhyQCM4RWb71fgEfv2pK9KO8G83/0ChDNQZ1mn0wQ==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.0", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.1" + } }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "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": { - "isexe": "^2.0.0" + "has-flag": "^4.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==", + "tinycolor2": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", + "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", + "dev": true + }, + "token-transformer": { + "version": "0.0.27", + "resolved": "https://registry.npmjs.org/token-transformer/-/token-transformer-0.0.27.tgz", + "integrity": "sha512-IBClwoMFrOGrlTD9ql/wArgRCe1IpKbPVfYoLPkegS9kK5yAOz7O4U8VJeZbq6FjSy73C+zLmtz7H8V5k2LqjQ==", "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" + "yargs": "^17.4.1" } }, - "which-module": { + "tslib": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "dev": true + }, + "universalify": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true }, - "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", "dev": true, "requires": { - "string-width": "^1.0.2 || 2" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } + "tslib": "^2.0.3" } }, - "widest-line": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", - "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", + "upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", "dev": true, "requires": { - "string-width": "^2.1.1" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } + "tslib": "^2.0.3" } }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", - "dev": true - }, "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==", + "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" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - } } }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "write-file-atomic": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", - "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } - }, - "xdg-basedir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", - "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - }, "y18n": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", - "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", - "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "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==", + "version": "17.6.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", + "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", "dev": true, "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "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.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" } }, "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" - } + "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 } } } diff --git a/package.json b/package.json index 39aae13a2b3..d7546775857 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,15 @@ { - "name": "@esri/calcite-styles", + "name": "@esri/calcite-design-tokens", "version": "0.1.0", - "description": "Shared Tailwind CSS Configuration for Esri's Calcite Design System", - "homepage": "https://github.com/Esri/calcite-styles", - "main": "tailwind.config.js", + "description": "Esri's Calcite Design System Tokens", + "homepage": "https://github.com/Esri/calcite-design-tokens", + "keywords": [ + "Calcite", + "Calcite Design System", + "design tokens", + "tokens" + ], + "main": "dist/index.js", "repository": { "type": "git", "url": "git://github.com/Esri/calcite-styles.git" @@ -13,44 +19,39 @@ }, "contributors": [ { - "name": "Julio Ochoa", - "email": "jochoa@esri.com" + "name": "Ali Stump", + "email": "astump@esri.com" + }, + { + "name": "Erik Harper-Dicianno", + "email": "eharperdicianno@esri.com" + }, + { + "name": "Bruno Aires", + "email": "baires@esri.com" }, { - "name": "Adam Tirella", - "email": "atirella@esri.com" + "name": "Jacques Keet", + "email": "jkeet@esri.com" }, { - "name": "Paul Pederson", - "email": "ppederson@esri.com" + "name": "Manuela Costa", + "email": "mcosta@esri.com" } ], "license": "SEE LICENSE IN README.md", "bugs": { - "url": "https://github.com/esri/calcite-styles/issues" + "url": "https://github.com/esri/calcite-design-tokens/issues" }, - "files": [ - "dist/" - ], - "dependencies": { - "tailwindcss": "^1.7.2" + "scripts": { + "test": "echo 'No Tests yet, what are you doing?'", + "build": "npm run build:transformer && npm run build:sd", + "build:sd": "style-dictionary build", + "build:transformer": "token-transformer tokens sd-tokens/output.json", + "release": "echo 'release is still TBD. Please message Ali Stump or Erik Harper-Dicianno for more information." }, "devDependencies": { - "@storybook/storybook-deployer": "^2.8.7", - "autoprefixer": "^9.8.6", - "concurrently": "^6.0.0", - "cross-env": "^7.0.3", - "cssnano": "^4.1.10", - "gh-release": "3.5.0", - "live-server": "^1.2.1", - "postcss-cli": "^7.1.1" - }, - "scripts": { - "release": "gh-release", - "start": "cross-env NODE_ENV=development concurrently \"postcss tailwind.css -o docs/tailwind.css --watch\" \"live-server ./docs\" ", - "docs": "cross-env NODE_ENV=production concurrently \"postcss tailwind.css -o docs/tailwind.css --config ./docs/postcss.config.js\"", - "dist": "cross-env NODE_ENV=production postcss tailwind.css -o dist/tailwind.css", - "gh-pages": "npm run docs && storybook-to-ghpages --existing-output-dir=docs", - "postgh-pages": "git checkout -- docs" + "style-dictionary": "^3.7.1", + "token-transformer": "^0.0.27" } } diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index 8985e91fef0..00000000000 --- a/postcss.config.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - plugins: [ - require("tailwindcss"), - require("autoprefixer"), - ...(process.env.NODE_ENV === "production" ? [require("cssnano")] : []), - ], -}; diff --git a/tailwind.config.js b/tailwind.config.js deleted file mode 100644 index f2f482946c4..00000000000 --- a/tailwind.config.js +++ /dev/null @@ -1,271 +0,0 @@ -// eslint-disable-next-line @typescript-eslint/no-var-requires -var flattenColorPalette = require("tailwindcss/lib/util/flattenColorPalette").default; - -module.exports = { - theme: { - borderColor: (theme) => ({ - color: { - 1: "var(--calcite-ui-border-1)", - 2: "var(--calcite-ui-border-2)", - 3: "var(--calcite-ui-border-3)", - input: "var(--calcite-ui-border-input)", - transparent: theme("colors.transparent") - }, - "color-brand": theme("colors.brand"), - "color-brand-hover": theme("colors.brand-hover"), - "color-brand-press": theme("colors.brand-press"), - "color-info": theme("colors.info"), - "color-success": theme("colors.success"), - "color-warning": theme("colors.warning"), - "color-danger": theme("colors.danger"), - "color-danger-hover": theme("colors.danger-hover"), - "color-danger-press": theme("colors.danger-press") - }), - colors: { - brand: "var(--calcite-ui-brand)", - "brand-hover": "var(--calcite-ui-brand-hover)", - "brand-press": "var(--calcite-ui-brand-press)", - info: "var(--calcite-ui-info)", - success: "var(--calcite-ui-success)", - warning: "var(--calcite-ui-warning)", - danger: "var(--calcite-ui-danger)", - "danger-hover": "var(--calcite-ui-danger-hover)", - "danger-press": "var(--calcite-ui-danger-press)", - background: { - background: "var(--calcite-ui-background)", - foreground: { - 1: "var(--calcite-ui-foreground-1)", - 2: "var(--calcite-ui-foreground-2)", - 3: "var(--calcite-ui-foreground-3)" - } - }, - text: { - 1: "var(--calcite-ui-text-1)", - 2: "var(--calcite-ui-text-2)", - 3: "var(--calcite-ui-text-3)", - inverse: "var(--calcite-ui-text-inverse)", - link: "var(--calcite-ui-text-link)" - }, - transparent: "transparent" - }, - fontFamily: { - // assets/styles/_type - sans: "var(--calcite-sans-family)", - mono: "var(--calcite-code-family)", - inherit: "inherit" - }, - fontSize: { - // assets/styles/_type - "-3": "var(--calcite-font-size--3)", // 10px - "-2": "var(--calcite-font-size--2)", // 12px - "-1": "var(--calcite-font-size--1)", // 14px - 0: "var(--calcite-font-size-0)", // 16px - 1: "var(--calcite-font-size-1)", // 18px - 2: "var(--calcite-font-size-2)", // 20px - 3: "var(--calcite-font-size-3)", // 26px - 4: "var(--calcite-font-size-4)", // 32px - 5: "var(--calcite-font-size-5)", // 40px - 6: "var(--calcite-font-size-6)", // 48px - 7: "var(--calcite-font-size-7)", // 56px - 8: "var(--calcite-font-size-8)", // 64px - // TODO: temp selectors to be renamed before closing https://github.com/Esri/calcite-components/issues/1500. - // at this point all existing instances of text-N should be replaced with either text-Nh or text-N-wrap and we - // should be able to safely drop the "h" suffix. - "-3h": ["var(--calcite-font-size--3)", { lineHeight: "0.75rem" }], // 10px (0.625rem) - "-2h": ["var(--calcite-font-size--2)", { lineHeight: "1rem" }], // 12px (0.75rem) - "-1h": ["var(--calcite-font-size--1)", { lineHeight: "1rem" }], // 14px (0.875rem) - "0h": ["var(--calcite-font-size-0)", { lineHeight: "1.25rem" }], // 16px (1rem) - "1h": ["var(--calcite-font-size-1)", { lineHeight: "1.5rem" }], // 18px (1.125rem) - "2h": ["var(--calcite-font-size-2)", { lineHeight: "1.5rem" }], // 20px (1.25rem) - "3h": ["var(--calcite-font-size-3)", { lineHeight: "2rem" }], // 26px (1.625rem) - "4h": ["var(--calcite-font-size-4)", { lineHeight: "2.5rem" }], // 32px (2rem) - "5h": ["var(--calcite-font-size-5)", { lineHeight: "3rem" }], // 40px (2.5rem) - "6h": ["var(--calcite-font-size-6)", { lineHeight: "4rem" }], // 48px (3rem) - "7h": ["var(--calcite-font-size-7)", { lineHeight: "4rem" }], // 56px (3.5rem) - "8h": ["var(--calcite-font-size-8)", { lineHeight: "5rem" }], // 64px (4rem) - "-3-wrap": ["var(--calcite-font-size--3)", { lineHeight: "1.375" }], - "-2-wrap": ["var(--calcite-font-size--2)", { lineHeight: "1.375" }], - "-1-wrap": ["var(--calcite-font-size--1)", { lineHeight: "1.375" }], - "0-wrap": ["var(--calcite-font-size-0)", { lineHeight: "1.375" }], - "1-wrap": ["var(--calcite-font-size-1)", { lineHeight: "1.375" }], - "2-wrap": ["var(--calcite-font-size-2)", { lineHeight: "1.375" }], - "3-wrap": ["var(--calcite-font-size-3)", { lineHeight: "1.25" }], - "4-wrap": ["var(--calcite-font-size-4)", { lineHeight: "1.25" }], - "5-wrap": ["var(--calcite-font-size-5)", { lineHeight: "1.25" }], - "6-wrap": ["var(--calcite-font-size-6)", { lineHeight: "1.25" }], - "7-wrap": ["var(--calcite-font-size-7)", { lineHeight: "1.25" }], - "8-wrap": ["var(--calcite-font-size-8)", { lineHeight: "1.25" }] - }, - fontWeight: { - // assets/styles/_type - light: "var(--calcite-font-weight-light)", - normal: "var(--calcite-font-weight-normal)", - medium: "var(--calcite-font-weight-medium)", - bold: "var(--calcite-font-weight-bold)" - }, - screens: { - s: "480px", - m: "864px", - l: "1024px", - xl: "1440px" - }, - textColor: (theme) => ({ - color: theme("colors.text") - }), - backgroundColor: (theme) => ({ - ...theme("colors.background"), - transparent: theme("colors.transparent"), - brand: theme("colors.brand"), - "brand-hover": theme("colors.brand-hover"), - "brand-press": theme("colors.brand-press"), - info: theme("colors.info"), - success: theme("colors.success"), - warning: theme("colors.warning"), - danger: theme("colors.danger"), - "danger-hover": theme("colors.danger-hover"), - "danger-press": theme("colors.danger-press") - }), - extend: { - animation: { - in: "in var(--calcite-animation-timing) ease-in-out", - "in-down": "in-down var(--calcite-animation-timing) ease-in-out", - "in-up": "in-up var(--calcite-animation-timing) ease-in-out", - "in-scale": "in-scale var(--calcite-animation-timing) linear" - }, - borderRadius: { - half: "50%" - }, - boxShadow: { - 0: "0 4px 8px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04)", - 1: "0 4px 8px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04)", - "1-lg": "0 4px 16px 0 rgba(0, 0, 0, 0.08), 0 2px 8px 0 rgba(0, 0, 0, 0.04)", - "1-sm": "0 1px 6px -1px rgba(0, 0, 0, 0.16), 0 1px 2px -1px rgba(0, 0, 0, 0.08)", - 2: "0 6px 20px -4px rgba(0, 0, 0, 0.1), 0 4px 12px -2px rgba(0, 0, 0, 0.08)", - "2-lg": "0 12px 32px -2px rgba(0, 0, 0, 0.1), 0 4px 20px 0 rgba(0, 0, 0, 0.08)", - "2-sm": "0 2px 12px -4px rgba(0, 0, 0, 0.2), 0 2px 4px -2px rgba(0, 0, 0, 0.16)", - "border-bottom": "0 1px 0 var(--calcite-ui-border-3)", - "outline-active": "0 0 0 1px var(--calcite-ui-brand)", - none: "none" - }, - fill: (theme) => ({ - color: theme("colors.text") - }), - keyframes: { - in: { - "0%": { - opacity: 0 - }, - "100%": { - opacity: 1 - } - }, - "in-down": { - "0%": { - opacity: 0, - transform: "translate3D(0, -5px, 0)" - }, - "100%": { - opacity: 1, - transform: "translate3D(0, 0, 0)" - } - }, - "in-up": { - "0%": { - opacity: 0, - transform: "translate3D(0, 5px, 0)" - }, - "100%": { - opacity: 1, - transform: "translate3D(0, 0, 0)" - } - }, - "in-scale": { - "0%": { - opacity: 0, - transform: "scale3D(0.95, 0.95, 1)" - }, - "100%": { - opacity: 1, - transform: "scale3D(1, 1, 1)" - } - } - }, - opacity: { - disabled: "var(--calcite-ui-opacity-disabled)" - }, - spacing: { - 0.5: "0.125rem", - 2.5: "0.625rem", - 3.5: "0.875rem", - 9: "2.25rem", - 11: "2.75rem" - }, - transitionProperty: { - margin: "margin", - color: "color" - }, - transitionTimingFunction: { - cubic: "cubic-bezier(0.215, 0.440, 0.420, 0.880)" - } - } - }, - plugins: [ - ({ addUtilities }) => { - const newUtilities = { - ".word-break": { - "word-wrap": "break-word", - "word-break": "break-word" - }, - ".focus-base": { - "outline-offset": 0, - "outline-color": "transparent", - transition: "outline-offset 100ms ease-in-out, outline-color 100ms ease-in-out" - }, - ".focus-outset": { - outline: "2px solid var(--calcite-ui-brand)", - "outline-offset": "2px" - }, - ".focus-inset": { - outline: "2px solid var(--calcite-ui-brand)", - "outline-offset": "-2px" - }, - ".focus-outset-danger": { - outline: "2px solid var(--calcite-ui-danger)", - "outline-offset": "2px" - }, - ".focus-inset-danger": { - outline: "2px solid var(--calcite-ui-danger)", - "outline-offset": "-2px" - }, - ".transition-default": { - "transition-property": "all", - "transition-duration": "150ms", - "transition-timing-function": "ease-in-out", - "transition-delay": "0s" - } - }; - addUtilities(newUtilities); - }, - ({ addUtilities, theme, variants }) => { - const colors = flattenColorPalette(theme("borderColor")); - delete colors["default"]; - - const colorMap = Object.keys(colors).map((color) => ({ - [`.border-t-${color}`]: { borderTopColor: colors[color] }, - [`.border-r-${color}`]: { borderRightColor: colors[color] }, - [`.border-b-${color}`]: { borderBottomColor: colors[color] }, - [`.border-l-${color}`]: { borderLeftColor: colors[color] } - })); - const utilities = Object.assign({}, ...colorMap); - - addUtilities(utilities, variants("borderColor")); - } - ], - future: { - removeDeprecatedGapUtilities: true - }, - variants: { - boxShadow: ["responsive", "hover", "focus", "active"], - borderWidth: ["responsive", "hover", "focus", "active"] - } -}; diff --git a/tailwind.css b/tailwind.css deleted file mode 100644 index b5c61c95671..00000000000 --- a/tailwind.css +++ /dev/null @@ -1,3 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; From a2b8b9a2db5fe85897544f3bba3755c177330f91 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 21 Nov 2022 21:04:19 +0000 Subject: [PATCH 057/696] accordion tokens --- tokens/$metadata.json | 4 +- tokens/$themes.json | 20 ++- tokens/component/accordion.json | 238 +++++++++++++++++++++++++ tokens/component/accordion_backup.json | 238 +++++++++++++++++++++++++ 4 files changed, 494 insertions(+), 6 deletions(-) create mode 100644 tokens/component/accordion.json create mode 100644 tokens/component/accordion_backup.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index b02c3104452..bde41ffcaf7 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -3,6 +3,7 @@ "core", "semantic", "component/accordion-item", + "component/accordion", "component/alert", "component/avatar", "component/checkbox", @@ -20,6 +21,7 @@ "brand/global", "brand/light", "brand/dark", - "component/[template-comp-name]" + "component/[template-comp-name]", + "component/accordion_backup" ] } \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index b11b4947cec..7b2edb3d70a 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -16,7 +16,9 @@ "component/switch": "disabled", "component/input-message": "disabled", "component/accordion-item": "disabled", - "component/alert": "disabled" + "component/alert": "disabled", + "component/accordion": "disabled", + "component/accordion_backup": "disabled" }, "$figmaStyleReferences": {} }, @@ -37,7 +39,9 @@ "component/switch": "disabled", "component/input-message": "disabled", "component/accordion-item": "disabled", - "component/alert": "disabled" + "component/alert": "disabled", + "component/accordion": "disabled", + "component/accordion_backup": "disabled" }, "$figmaStyleReferences": {} }, @@ -64,7 +68,9 @@ "component/switch": "disabled", "component/input-message": "disabled", "component/accordion-item": "disabled", - "component/alert": "disabled" + "component/alert": "disabled", + "component/accordion": "disabled", + "component/accordion_backup": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -150,7 +156,9 @@ "component/switch": "disabled", "component/input-message": "disabled", "component/accordion-item": "disabled", - "component/alert": "disabled" + "component/alert": "disabled", + "component/accordion": "disabled", + "component/accordion_backup": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -239,7 +247,9 @@ "component/switch": "enabled", "component/input-message": "enabled", "component/accordion-item": "enabled", - "component/alert": "enabled" + "component/alert": "enabled", + "component/accordion": "enabled", + "component/accordion_backup": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/accordion.json b/tokens/component/accordion.json new file mode 100644 index 00000000000..5a67f8416b4 --- /dev/null +++ b/tokens/component/accordion.json @@ -0,0 +1,238 @@ +{ + "accordion": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/accordion_backup.json b/tokens/component/accordion_backup.json new file mode 100644 index 00000000000..5a67f8416b4 --- /dev/null +++ b/tokens/component/accordion_backup.json @@ -0,0 +1,238 @@ +{ + "accordion": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file From 429d3ba0299e443818ba80cdf7e904d368021678 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 21 Nov 2022 13:05:58 -0800 Subject: [PATCH 058/696] docs: update build assets list --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7dfd1bbbccc..cc8b36ea44d 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ npm run build This will generate build artifacts from tokens created with the Figma Token Plugin +``` scss ✔︎ build/scss/_variables.scss @@ -40,3 +41,4 @@ ios-swift ios-swift-separate-enums ✔︎ build/ios-swift/StyleDictionaryColor.swift ✔︎ build/ios-swift/StyleDictionarySize.swift +``` From 1b729d1025b9f78fcc010f7fab278be7daeb88a2 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 21 Nov 2022 21:09:47 +0000 Subject: [PATCH 059/696] accordion tokens --- tokens/component/accordion-item.json | 62 ---------------------------- tokens/component/accordion.json | 46 --------------------- tokens/component/alert.json | 52 ++++++++++++----------- 3 files changed, 29 insertions(+), 131 deletions(-) diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index 4fb8670f0ef..7ee25dcc98e 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -158,68 +158,6 @@ } } }, - "minimal": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.none}", - "type": "spacing" - } - } - } - }, "border-width": { "value": "{core.border.border-width.0}", "type": "borderWidth" diff --git a/tokens/component/accordion.json b/tokens/component/accordion.json index 5a67f8416b4..044f000b7c8 100644 --- a/tokens/component/accordion.json +++ b/tokens/component/accordion.json @@ -20,20 +20,6 @@ "type": "color" } }, - "font": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, "icon": { "default": { "light": { @@ -68,34 +54,6 @@ } } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, "default": { "space-between": { "sm": { @@ -220,10 +178,6 @@ } } }, - "border-width": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - }, "border": { "light": { "value": "$semantic.ui.color.border.2.light", diff --git a/tokens/component/alert.json b/tokens/component/alert.json index 68e7dd42aa9..e6ae9fd5a4e 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -8,18 +8,36 @@ "dark": { "value": "$semantic.ui.color.text.1.dark", "type": "color" + } + }, + "font": { + "title": { + "sm": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.1h", + "type": "typography" + } }, - "sm": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.1h", - "type": "typography" + "message": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } } }, "message": { @@ -30,18 +48,6 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" } }, "background": { From f1110a47e33f2150b33bd244f39c3b384bfd6357 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 21 Nov 2022 21:15:01 +0000 Subject: [PATCH 060/696] accordion-item tokens --- tokens/component/accordion-item.json | 38 ++++++++++++++-------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index 7ee25dcc98e..63aa1168bab 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -1,26 +1,26 @@ { "accordion-item": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "font": { "sm": { "value": "$semantic.font.default.bold.-2h", "type": "typography" From 56011b2decb56159439a2bd25de963b80cc17807 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 21 Nov 2022 14:09:13 -0800 Subject: [PATCH 061/696] fix(actions): remove test branch --- .github/workflows/design-tokens-sync.yml | 41 ++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/design-tokens-sync.yml diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml new file mode 100644 index 00000000000..534b2f71ce5 --- /dev/null +++ b/.github/workflows/design-tokens-sync.yml @@ -0,0 +1,41 @@ +name: Automate Designers Branches Sync +on: + push: + branches: + - feature/design-tokens + +jobs: + sync-branches: + runs-on: ubuntu-latest + name: Syncing branches for designers + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 + with: + node-version: 16 + - name: Opening pull request + id: pullbrunoaires + uses: tretuna/sync-branches@1.4.0 + with: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + FROM_BRANCH: 'feature/design-tokens' + TO_BRANCH: 'designer/brunoaires' + LABELS: 'automated-tokens-pr' + - name: Opening pull request + id: pullmanuelacosta + uses: tretuna/sync-branches@1.4.0 + with: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + FROM_BRANCH: 'feature/design-tokens' + TO_BRANCH: 'designer/manuelacosta' + LABELS: 'automated-tokens-pr' + - name: Opening pull request + id: pulljacqueskeet + uses: tretuna/sync-branches@1.4.0 + with: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + FROM_BRANCH: 'feature/design-tokens' + TO_BRANCH: 'designer/jacqueskeet' + LABELS: 'automated-tokens-pr' From f2a5379e7c0f3436fc3e57f7df00ea1d69c744cf Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 21 Nov 2022 23:52:49 +0100 Subject: [PATCH 062/696] Small updates to button light and dark mode theme tokens --- tokens/calcite/dark.json | 74 ++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 74 ++++++++++++++++++++++++++++++++++++ tokens/component/button.json | 4 +- 3 files changed, 150 insertions(+), 2 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 6528fda2c17..6fec561da75 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -472,6 +472,80 @@ "value": "$tile.border.dark", "type": "color" } + }, + "button": { + "background": { + "blue": { + "value": "$button.background.blue.light", + "type": "color" + }, + "inverse": { + "value": "$button.background.inverse.light", + "type": "color" + }, + "red": { + "value": "$button.background.red.light", + "type": "color" + }, + "neutral": { + "value": "$button.background.neutral.light", + "type": "color" + } + }, + "border": { + "blue": { + "value": "$button.border.blue.light", + "type": "color" + }, + "inverse": { + "value": "$button.border.inverse.light", + "type": "color" + }, + "red": { + "value": "$button.border.red.light", + "type": "color" + }, + "neutral": { + "value": "$button.border.neutral.light", + "type": "color" + } + }, + "font": { + "blue": { + "value": "$button.font.blue.light", + "type": "color" + }, + "inverse": { + "value": "$button.font.inverse.light", + "type": "color" + }, + "red": { + "value": "$button.font.red.light", + "type": "color" + }, + "neutral": { + "value": "$button.font.neutral.light", + "type": "color" + } + }, + "icon": { + "blue": { + "value": "$button.icon.blue.light", + "type": "color" + }, + "inverse": { + "value": "$button.icon.inverse.light", + "type": "color" + }, + "red": { + "value": "$button.icon.red.light", + "type": "color" + }, + "neutral": { + "value": "$button.icon.neutral.light", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 3196e1afeeb..9612509fd54 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -472,6 +472,80 @@ "value": "$tile.border.light", "type": "color" } + }, + "button": { + "background": { + "blue": { + "value": "$button.background.blue.light", + "type": "color" + }, + "inverse": { + "value": "$button.background.inverse.light", + "type": "color" + }, + "red": { + "value": "$button.background.red.light", + "type": "color" + }, + "neutral": { + "value": "$button.background.neutral.light", + "type": "color" + } + }, + "border": { + "blue": { + "value": "$button.border.blue.light", + "type": "color" + }, + "inverse": { + "value": "$button.border.inverse.light", + "type": "color" + }, + "red": { + "value": "$button.border.red.light", + "type": "color" + }, + "neutral": { + "value": "$button.border.neutral.light", + "type": "color" + } + }, + "font": { + "blue": { + "value": "$button.font.blue.light", + "type": "color" + }, + "inverse": { + "value": "$button.font.inverse.light", + "type": "color" + }, + "red": { + "value": "$button.font.red.light", + "type": "color" + }, + "neutral": { + "value": "$button.font.neutral.light", + "type": "color" + } + }, + "icon": { + "blue": { + "value": "$button.icon.blue.light", + "type": "color" + }, + "inverse": { + "value": "$button.icon.inverse.light", + "type": "color" + }, + "red": { + "value": "$button.icon.red.light", + "type": "color" + }, + "neutral": { + "value": "$button.icon.neutral.light", + "type": "color" + } + } } } } diff --git a/tokens/component/button.json b/tokens/component/button.json index fb171f025be..056bc775024 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -51,11 +51,11 @@ }, "red": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } }, From 152beab708561df6adf14f9c784c1ceeeeada147 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 22 Nov 2022 00:58:47 +0100 Subject: [PATCH 063/696] Initial tokens applied to Split-button and FAB --- tokens/$metadata.json | 2 + tokens/$themes.json | 366 +++++++++++++++-------------- tokens/component/FAB.json | 232 ++++++++++++++++++ tokens/component/split-button.json | 232 ++++++++++++++++++ 4 files changed, 654 insertions(+), 178 deletions(-) create mode 100644 tokens/component/FAB.json create mode 100644 tokens/component/split-button.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index a5a33a41e52..dc3c677a22d 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -6,12 +6,14 @@ "component/checkbox", "component/button", "component/chip", + "component/FAB", "component/label", "component/link", "component/loader", "component/pagination", "component/progress", "component/radio", + "component/split-button", "component/rating", "component/tooltip", "component/tile", diff --git a/tokens/$themes.json b/tokens/$themes.json index a080354d9c4..992bc4b5d0b 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -16,7 +16,9 @@ "component/progress": "disabled", "component/pagination": "disabled", "component/tile": "disabled", - "component/button": "disabled" + "component/button": "disabled", + "component/split-button": "disabled", + "component/FAB": "disabled" }, "$figmaStyleReferences": {} }, @@ -37,10 +39,191 @@ "component/progress": "disabled", "component/pagination": "disabled", "component/tile": "disabled", - "component/button": "disabled" + "component/button": "disabled", + "component/split-button": "disabled", + "component/FAB": "disabled" }, "$figmaStyleReferences": {} }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/link": "source", + "component/progress": "source", + "component/pagination": "source", + "component/tile": "source", + "component/button": "source", + "component/split-button": "disabled", + "component/FAB": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "enabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/link": "source", + "component/progress": "source", + "component/pagination": "source", + "component/tile": "source", + "component/button": "source", + "component/split-button": "disabled", + "component/FAB": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + } + }, { "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", "name": "Calcite Headless", @@ -64,7 +247,9 @@ "component/progress": "enabled", "component/pagination": "enabled", "component/tile": "enabled", - "component/button": "enabled" + "component/button": "enabled", + "component/split-button": "enabled", + "component/FAB": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -589,180 +774,5 @@ "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } - }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "enabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/link": "source", - "component/progress": "source", - "component/pagination": "source", - "component/tile": "source", - "component/button": "source" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," - } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "enabled", - "calcite/dark": "disabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/link": "source", - "component/progress": "source", - "component/pagination": "source", - "component/tile": "source", - "component/button": "source" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", - "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", - "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", - "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", - "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", - "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", - "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", - "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", - "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", - "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", - "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", - "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", - "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", - "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," - } } ] \ No newline at end of file diff --git a/tokens/component/FAB.json b/tokens/component/FAB.json new file mode 100644 index 00000000000..807e2dfb356 --- /dev/null +++ b/tokens/component/FAB.json @@ -0,0 +1,232 @@ +{ + "FAB": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-radius": { + "square": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + }, + "rounded": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "border": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "blue": { + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "space-around": { + "standard": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "icon": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json new file mode 100644 index 00000000000..98adcebd3e7 --- /dev/null +++ b/tokens/component/split-button.json @@ -0,0 +1,232 @@ +{ + "split-button": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-radius": { + "square": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + }, + "rounded": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "border": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "blue": { + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "space-around": { + "standard": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "icon": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file From 1725a63c40bf63f73e9203c4a5a43833760c291f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 21 Nov 2022 19:24:29 -0800 Subject: [PATCH 064/696] chore(actions): resolve automerge scripts --- .github/workflows/design-tokens-automerge.yml | 24 ++---- .github/workflows/design-tokens-sync.yml | 73 +++++++++++-------- 2 files changed, 48 insertions(+), 49 deletions(-) diff --git a/.github/workflows/design-tokens-automerge.yml b/.github/workflows/design-tokens-automerge.yml index ca4a4804021..5d1ff8cb337 100644 --- a/.github/workflows/design-tokens-automerge.yml +++ b/.github/workflows/design-tokens-automerge.yml @@ -1,15 +1,9 @@ name: automerge on: - pull_request: - types: - - labeled - pull_request_review: - types: - - submitted - check_suite: - types: - - completed - status: {} + workflow_run: + workflows: [Sync Designer Branches] + types: + - completed jobs: automerge: runs-on: ubuntu-latest @@ -20,12 +14,6 @@ jobs: env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" MERGE_LABELS: "automated-tokens-pr" - MERGE_REMOVE_LABELS: "automated-tokens-pr" MERGE_METHOD: "squash" - MERGE_COMMIT_MESSAGE: "chore: automatic merge" - MERGE_FORKS: "false" - MERGE_RETRIES: "6" - MERGE_RETRY_SLEEP: "10000" - MERGE_REQUIRED_APPROVALS: "0" - UPDATE_LABELS: "" - UPDATE_METHOD: "rebase" \ No newline at end of file + MERGE_COMMIT_MESSAGE: "chore(automatic): automerge from ${{github.base_ref}}" + MERGE_REQUIRED_APPROVALS: "0" \ No newline at end of file diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index 534b2f71ce5..28b407eeaf3 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -1,4 +1,4 @@ -name: Automate Designers Branches Sync +name: Sync designer branches with main on: push: branches: @@ -7,35 +7,46 @@ on: jobs: sync-branches: runs-on: ubuntu-latest - name: Syncing branches for designers steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Set up Node - uses: actions/setup-node@v3 + - name: Create Pull Requests + uses: actions/github-script@v6 with: - node-version: 16 - - name: Opening pull request - id: pullbrunoaires - uses: tretuna/sync-branches@1.4.0 - with: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - FROM_BRANCH: 'feature/design-tokens' - TO_BRANCH: 'designer/brunoaires' - LABELS: 'automated-tokens-pr' - - name: Opening pull request - id: pullmanuelacosta - uses: tretuna/sync-branches@1.4.0 - with: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - FROM_BRANCH: 'feature/design-tokens' - TO_BRANCH: 'designer/manuelacosta' - LABELS: 'automated-tokens-pr' - - name: Opening pull request - id: pulljacqueskeet - uses: tretuna/sync-branches@1.4.0 - with: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - FROM_BRANCH: 'feature/design-tokens' - TO_BRANCH: 'designer/jacqueskeet' - LABELS: 'automated-tokens-pr' + script: | + const { repo, owner } = context.repo; + const branches = await github.rest.branches({ owner, repo }); + const designerBranches = branches.filter((b) => { + return b.name.includes('designer/') + }); + const automergeLabel = 'automated-tokens-pr'; + + for (const branch of designerBranches) { + const newPR = await github.rest.pulls.create({ + title: 'chore(automerge): Design Token Updates', + owner, + repo, + head: '${{ github.ref_name }}', + base: 'feature/design-tokens', + body: [ + 'auto-generated: FigmaTokens PR', + '', + ].join('\n') + }); + + const updatedIssueInformation = await github.rest.issues({ + owner, + repo, + issue_number: newPR.issue_number + }); + + const labels = updatedIssueInformation.data.labels.map(label => label.name); + if(!labels.includes(automergeLabel)) { + labels.push(automergeLabel) + } + + await github.rest.issues.update({ + owner, + repo, + issue_number: newPR.issue_number, + labels, + }); + } \ No newline at end of file From 3c48f9432e4fe4f457dc68949d0b86f98951694a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 21 Nov 2022 19:58:10 -0800 Subject: [PATCH 065/696] chore(actions): fix rest api call --- .github/workflows/design-tokens-sync.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index 28b407eeaf3..e2d67cedbbe 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -1,19 +1,20 @@ name: Sync designer branches with main -on: - push: - branches: - - feature/design-tokens - +on: + pull_request: + branches: [feature/design-tokens] + types: [closed] jobs: sync-branches: runs-on: ubuntu-latest + if: github.event.pull_request.merged == true + timeout-minutes: 2 steps: - name: Create Pull Requests uses: actions/github-script@v6 with: script: | const { repo, owner } = context.repo; - const branches = await github.rest.branches({ owner, repo }); + const branches = await github.rest.repos.listBranches({ owner, repo }); const designerBranches = branches.filter((b) => { return b.name.includes('designer/') }); From 5dbff2b92e6cb95fba6573afbe29f31c14fe81be Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 21 Nov 2022 19:58:10 -0800 Subject: [PATCH 066/696] chore(actions): fix rest api call --- .github/workflows/design-tokens-sync.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index 28b407eeaf3..e2d67cedbbe 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -1,19 +1,20 @@ name: Sync designer branches with main -on: - push: - branches: - - feature/design-tokens - +on: + pull_request: + branches: [feature/design-tokens] + types: [closed] jobs: sync-branches: runs-on: ubuntu-latest + if: github.event.pull_request.merged == true + timeout-minutes: 2 steps: - name: Create Pull Requests uses: actions/github-script@v6 with: script: | const { repo, owner } = context.repo; - const branches = await github.rest.branches({ owner, repo }); + const branches = await github.rest.repos.listBranches({ owner, repo }); const designerBranches = branches.filter((b) => { return b.name.includes('designer/') }); From 0f7f13c25961bbc0f3f32ef3cbdd15c347f851c5 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 12 Dec 2022 11:32:19 -0800 Subject: [PATCH 067/696] chore(actions): base branch change from feature/design-tokens to master --- .github/workflows/design-tokens-pr.yml | 2 +- .github/workflows/design-tokens-sync.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/design-tokens-pr.yml b/.github/workflows/design-tokens-pr.yml index 296eece700d..7897785247d 100644 --- a/.github/workflows/design-tokens-pr.yml +++ b/.github/workflows/design-tokens-pr.yml @@ -18,7 +18,7 @@ jobs: owner, repo, head: '${{ github.ref_name }}', - base: 'feature/design-tokens', + base: 'master', body: [ 'auto-generated: FigmaTokens PR', '', diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index e2d67cedbbe..3238651b1a9 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -1,7 +1,7 @@ name: Sync designer branches with main on: pull_request: - branches: [feature/design-tokens] + branches: [master] types: [closed] jobs: sync-branches: @@ -26,7 +26,7 @@ jobs: owner, repo, head: '${{ github.ref_name }}', - base: 'feature/design-tokens', + base: 'master', body: [ 'auto-generated: FigmaTokens PR', '', @@ -50,4 +50,4 @@ jobs: issue_number: newPR.issue_number, labels, }); - } \ No newline at end of file + } From b7bf52ba50510f129ce075df17505ee201f8f836 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 15 Dec 2022 18:02:51 +0000 Subject: [PATCH 068/696] tip --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++++--- tokens/component/tip.json | 94 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 105 insertions(+), 5 deletions(-) create mode 100644 tokens/component/tip.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index bde41ffcaf7..e52cb2b1603 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -14,6 +14,7 @@ "component/loader", "component/radio", "component/rating", + "component/tip", "component/tooltip", "component/switch", "calcite/light", diff --git a/tokens/$themes.json b/tokens/$themes.json index 7b2edb3d70a..32b8bedcaaa 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -18,7 +18,8 @@ "component/accordion-item": "disabled", "component/alert": "disabled", "component/accordion": "disabled", - "component/accordion_backup": "disabled" + "component/accordion_backup": "disabled", + "component/tip": "disabled" }, "$figmaStyleReferences": {} }, @@ -41,7 +42,8 @@ "component/accordion-item": "disabled", "component/alert": "disabled", "component/accordion": "disabled", - "component/accordion_backup": "disabled" + "component/accordion_backup": "disabled", + "component/tip": "disabled" }, "$figmaStyleReferences": {} }, @@ -70,7 +72,8 @@ "component/accordion-item": "disabled", "component/alert": "disabled", "component/accordion": "disabled", - "component/accordion_backup": "disabled" + "component/accordion_backup": "disabled", + "component/tip": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -158,7 +161,8 @@ "component/accordion-item": "disabled", "component/alert": "disabled", "component/accordion": "disabled", - "component/accordion_backup": "disabled" + "component/accordion_backup": "disabled", + "component/tip": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -249,7 +253,8 @@ "component/accordion-item": "enabled", "component/alert": "enabled", "component/accordion": "enabled", - "component/accordion_backup": "disabled" + "component/accordion_backup": "disabled", + "component/tip": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/tip.json b/tokens/component/tip.json new file mode 100644 index 00000000000..404a6771567 --- /dev/null +++ b/tokens/component/tip.json @@ -0,0 +1,94 @@ +{ + "tip": { + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file From 4f0b8aafd814bb97e1d0684369995622064f9c09 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 15 Dec 2022 18:13:28 +0000 Subject: [PATCH 069/696] tip From 4f8a334788f2bf829dc1ca6e75875e7f48b92fe8 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 15 Dec 2022 18:23:46 +0000 Subject: [PATCH 070/696] tip tokens --- tokens/component/tip.json | 40 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/tokens/component/tip.json b/tokens/component/tip.json index 404a6771567..f35cde8a6e6 100644 --- a/tokens/component/tip.json +++ b/tokens/component/tip.json @@ -11,7 +11,7 @@ "type": "color" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.medium.0h", "type": "typography" } }, @@ -25,7 +25,7 @@ "type": "color" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" } } @@ -54,7 +54,7 @@ }, "border-radius": { "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, @@ -89,6 +89,40 @@ "type": "color" } } + }, + "default": { + "space-between": { + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + } + }, + "space-around": { + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + }, + "selected": { + "space-between": { + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + } + }, + "space-around": { + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + }, + "border-width": { + "md": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + } } } } \ No newline at end of file From fc497170faa71c38d9bfaa32143c9a760dc4d807 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 20 Dec 2022 21:07:37 +0000 Subject: [PATCH 071/696] accordion --- tokens/calcite/dark.json | 30 ++++++++++++++++++++++++++++ tokens/calcite/light.json | 30 ++++++++++++++++++++++++++++ tokens/component/accordion-item.json | 14 ------------- 3 files changed, 60 insertions(+), 14 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index e1cc07b9541..4182d2b7a2a 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -406,6 +406,36 @@ "value": "$tooltip.font.dark", "type": "color" } + }, + "accordion-item": { + "font": { + "heading": { + "value": "$accordion-item.font.heading.dark", + "type": "color" + }, + "description": { + "value": "$accordion-item.font.description.dark", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$accordion-item.icon.default.dark", + "type": "color" + }, + "expanded": { + "value": "$accordion-item.icon.expanded.dark", + "type": "color" + } + }, + "background": { + "value": "$accordion-item.background.default.dark", + "type": "color" + }, + "border": { + "value": "$accordion-item.border.dark", + "type": "color" + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 40c45879c37..1cf660ae821 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -406,6 +406,36 @@ "value": "$tooltip.font.light", "type": "color" } + }, + "accordion-item": { + "font": { + "heading": { + "value": "$accordion-item.font.heading.light", + "type": "color" + }, + "description": { + "value": "$accordion-item.font.description.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$accordion-item.icon.default.light", + "type": "color" + }, + "expanded": { + "value": "$accordion-item.icon.expanded.light", + "type": "color" + } + }, + "background": { + "value": "$accordion-item.background.default.light", + "type": "color" + }, + "border": { + "value": "$accordion-item.border.light", + "type": "color" + } } } } diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index 63aa1168bab..b48ab800095 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -68,20 +68,6 @@ } } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", From c90e00f75da017d26a1be568a8db57bccffdf73b Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 20 Dec 2022 23:46:44 +0000 Subject: [PATCH 072/696] accordion font token --- tokens/component/accordion-item.json | 36 +++++++++++++++++++--------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index b48ab800095..8d0dbe10c02 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -9,6 +9,18 @@ "dark": { "value": "$semantic.ui.color.text.1.dark", "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" } }, "description": { @@ -21,17 +33,19 @@ "type": "color" } }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" + "descrition": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } } }, "icon": { From 5f2f36cf75873dad2adad3202c67b7c7cbc3174a Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 20 Dec 2022 23:57:50 +0000 Subject: [PATCH 073/696] font token accordion --- tokens/component/accordion-item.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index 8d0dbe10c02..3e8f1edc798 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -11,15 +11,15 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "$semantic.font.default.medium.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.medium.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.medium.0h", "type": "typography" } }, From 77ac8dfe90de25758ef01998b85d931c9e982f05 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 21 Dec 2022 11:43:49 -0800 Subject: [PATCH 074/696] bugfix(actions): failing automated PRs --- .github/workflows/design-tokens-automerge.yml | 4 +- .github/workflows/design-tokens-pr.yml | 40 +++++++++++--- .github/workflows/design-tokens-sync.yml | 52 +++++++++++++++---- 3 files changed, 77 insertions(+), 19 deletions(-) diff --git a/.github/workflows/design-tokens-automerge.yml b/.github/workflows/design-tokens-automerge.yml index 5d1ff8cb337..bb0517891c9 100644 --- a/.github/workflows/design-tokens-automerge.yml +++ b/.github/workflows/design-tokens-automerge.yml @@ -15,5 +15,5 @@ jobs: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" MERGE_LABELS: "automated-tokens-pr" MERGE_METHOD: "squash" - MERGE_COMMIT_MESSAGE: "chore(automatic): automerge from ${{github.base_ref}}" - MERGE_REQUIRED_APPROVALS: "0" \ No newline at end of file + MERGE_COMMIT_MESSAGE: "chore(automatic): auto-merge from ${{github.base_ref}}" + MERGE_REQUIRED_APPROVALS: "0" diff --git a/.github/workflows/design-tokens-pr.yml b/.github/workflows/design-tokens-pr.yml index 7897785247d..dba2e8bc67d 100644 --- a/.github/workflows/design-tokens-pr.yml +++ b/.github/workflows/design-tokens-pr.yml @@ -3,30 +3,58 @@ on: push: branches: - designer/* - + jobs: create-pull-request: runs-on: ubuntu-latest steps: - - name: Create Pull Request + - name: Get the branch name + id: git-branch-name + uses: EthanSK/git-branch-name-action@v1 + + - name: Check if PR exists + id: check + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + prs=$(gh pr list \ + --repo "$GITHUB_REPOSITORY" \ + --json baseRefName,headRefName \ + --jq ' + map(select(.baseRefName == "main" and .headRefName == ${GIT_BRANCH_NAME})) + | length + ') + if ((prs > 0)); then + echo "skip=true" >> "$GITHUB_OUTPUT" + fi + + - name: Create pull request (if it doesn't already exist) + if: '!$GITHUB_OUTPUT' uses: actions/github-script@v6 with: script: | const { repo, owner } = context.repo; const result = await github.rest.pulls.create({ - title: 'feature(tokens): Design Token Updates', + title: 'feature(tokens): Autogenerated Design Token Updates', owner, repo, head: '${{ github.ref_name }}', - base: 'master', + base: 'main', body: [ + 'Updates from: ${{ owner }}', 'auto-generated: FigmaTokens PR', '', ].join('\n') }); - github.rest.issues.addLabels({ + + const labels = updatedIssueInformation.data.labels.map(label => label.name); + if(!labels.includes('automated pr')) { + labels.push('automated pr') + } + + await github.rest.issues.addLabels({ owner, repo, issue_number: result.data.number, - labels: [] + labels }); diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index 3238651b1a9..9a4bdb150cf 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -1,32 +1,62 @@ name: Sync designer branches with main on: pull_request: - branches: [master] + branches: [main] types: [closed] jobs: - sync-branches: + update-designer-branches: runs-on: ubuntu-latest if: github.event.pull_request.merged == true timeout-minutes: 2 steps: + - name: Get Designer Branches + uses: actions/github-script@v6 + with: + script: | + const { repo, owner } = context.repo; + const branches = await github.rest.repos.listBranches({ owner, repo }); + const designerBranches = branches.filter((b) => { + return b.name.includes('designer/') + }); + core.exportVariable("GIT_DESIGNER_BRANCHES", designerBranches); + + - name: Check if PR exists + id: check + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + for branch in "${GIT_DESIGNER_BRANCHES[@]}" + do + echo "[$branch]" + prs=$(gh pr list \ + --repo "$GITHUB_REPOSITORY" \ + --json baseRefName,headRefName \ + --jq ' + map(select(.baseRefName == "main" and .headRefName == ${branch})) + | length + ') + if ((prs > 0)); then + echo ${GIT_DESIGNER_BRANCHES[@]/$branch} + fi + done + - name: Create Pull Requests uses: actions/github-script@v6 + if: "${#GIT_DESIGNER_BRANCHES[@]}" -gt "0" + env: + MERGE_LABELS: 'automated-tokens-pr' with: script: | const { repo, owner } = context.repo; - const branches = await github.rest.repos.listBranches({ owner, repo }); - const designerBranches = branches.filter((b) => { - return b.name.includes('designer/') - }); - const automergeLabel = 'automated-tokens-pr'; + const designerBranches = process.env.GIT_DESIGNER_BRANCHES; for (const branch of designerBranches) { const newPR = await github.rest.pulls.create({ - title: 'chore(automerge): Design Token Updates', + title: 'chore(automerge): ${{ github.ref_name }} from main', owner, repo, head: '${{ github.ref_name }}', - base: 'master', + base: 'main', body: [ 'auto-generated: FigmaTokens PR', '', @@ -40,8 +70,8 @@ jobs: }); const labels = updatedIssueInformation.data.labels.map(label => label.name); - if(!labels.includes(automergeLabel)) { - labels.push(automergeLabel) + if(!labels.includes($MERGE_LABELS)) { + labels.push($MERGE_LABELS) } await github.rest.issues.update({ From fdc22c02f073057fb7c78a45aff2b6f66109701c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 21 Dec 2022 13:58:19 -0800 Subject: [PATCH 075/696] fix(actions): error in reference to github --- .github/workflows/design-tokens-pr.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/design-tokens-pr.yml b/.github/workflows/design-tokens-pr.yml index dba2e8bc67d..41837160a99 100644 --- a/.github/workflows/design-tokens-pr.yml +++ b/.github/workflows/design-tokens-pr.yml @@ -33,7 +33,8 @@ jobs: uses: actions/github-script@v6 with: script: | - const { repo, owner } = context.repo; + const owner = github.event.pull_request.head.repo.owner.login; + const repo = github.event.pull_request.head.repo const result = await github.rest.pulls.create({ title: 'feature(tokens): Autogenerated Design Token Updates', owner, From f81e52249bee3425deeaddb2ad6d1370e04e0507 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 21 Dec 2022 14:03:44 -0800 Subject: [PATCH 076/696] fix(actions): yaml syntax error --- .github/workflows/design-tokens-sync.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index 9a4bdb150cf..a69d0b48037 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -3,6 +3,7 @@ on: pull_request: branches: [main] types: [closed] + jobs: update-designer-branches: runs-on: ubuntu-latest @@ -11,14 +12,14 @@ jobs: steps: - name: Get Designer Branches uses: actions/github-script@v6 - with: - script: | - const { repo, owner } = context.repo; - const branches = await github.rest.repos.listBranches({ owner, repo }); - const designerBranches = branches.filter((b) => { - return b.name.includes('designer/') - }); - core.exportVariable("GIT_DESIGNER_BRANCHES", designerBranches); + with: + script: | + const { repo, owner } = context.repo; + const branches = await github.rest.repos.listBranches({ owner, repo }); + const designerBranches = branches.filter((b) => { + return b.name.includes('designer/') + }); + core.exportVariable("GIT_DESIGNER_BRANCHES", designerBranches); - name: Check if PR exists id: check From ff344901ae2c78ca62db60f5daeecf643dd3979a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 21 Dec 2022 14:07:38 -0800 Subject: [PATCH 077/696] fix(actions): correct reference to github action api --- .github/workflows/design-tokens-sync.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index a69d0b48037..8ef8c689bf3 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -48,12 +48,13 @@ jobs: MERGE_LABELS: 'automated-tokens-pr' with: script: | - const { repo, owner } = context.repo; + const owner = github.event.pull_request.head.repo.owner.login; + const repo = github.event.pull_request.head.repo const designerBranches = process.env.GIT_DESIGNER_BRANCHES; for (const branch of designerBranches) { const newPR = await github.rest.pulls.create({ - title: 'chore(automerge): ${{ github.ref_name }} from main', + title: 'chore(auto-merge): ${{ github.ref_name }} from main', owner, repo, head: '${{ github.ref_name }}', From 00a0249c93f6ecfccedde356d16a508347338030 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 21 Dec 2022 14:12:06 -0800 Subject: [PATCH 078/696] fix(actions): update for github api --- .github/workflows/design-tokens-sync.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index 8ef8c689bf3..8c6bdd54dea 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -14,7 +14,8 @@ jobs: uses: actions/github-script@v6 with: script: | - const { repo, owner } = context.repo; + const owner = github.event.pull_request.head.repo.owner.login; + const repo = github.event.pull_request.head.repo const branches = await github.rest.repos.listBranches({ owner, repo }); const designerBranches = branches.filter((b) => { return b.name.includes('designer/') From 67a813940a2c962d6b7a53173e1392798df65e44 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 21 Dec 2022 14:13:41 -0800 Subject: [PATCH 079/696] fix(actions): missing semicolon --- .github/workflows/design-tokens-sync.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml index 8c6bdd54dea..571107daa31 100644 --- a/.github/workflows/design-tokens-sync.yml +++ b/.github/workflows/design-tokens-sync.yml @@ -40,8 +40,7 @@ jobs: if ((prs > 0)); then echo ${GIT_DESIGNER_BRANCHES[@]/$branch} fi - done - + done; - name: Create Pull Requests uses: actions/github-script@v6 if: "${#GIT_DESIGNER_BRANCHES[@]}" -gt "0" From 4cac1d544f98b448f81bd1f7c8e02eb3bb11c3b7 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 22 Dec 2022 18:39:16 +0000 Subject: [PATCH 080/696] test --- tokens/$metadata.json | 27 +- tokens/$themes.json | 785 +-------- tokens/calcite/dark.json | 442 ----- tokens/calcite/light.json | 442 ----- tokens/component/[template-comp-name].json | 178 -- tokens/component/accordion-item.json | 176 -- tokens/component/accordion.json | 192 --- tokens/component/accordion_backup.json | 238 --- tokens/component/alert.json | 272 ---- tokens/component/avatar.json | 140 -- tokens/component/checkbox.json | 110 -- tokens/component/chip.json | 350 ---- tokens/component/input-message.json | 86 - tokens/component/input-time.json | 1 - tokens/component/label.json | 26 - tokens/component/loader.json | 130 -- tokens/component/radio.json | 124 -- tokens/component/rating.json | 243 --- tokens/component/switch.json | 178 -- tokens/component/tip.json | 128 -- tokens/component/tooltip.json | 66 - tokens/core.json | 1696 -------------------- tokens/{brand => }/dark.json | 0 tokens/{brand => }/global.json | 0 tokens/{brand => }/light.json | 0 tokens/semantic.json | 1673 ------------------- 26 files changed, 4 insertions(+), 7699 deletions(-) delete mode 100644 tokens/calcite/dark.json delete mode 100644 tokens/calcite/light.json delete mode 100644 tokens/component/[template-comp-name].json delete mode 100644 tokens/component/accordion-item.json delete mode 100644 tokens/component/accordion.json delete mode 100644 tokens/component/accordion_backup.json delete mode 100644 tokens/component/alert.json delete mode 100644 tokens/component/avatar.json delete mode 100644 tokens/component/checkbox.json delete mode 100644 tokens/component/chip.json delete mode 100644 tokens/component/input-message.json delete mode 100644 tokens/component/input-time.json delete mode 100644 tokens/component/label.json delete mode 100644 tokens/component/loader.json delete mode 100644 tokens/component/radio.json delete mode 100644 tokens/component/rating.json delete mode 100644 tokens/component/switch.json delete mode 100644 tokens/component/tip.json delete mode 100644 tokens/component/tooltip.json delete mode 100644 tokens/core.json rename tokens/{brand => }/dark.json (100%) rename tokens/{brand => }/global.json (100%) rename tokens/{brand => }/light.json (100%) delete mode 100644 tokens/semantic.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index e52cb2b1603..d5726ff6887 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -1,28 +1,7 @@ { "tokenSetOrder": [ - "core", - "semantic", - "component/accordion-item", - "component/accordion", - "component/alert", - "component/avatar", - "component/checkbox", - "component/chip", - "component/input-message", - "component/input-time", - "component/label", - "component/loader", - "component/radio", - "component/rating", - "component/tip", - "component/tooltip", - "component/switch", - "calcite/light", - "calcite/dark", - "brand/global", - "brand/light", - "brand/dark", - "component/[template-comp-name]", - "component/accordion_backup" + "dark", + "global", + "light" ] } \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index 022510e7cd2..0637a088a01 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -1,784 +1 @@ -[ - { - "id": "59a65f6d4a3657738c9d46d61315ae0b6fc6e9fd", - "name": "Brand - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "enabled", - "brand/light": "enabled", - "brand/dark": "disabled", - "component/label": "disabled", - "component/tooltip": "disabled", - "component/input-time": "disabled", - "component/switch": "disabled", - "component/input-message": "disabled", - "component/accordion-item": "disabled", - "component/alert": "disabled", - "component/accordion": "disabled", - "component/accordion_backup": "disabled", - "component/tip": "disabled" - }, - "$figmaStyleReferences": {} - }, - { - "id": "d7056b4e805091c91b5ec1b6ce901ba3d606e7a8", - "name": "Brand - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "enabled", - "brand/light": "disabled", - "brand/dark": "enabled", - "component/label": "disabled", - "component/tooltip": "disabled", - "component/input-time": "disabled", - "component/switch": "disabled", - "component/input-message": "disabled", - "component/accordion-item": "disabled", - "component/alert": "disabled", - "component/accordion": "disabled", - "component/accordion_backup": "disabled", - "component/tip": "disabled" - }, - "$figmaStyleReferences": {} - }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "enabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/input-time": "disabled", - "component/switch": "disabled", - "component/input-message": "disabled", - "component/accordion-item": "disabled", - "component/alert": "disabled", - "component/accordion": "disabled", - "component/accordion_backup": "disabled", - "component/tip": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," - } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "enabled", - "calcite/dark": "disabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/input-time": "disabled", - "component/switch": "disabled", - "component/input-message": "disabled", - "component/accordion-item": "disabled", - "component/alert": "disabled", - "component/accordion": "disabled", - "component/accordion_backup": "disabled", - "component/tip": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", - "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", - "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", - "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", - "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", - "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", - "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", - "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", - "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", - "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", - "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", - "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", - "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", - "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," - } - }, - { - "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", - "name": "Calcite Headless", - "selectedTokenSets": { - "core": "enabled", - "semantic": "enabled", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "disabled", - "component/avatar": "enabled", - "component/checkbox": "enabled", - "component/chip": "enabled", - "component/loader": "enabled", - "component/radio": "enabled", - "component/rating": "enabled", - "component/label": "enabled", - "component/tooltip": "enabled", - "component/input-time": "enabled", - "component/[template-comp-name]": "enabled" - "component/switch": "enabled", - "component/input-message": "enabled", - "component/accordion-item": "enabled", - "component/alert": "enabled", - "component/accordion": "enabled", - "component/accordion_backup": "disabled", - "component/tip": "enabled" - }, - "$figmaStyleReferences": { - "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", - "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", - "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", - "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", - "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", - "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", - "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", - "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", - "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", - "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", - "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", - "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", - "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", - "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", - "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", - "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", - "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", - "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", - "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", - "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", - "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", - "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", - "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", - "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", - "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", - "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", - "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", - "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", - "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", - "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", - "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", - "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", - "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", - "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", - "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", - "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", - "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", - "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", - "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", - "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", - "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", - "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", - "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", - "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", - "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", - "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", - "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", - "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", - "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", - "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", - "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", - "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", - "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", - "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", - "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", - "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", - "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", - "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", - "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", - "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", - "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", - "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", - "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", - "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", - "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", - "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", - "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", - "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", - "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", - "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", - "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", - "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", - "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", - "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", - "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", - "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", - "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", - "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", - "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", - "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", - "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", - "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", - "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", - "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", - "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", - "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", - "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", - "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", - "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", - "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", - "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", - "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", - "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", - "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", - "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", - "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", - "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", - "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", - "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", - "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", - "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", - "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", - "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", - "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", - "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", - "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", - "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", - "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", - "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", - "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", - "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", - "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", - "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", - "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", - "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", - "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", - "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", - "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", - "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", - "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", - "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", - "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", - "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", - "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", - "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", - "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", - "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", - "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", - "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", - "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", - "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", - "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", - "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", - "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", - "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", - "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", - "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", - "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", - "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", - "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", - "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", - "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", - "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", - "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", - "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", - "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", - "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", - "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", - "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", - "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", - "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", - "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", - "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", - "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", - "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", - "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", - "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", - "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", - "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", - "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", - "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", - "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", - "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", - "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", - "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", - "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", - "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", - "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", - "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", - "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", - "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", - "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", - "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", - "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", - "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", - "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", - "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", - "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", - "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", - "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", - "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", - "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", - "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", - "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", - "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", - "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", - "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", - "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", - "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", - "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", - "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", - "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", - "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", - "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", - "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", - "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", - "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", - "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", - "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", - "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", - "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", - "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", - "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", - "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", - "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", - "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", - "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", - "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", - "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", - "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", - "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", - "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", - "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", - "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", - "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", - "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", - "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", - "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", - "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", - "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", - "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", - "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", - "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", - "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", - "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", - "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", - "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", - "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", - "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", - "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", - "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", - "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", - "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", - "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", - "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", - "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", - "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", - "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", - "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", - "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", - "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", - "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", - "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", - "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", - "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", - "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", - "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", - "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", - "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", - "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", - "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", - "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", - "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", - "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", - "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", - "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", - "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", - "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", - "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", - "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", - "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", - "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", - "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", - "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", - "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", - "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", - "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", - "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", - "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", - "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", - "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", - "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", - "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", - "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", - "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", - "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", - "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", - "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", - "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", - "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", - "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", - "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", - "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", - "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", - "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", - "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", - "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", - "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", - "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", - "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", - "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", - "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", - "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", - "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", - "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", - "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", - "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", - "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", - "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", - "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", - "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", - "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", - "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", - "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", - "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", - "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", - "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", - "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", - "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", - "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", - "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", - "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", - "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", - "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", - "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", - "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", - "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", - "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", - "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", - "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", - "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", - "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", - "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", - "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", - "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", - "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", - "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", - "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", - "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", - "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", - "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", - "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", - "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", - "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", - "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", - "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", - "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", - "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", - "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", - "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", - "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", - "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", - "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", - "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", - "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", - "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", - "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", - "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", - "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", - "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", - "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", - "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", - "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", - "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", - "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", - "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", - "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", - "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", - "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", - "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", - "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", - "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", - "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", - "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", - "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", - "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", - "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", - "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", - "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", - "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", - "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", - "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", - "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", - "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", - "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", - "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", - "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", - "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", - "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", - "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", - "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", - "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", - "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", - "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", - "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", - "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", - "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", - "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", - "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", - "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", - "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", - "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", - "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", - "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", - "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", - "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", - "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", - "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", - "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", - "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", - "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", - "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", - "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", - "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", - "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", - "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", - "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", - "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", - "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", - "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", - "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", - "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", - "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", - "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", - "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", - "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", - "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", - "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", - "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", - "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", - "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", - "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", - "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", - "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", - "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", - "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", - "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", - "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", - "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", - "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", - "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", - "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", - "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", - "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", - "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", - "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", - "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", - "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", - "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", - "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", - "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", - "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", - "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", - "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", - "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", - "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", - "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", - "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", - "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", - "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", - "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", - "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", - "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", - "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", - "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", - "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", - "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", - "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", - "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", - "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", - "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", - "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", - "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", - "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", - "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", - "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", - "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", - "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", - "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", - "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", - "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", - "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", - "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", - "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", - "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", - "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", - "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", - "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", - "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", - "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", - "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", - "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", - "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", - "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", - "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", - "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", - "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", - "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", - "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", - "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", - "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", - "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", - "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", - "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", - "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", - "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", - "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", - "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", - "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", - "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", - "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", - "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", - "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", - "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", - "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", - "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", - "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", - "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", - "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", - "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", - "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", - "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", - "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", - "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", - "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", - "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", - "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", - "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", - "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", - "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", - "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," - } - } -] \ No newline at end of file +[] \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json deleted file mode 100644 index 4182d2b7a2a..00000000000 --- a/tokens/calcite/dark.json +++ /dev/null @@ -1,442 +0,0 @@ -{ - "color": { - "brand": { - "default": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.brand.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.brand.press.dark", - "type": "color" - } - }, - "background": { - "1": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - }, - "foreground": { - "1": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.foreground.3.dark", - "type": "color" - } - }, - "text": { - "1": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "inverse": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - }, - "link": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "border": { - "1": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - }, - "input": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "info": { - "default": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.info.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.info.press.dark", - "type": "color" - } - }, - "success": { - "default": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.success.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.success.press.dark", - "type": "color" - } - }, - "warning": { - "default": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.warning.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.warning.press.dark", - "type": "color" - } - }, - "danger": { - "default": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.danger.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.danger.press.dark", - "type": "color" - } - }, - "inverse": { - "default": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "component": { - "avatar": { - "font": { - "value": "$avatar.font.dark", - "type": "color" - }, - "icon": { - "value": "$avatar.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$avatar.background.default.dark", - "type": "color" - }, - "red": { - "value": "$avatar.background.red.dark", - "type": "color" - }, - "teal": { - "value": "$avatar.background.teal.dark", - "type": "color" - }, - "blue": { - "value": "$avatar.background.blue.dark", - "type": "color" - }, - "green": { - "value": "$avatar.background.green.dark", - "type": "color" - }, - "yellow": { - "value": "$avatar.background.yellow.dark", - "type": "color" - } - } - }, - "checkbox": { - "font": { - "value": "$checkbox.font.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$checkbox.background.default.dark", - "type": "color" - }, - "selected": { - "value": "$checkbox.background.selected.dark", - "type": "color" - } - }, - "icon": { - "value": "$checkbox.icon.dark", - "type": "color" - }, - "border": { - "value": "$checkbox.border.dark", - "type": "color" - } - }, - "radio": { - "font": { - "value": "$radio.font.dark", - "type": "color" - }, - "background": { - "value": "$radio.background.dark", - "type": "color" - }, - "border": { - "unchecked": { - "value": "$radio.border.unchecked.dark", - "type": "color" - }, - "checked": { - "value": "$radio.border.checked.dark", - "type": "color" - } - } - }, - "chip": { - "font": { - "clear": { - "value": "$chip.font.clear.dark", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.font.solid.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.font.solid.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.font.solid.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.font.solid.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.font.solid.green.dark", - "type": "color" - } - } - }, - "icon": { - "clear": { - "value": "$chip.icon.clear.dark", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.icon.solid.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.icon.solid.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.icon.solid.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.icon.solid.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.icon.solid.green.dark", - "type": "color" - } - } - }, - "closable-icon": { - "value": "$chip.closable-icon.dark", - "type": "color" - }, - "background": { - "solid": { - "grey": { - "value": "$chip.background.solid.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.background.solid.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.background.solid.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.background.solid.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.background.solid.green.dark", - "type": "color" - } - } - }, - "border": { - "clear": { - "grey": { - "value": "$chip.border.clear.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.border.clear.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.border.clear.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.border.clear.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.border.clear.green.dark", - "type": "color" - } - } - } - }, - "label": { - "font": { - "value": "$label.font.dark", - "type": "color" - } - }, - "loader": { - "font": { - "value": "$loader.font.dark", - "type": "color" - }, - "default": { - "foreground": { - "value": "$loader.default.foreground.dark", - "type": "color" - } - }, - "inline": { - "foreground": { - "indeterminate": { - "value": "$loader.inline.foreground.indeterminate.dark", - "type": "color" - }, - "determinate": { - "value": "$loader.inline.foreground.determinate.dark", - "type": "color" - } - } - } - }, - "rating": { - "star": { - "background": { - "default": { - "value": "$rating.star.background.default.dark", - "type": "color" - }, - "active": { - "value": "$rating.star.background.active.dark", - "type": "color" - }, - "average": { - "value": "$rating.star.background.average.dark", - "type": "color" - } - } - }, - "chip": { - "value-text": { - "font": { - "value": "$rating.chip.value-text.font.dark", - "type": "color" - } - }, - "count": { - "font": { - "value": "$rating.chip.count.font.dark", - "type": "color" - } - }, - "foreground": { - "value": "$rating.chip.foreground.dark", - "type": "color" - } - } - }, - "tooltip": { - "foreground": { - "value": "$tooltip.foreground.dark", - "type": "color" - }, - "border": { - "value": "$tooltip.border.dark", - "type": "color" - }, - "font": { - "value": "$tooltip.font.dark", - "type": "color" - } - }, - "accordion-item": { - "font": { - "heading": { - "value": "$accordion-item.font.heading.dark", - "type": "color" - }, - "description": { - "value": "$accordion-item.font.description.dark", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$accordion-item.icon.default.dark", - "type": "color" - }, - "expanded": { - "value": "$accordion-item.icon.expanded.dark", - "type": "color" - } - }, - "background": { - "value": "$accordion-item.background.default.dark", - "type": "color" - }, - "border": { - "value": "$accordion-item.border.dark", - "type": "color" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json deleted file mode 100644 index 1cf660ae821..00000000000 --- a/tokens/calcite/light.json +++ /dev/null @@ -1,442 +0,0 @@ -{ - "color": { - "brand": { - "default": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.brand.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.brand.press.light", - "type": "color" - } - }, - "background": { - "1": { - "value": "$semantic.ui.color.background.light", - "type": "color" - } - }, - "foreground": { - "1": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.foreground.3.light", - "type": "color" - } - }, - "text": { - "1": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "inverse": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "link": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - } - }, - "border": { - "1": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "input": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - } - }, - "info": { - "default": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.info.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.info.press.light", - "type": "color" - } - }, - "success": { - "default": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.success.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.success.press.light", - "type": "color" - } - }, - "warning": { - "default": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.warning.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.warning.press.light", - "type": "color" - } - }, - "danger": { - "default": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.danger.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.danger.press.light", - "type": "color" - } - }, - "inverse": { - "default": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - } - }, - "component": { - "avatar": { - "font": { - "value": "$avatar.font.light", - "type": "color" - }, - "icon": { - "value": "$avatar.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$avatar.background.default.light", - "type": "color" - }, - "red": { - "value": "$avatar.background.red.light", - "type": "color" - }, - "teal": { - "value": "$avatar.background.teal.light", - "type": "color" - }, - "blue": { - "value": "$avatar.background.blue.light", - "type": "color" - }, - "green": { - "value": "$avatar.background.green.light", - "type": "color" - }, - "yellow": { - "value": "$avatar.background.yellow.light", - "type": "color" - } - } - }, - "checkbox": { - "font": { - "value": "$checkbox.font.light", - "type": "color" - }, - "background": { - "default": { - "value": "$checkbox.background.default.light", - "type": "color" - }, - "selected": { - "value": "$checkbox.background.selected.light", - "type": "color" - } - }, - "icon": { - "value": "$checkbox.icon.light", - "type": "color" - }, - "border": { - "value": "$checkbox.border.light", - "type": "color" - } - }, - "radio": { - "font": { - "value": "$radio.font.light", - "type": "color" - }, - "background": { - "value": "$radio.background.light", - "type": "color" - }, - "border": { - "unchecked": { - "value": "$radio.border.unchecked.light", - "type": "color" - }, - "checked": { - "value": "$radio.border.checked.light", - "type": "color" - } - } - }, - "chip": { - "font": { - "clear": { - "value": "$chip.font.clear.light", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.font.solid.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.font.solid.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.font.solid.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.font.solid.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.font.solid.green.light", - "type": "color" - } - } - }, - "icon": { - "clear": { - "value": "$chip.icon.clear.light", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.icon.solid.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.icon.solid.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.icon.solid.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.icon.solid.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.icon.solid.green.light", - "type": "color" - } - } - }, - "closable-icon": { - "value": "$chip.closable-icon.light", - "type": "color" - }, - "background": { - "solid": { - "grey": { - "value": "$chip.background.solid.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.background.solid.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.background.solid.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.background.solid.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.background.solid.green.light", - "type": "color" - } - } - }, - "border": { - "clear": { - "grey": { - "value": "$chip.border.clear.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.border.clear.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.border.clear.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.border.clear.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.border.clear.green.light", - "type": "color" - } - } - } - }, - "label": { - "font": { - "value": "$label.font.light", - "type": "color" - } - }, - "loader": { - "font": { - "value": "$loader.font.light", - "type": "color" - }, - "default": { - "foreground": { - "value": "$loader.default.foreground.light", - "type": "color" - } - }, - "inline": { - "foreground": { - "indeterminate": { - "value": "$loader.inline.foreground.indeterminate.light", - "type": "color" - }, - "determinate": { - "value": "$loader.inline.foreground.determinate.light", - "type": "color" - } - } - } - }, - "rating": { - "star": { - "background": { - "default": { - "value": "$rating.star.background.default.light", - "type": "color" - }, - "active": { - "value": "$rating.star.background.active.light", - "type": "color" - }, - "average": { - "value": "$rating.star.background.average.light", - "type": "color" - } - } - }, - "chip": { - "value-text": { - "font": { - "value": "$rating.chip.value-text.font.light", - "type": "color" - } - }, - "count": { - "font": { - "value": "$rating.chip.count.font.light", - "type": "color" - } - }, - "foreground": { - "value": "$rating.chip.foreground.light", - "type": "color" - } - } - }, - "tooltip": { - "foreground": { - "value": "$tooltip.foreground.light", - "type": "color" - }, - "border": { - "value": "$tooltip.border.light", - "type": "color" - }, - "font": { - "value": "$tooltip.font.light", - "type": "color" - } - }, - "accordion-item": { - "font": { - "heading": { - "value": "$accordion-item.font.heading.light", - "type": "color" - }, - "description": { - "value": "$accordion-item.font.description.light", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$accordion-item.icon.default.light", - "type": "color" - }, - "expanded": { - "value": "$accordion-item.icon.expanded.light", - "type": "color" - } - }, - "background": { - "value": "$accordion-item.background.default.light", - "type": "color" - }, - "border": { - "value": "$accordion-item.border.light", - "type": "color" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json deleted file mode 100644 index 90b1037f52a..00000000000 --- a/tokens/component/[template-comp-name].json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "[comp-name]": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json deleted file mode 100644 index 3e8f1edc798..00000000000 --- a/tokens/component/accordion-item.json +++ /dev/null @@ -1,176 +0,0 @@ -{ - "accordion-item": { - "font": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "descrition": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "expanded": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "default": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - } - } - }, - "border-width": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/accordion.json b/tokens/component/accordion.json deleted file mode 100644 index 044f000b7c8..00000000000 --- a/tokens/component/accordion.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "accordion": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "expanded": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "default": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - } - } - }, - "minimal": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.none}", - "type": "spacing" - } - } - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/accordion_backup.json b/tokens/component/accordion_backup.json deleted file mode 100644 index 5a67f8416b4..00000000000 --- a/tokens/component/accordion_backup.json +++ /dev/null @@ -1,238 +0,0 @@ -{ - "accordion": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "expanded": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "default": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - } - } - }, - "minimal": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.none}", - "type": "spacing" - } - } - } - }, - "border-width": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/alert.json b/tokens/component/alert.json deleted file mode 100644 index e6ae9fd5a4e..00000000000 --- a/tokens/component/alert.json +++ /dev/null @@ -1,272 +0,0 @@ -{ - "alert": { - "title": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "font": { - "title": { - "sm": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.1h", - "type": "typography" - } - }, - "message": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - } - }, - "message": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "background": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "icon": { - "blue": { - "light": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "highlight": { - "blue": { - "light": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "space-between": { - "sm": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.7}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.8}", - "type": "spacing" - } - }, - "space-around": { - "top": { - "sm": { - "value": "{core.spacing.4}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.8}", - "type": "spacing" - } - }, - "bottom": { - "sm": { - "value": "{core.spacing.4}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.8}", - "type": "spacing" - } - }, - "left": { - "sm": { - "value": "{core.spacing.4}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.8}", - "type": "spacing" - } - }, - "right": { - "sm": { - "value": "{core.spacing.4}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.8}", - "type": "spacing" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json deleted file mode 100644 index 5694023e615..00000000000 --- a/tokens/component/avatar.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "avatar": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.red.h-rr-090", - "type": "color" - } - }, - "teal": { - "light": { - "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-090", - "type": "color" - } - }, - "green": { - "light": { - "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-100", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json deleted file mode 100644 index cfa42420acf..00000000000 --- a/tokens/component/checkbox.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "checkbox": { - "comp-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.6", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.3", - "type": "spacing" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "selected": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "border-radius": { - "value": "$semantic.border.border-radius.sharp", - "type": "borderRadius" - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "space-around": { - "standard": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/chip.json b/tokens/component/chip.json deleted file mode 100644 index 65914eb59f6..00000000000 --- a/tokens/component/chip.json +++ /dev/null @@ -1,350 +0,0 @@ -{ - "chip": { - "font": { - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - }, - "solid": { - "grey": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - } - }, - "icon": { - "solid": { - "grey": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "solid": { - "grey": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "closable-icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "space-around": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" - } - } - }, - "border": { - "clear": { - "grey": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - } - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - } -} \ No newline at end of file diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json deleted file mode 100644 index b4f54476d2c..00000000000 --- a/tokens/component/input-message.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "input-message": { - "font": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - } - }, - "icon": { - "idle": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "invalid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "valid": { - "light": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - } - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/input-time.json b/tokens/component/input-time.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/tokens/component/input-time.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/tokens/component/label.json b/tokens/component/label.json deleted file mode 100644 index b658a3053ad..00000000000 --- a/tokens/component/label.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "label": { - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/loader.json b/tokens/component/loader.json deleted file mode 100644 index 5aa7993e951..00000000000 --- a/tokens/component/loader.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "loader": { - "font": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "text": { - "value": "$semantic.font.wrap.regular.-2", - "type": "typography" - }, - "value-text": { - "sm": { - "value": "$semantic.font.wrap.regular.-2", - "type": "typography" - }, - "md": { - "value": "$semantic.font.wrap.regular.0", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.wrap.regular.2", - "type": "typography" - } - } - }, - "default": { - "comp-size": { - "sm": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.17", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.20", - "type": "sizing" - } - }, - "space-between": { - "standard": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inline": { - "comp-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "foreground": { - "indeterminate": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "determinate": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/radio.json b/tokens/component/radio.json deleted file mode 100644 index 8c72a63238d..00000000000 --- a/tokens/component/radio.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "radio": { - "comp-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.6", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.3", - "type": "spacing" - } - }, - "background": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "border-radius": { - "value": "$semantic.border.border-radius.pill", - "type": "borderRadius" - }, - "border-width": { - "unchecked": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "checked": { - "sm": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.3", - "type": "borderWidth" - } - } - }, - "border": { - "unchecked": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "space-around": { - "sm": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/rating.json b/tokens/component/rating.json deleted file mode 100644 index c6c40e58835..00000000000 --- a/tokens/component/rating.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "rating": { - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "chip": { - "border-radius": { - "value": "$semantic.border.border-radius.pill", - "type": "borderRadius" - }, - "value-text": { - "font": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "count": { - "font": { - "sm": { - "value": { - "typography": "$rating.chip.value-text.font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$rating.chip.value-text.font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$rating.chip.value-text.font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - } - }, - "star": { - "comp-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "average": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - } - } - }, - "star-container": { - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.5", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.2", - "type": "spacing" - } - } - }, - "average": { - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.5", - "type": "spacing" - } - }, - "chip": { - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.5", - "type": "spacing" - } - }, - "space-arround": { - "sm": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "spacing" - } - } - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" - } - }, - "space-arround": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/switch.json b/tokens/component/switch.json deleted file mode 100644 index 1bfd307ea81..00000000000 --- a/tokens/component/switch.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "switch": { - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.15", - "type": "sizing" - } - }, - "handle-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "border": { - "default": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$semantic.ui.color.brand.hover.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.hover.dark", - "type": "color" - } - } - }, - "handle": { - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "border": { - "default": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.half", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.half", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.half", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "{core.border.border-width.1}", - "type": "borderWidth" - }, - "md": { - "value": "{core.border.border-width.1}", - "type": "borderWidth" - }, - "lg": { - "value": "{core.border.border-width.1}", - "type": "borderWidth" - } - } - }, - "border-width": { - "sm": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - }, - "md": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - }, - "lg": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/tip.json b/tokens/component/tip.json deleted file mode 100644 index f35cde8a6e6..00000000000 --- a/tokens/component/tip.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "tip": { - "font": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "md": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "border-radius": { - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "md": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "border": { - "default": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - } - } - }, - "default": { - "space-between": { - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - } - }, - "space-around": { - "md": { - "value": "{core.spacing.7}", - "type": "spacing" - } - } - }, - "selected": { - "space-between": { - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - } - }, - "space-around": { - "md": { - "value": "{core.spacing.none}", - "type": "spacing" - } - } - }, - "border-width": { - "md": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json deleted file mode 100644 index 51d50bce707..00000000000 --- a/tokens/component/tooltip.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "tooltip": { - "space-arround": { - "top-bottom": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "left-right": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "font": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "standard": { - "value": "$semantic.font.wrap.medium.-2", - "type": "typography" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "border-radius": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "arrow": { - "width": { - "value": "$core.sizing.6", - "type": "sizing" - }, - "height": { - "value": "$core.sizing.2", - "type": "sizing" - } - } - } -} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json deleted file mode 100644 index f697f4387a2..00000000000 --- a/tokens/core.json +++ /dev/null @@ -1,1696 +0,0 @@ -{ - "core": { - "font": { - "font-family": { - "primary": { - "value": "Avenir Next LT Pro", - "type": "fontFamilies" - }, - "secondary": { - "value": "Avenir Next World", - "type": "fontFamilies" - }, - "code": { - "value": "Monaco", - "type": "fontFamilies" - } - }, - "font-weight": { - "ultralight": { - "value": "UltraLight", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "thin": { - "value": "Thin", - "type": "fontWeights" - }, - "light": { - "value": "Light", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "regular": { - "value": "Regular", - "type": "fontWeights" - }, - "medium": { - "value": "Medium", - "type": "fontWeights" - }, - "medium-italic": { - "value": "Medium Italic", - "type": "fontWeights" - }, - "demi": { - "value": "Demi", - "type": "fontWeights" - }, - "bold": { - "value": "Bold", - "type": "fontWeights" - }, - "extrabold": { - "value": "ExtraBold", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "black": { - "value": "Black", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "heavy": { - "value": "Heavy", - "type": "fontWeights" - } - }, - "line-height": { - "fixed": { - "0": { - "value": "12px", - "type": "lineHeights" - }, - "1": { - "value": "16px", - "type": "lineHeights" - }, - "2": { - "value": "20px", - "type": "lineHeights" - }, - "3": { - "value": "24px", - "type": "lineHeights" - }, - "4": { - "value": "28px", - "type": "lineHeights" - }, - "5": { - "value": "32px", - "type": "lineHeights" - }, - "6": { - "value": "36px", - "type": "lineHeights" - }, - "7": { - "value": "40px", - "type": "lineHeights" - }, - "8": { - "value": "48px", - "type": "lineHeights" - }, - "9": { - "value": "56px", - "type": "lineHeights" - }, - "10": { - "value": "64px", - "type": "lineHeights" - }, - "11": { - "value": "72px", - "type": "lineHeights" - }, - "12": { - "value": "80px", - "type": "lineHeights" - } - }, - "relative": { - "default": { - "value": "auto", - "type": "lineHeights", - "description": "1" - }, - "tight": { - "value": "125%", - "type": "lineHeights", - "description": "1.25" - }, - "snug": { - "value": "137.5%", - "type": "lineHeights", - "description": "1.375" - }, - "normal": { - "value": "150%", - "type": "lineHeights", - "description": "1.5" - }, - "relaxed": { - "value": "162.5%", - "type": "lineHeights", - "description": "1.625" - }, - "loose": { - "value": "200%", - "type": "lineHeights", - "description": "2" - } - } - }, - "font-size": { - "0": { - "value": "10px", - "type": "fontSizes" - }, - "1": { - "value": "12px", - "type": "fontSizes" - }, - "2": { - "value": "14px", - "type": "fontSizes" - }, - "3": { - "value": "16px", - "type": "fontSizes" - }, - "4": { - "value": "18px", - "type": "fontSizes" - }, - "5": { - "value": "20px", - "type": "fontSizes" - }, - "6": { - "value": "24px", - "type": "fontSizes" - }, - "7": { - "value": "32px", - "type": "fontSizes" - }, - "8": { - "value": "40px", - "type": "fontSizes" - }, - "9": { - "value": "48px", - "type": "fontSizes" - }, - "10": { - "value": "56px", - "type": "fontSizes" - }, - "11": { - "value": "64px", - "type": "fontSizes" - }, - "12": { - "value": "72px", - "type": "fontSizes" - }, - "13": { - "value": "80px", - "type": "fontSizes" - }, - "14": { - "value": "96px", - "type": "fontSizes" - }, - "15": { - "value": "120px", - "type": "fontSizes" - } - }, - "letter-spacing": { - "tight": { - "value": "-0.4px", - "type": "letterSpacing" - }, - "normal": { - "value": "0px", - "type": "letterSpacing" - }, - "wide": { - "value": "0.4px", - "type": "letterSpacing" - } - }, - "paragraph-spacing": { - "normal": { - "value": "10px", - "type": "paragraphSpacing" - } - }, - "text-decoration": { - "none": { - "value": "none", - "type": "textDecoration" - }, - "underline": { - "value": "underline", - "type": "textDecoration" - } - }, - "text-case": { - "none": { - "value": "none", - "type": "textCase" - }, - "uppercase": { - "value": "uppercase", - "type": "textCase" - }, - "lowercase": { - "value": "lowercase", - "type": "textCase" - }, - "capitalize": { - "value": "capitalize", - "type": "textCase" - } - } - }, - "border": { - "border-radius": { - "0": { - "value": "2px", - "type": "borderRadius" - }, - "1": { - "value": "4px", - "type": "borderRadius" - }, - "2": { - "value": "6px", - "type": "borderRadius" - }, - "3": { - "value": "8px", - "type": "borderRadius" - }, - "4": { - "value": "12px", - "type": "borderRadius" - }, - "5": { - "value": "16px", - "type": "borderRadius" - }, - "6": { - "value": "24px", - "type": "borderRadius" - }, - "none": { - "value": "0px", - "type": "borderRadius" - }, - "half": { - "value": "50%", - "type": "borderRadius" - }, - "full": { - "value": "9999px", - "type": "borderRadius" - } - }, - "border-width": { - "0": { - "value": "1px", - "type": "borderWidth" - }, - "1": { - "value": "2px", - "type": "borderWidth" - }, - "2": { - "value": "4px", - "type": "borderWidth" - }, - "3": { - "value": "6px", - "type": "borderWidth" - }, - "4": { - "value": "8px", - "type": "borderWidth" - }, - "none": { - "value": "0px", - "type": "borderWidth" - } - } - }, - "opacity": { - "0": { - "value": "0%", - "type": "opacity" - }, - "4": { - "value": "4%", - "type": "opacity" - }, - "8": { - "value": "8%", - "type": "opacity" - }, - "10": { - "value": "10%", - "type": "opacity" - }, - "20": { - "value": "20%", - "type": "opacity" - }, - "30": { - "value": "30%", - "type": "opacity" - }, - "40": { - "value": "40%", - "type": "opacity" - }, - "50": { - "value": "50%", - "type": "opacity" - }, - "60": { - "value": "60%", - "type": "opacity" - }, - "70": { - "value": "70%", - "type": "opacity" - }, - "80": { - "value": "80%", - "type": "opacity" - }, - "90": { - "value": "90%", - "type": "opacity" - }, - "92": { - "value": "92%", - "type": "opacity" - }, - "96": { - "value": "96%", - "type": "opacity" - }, - "100": { - "value": "100%", - "type": "opacity" - } - }, - "color": { - "neutral": { - "blk-000": { - "value": "#ffffff", - "type": "color" - }, - "blk-005": { - "value": "#f8f8f8", - "type": "color" - }, - "blk-010": { - "value": "#f3f3f3", - "type": "color" - }, - "blk-020": { - "value": "#eaeaea", - "type": "color" - }, - "blk-030": { - "value": "#dfdfdf", - "type": "color" - }, - "blk-040": { - "value": "#d4d4d4", - "type": "color" - }, - "blk-050": { - "value": "#cacaca", - "type": "color" - }, - "blk-060": { - "value": "#bfbfbf", - "type": "color" - }, - "blk-070": { - "value": "#b5b5b5", - "type": "color" - }, - "blk-080": { - "value": "#aaaaaa", - "type": "color" - }, - "blk-090": { - "value": "#9f9f9f", - "type": "color" - }, - "blk-100": { - "value": "#949494", - "type": "color" - }, - "blk-110": { - "value": "#8a8a8a", - "type": "color" - }, - "blk-120": { - "value": "#808080", - "type": "color" - }, - "blk-130": { - "value": "#757575", - "type": "color" - }, - "blk-140": { - "value": "#6a6a6a", - "type": "color" - }, - "blk-150": { - "value": "#606060", - "type": "color" - }, - "blk-160": { - "value": "#555555", - "type": "color" - }, - "blk-170": { - "value": "#4a4a4a", - "type": "color" - }, - "blk-180": { - "value": "#404040", - "type": "color" - }, - "blk-190": { - "value": "#353535", - "type": "color" - }, - "blk-200": { - "value": "#2b2b2b", - "type": "color" - }, - "blk-210": { - "value": "#202020", - "type": "color" - }, - "blk-220": { - "value": "#151515", - "type": "color" - }, - "blk-230": { - "value": "#0b0b0b", - "type": "color" - }, - "blk-235": { - "value": "#060606", - "type": "color" - }, - "blk-240": { - "value": "#000000", - "type": "color" - } - }, - "palette": { - "high-saturation": { - "blue": { - "h-bb-010": { - "value": "#c7eaff", - "type": "color" - }, - "h-bb-020": { - "value": "#9fd4f3", - "type": "color" - }, - "h-bb-030": { - "value": "#77bde7", - "type": "color" - }, - "h-bb-040": { - "value": "#50a7da", - "type": "color" - }, - "h-bb-050": { - "value": "#2890ce", - "type": "color" - }, - "h-bb-060": { - "value": "#007ac2", - "type": "color" - }, - "h-bb-070": { - "value": "#00619b", - "type": "color" - }, - "h-bb-080": { - "value": "#004874", - "type": "color" - }, - "h-bb-090": { - "value": "#00304d", - "type": "color" - }, - "h-bb-100": { - "value": "#001726", - "type": "color" - } - }, - "green-blue": { - "h-gb-010": { - "value": "#cef5f4", - "type": "color" - }, - "h-gb-020": { - "value": "#afedec", - "type": "color" - }, - "h-gb-030": { - "value": "#8fe6e5", - "type": "color" - }, - "h-gb-040": { - "value": "#5ae0de", - "type": "color" - }, - "h-gb-050": { - "value": "#28cecb", - "type": "color" - }, - "h-gb-060": { - "value": "#00bab5", - "type": "color" - }, - "h-gb-070": { - "value": "#009b98", - "type": "color" - }, - "h-gb-080": { - "value": "#007472", - "type": "color" - }, - "h-gb-090": { - "value": "#004d4c", - "type": "color" - }, - "h-gb-100": { - "value": "#002625", - "type": "color" - } - }, - "green": { - "h-gg-010": { - "value": "#bdf2c4", - "type": "color" - }, - "h-gg-020": { - "value": "#a2e4ab", - "type": "color" - }, - "h-gg-030": { - "value": "#87d692", - "type": "color" - }, - "h-gg-040": { - "value": "#6bc878", - "type": "color" - }, - "h-gg-050": { - "value": "#50ba5f", - "type": "color" - }, - "h-gg-060": { - "value": "#35ac46", - "type": "color" - }, - "h-gg-070": { - "value": "#288835", - "type": "color" - }, - "h-gg-080": { - "value": "#1a6324", - "type": "color" - }, - "h-gg-090": { - "value": "#0d3f14", - "type": "color" - }, - "h-gg-100": { - "value": "#001a03", - "type": "color" - } - }, - "yellow-green": { - "h-yg-010": { - "value": "#e5f7b4", - "type": "color" - }, - "h-yg-020": { - "value": "#d9ef9f", - "type": "color" - }, - "h-yg-030": { - "value": "#cde78a", - "type": "color" - }, - "h-yg-040": { - "value": "#c2e075", - "type": "color" - }, - "h-yg-050": { - "value": "#b6d860", - "type": "color" - }, - "h-yg-060": { - "value": "#aad04b", - "type": "color" - }, - "h-yg-070": { - "value": "#84a338", - "type": "color" - }, - "h-yg-080": { - "value": "#5e7526", - "type": "color" - }, - "h-yg-090": { - "value": "#384813", - "type": "color" - }, - "h-yg-100": { - "value": "#121a00", - "type": "color" - } - }, - "yellow": { - "h-yy-010": { - "value": "#fff7cc", - "type": "color" - }, - "h-yy-020": { - "value": "#fef3ad", - "type": "color" - }, - "h-yy-030": { - "value": "#fcee8d", - "type": "color" - }, - "h-yy-040": { - "value": "#fbea6e", - "type": "color" - }, - "h-yy-050": { - "value": "#f9e54e", - "type": "color" - }, - "h-yy-060": { - "value": "#edd317", - "type": "color" - }, - "h-yy-070": { - "value": "#d9bc00", - "type": "color" - }, - "h-yy-080": { - "value": "#bfa200", - "type": "color" - }, - "h-yy-090": { - "value": "#8c7500", - "type": "color" - }, - "h-yy-100": { - "value": "#5c4e00", - "type": "color" - } - }, - "orange-yellow": { - "h-oy-010": { - "value": "#ffe2bf", - "type": "color" - }, - "h-oy-020": { - "value": "#fed3a1", - "type": "color" - }, - "h-oy-030": { - "value": "#fcc582", - "type": "color" - }, - "h-oy-040": { - "value": "#fbb664", - "type": "color" - }, - "h-oy-050": { - "value": "#f9a845", - "type": "color" - }, - "h-oy-060": { - "value": "#f89927", - "type": "color" - }, - "h-oy-070": { - "value": "#c67718", - "type": "color" - }, - "h-oy-080": { - "value": "#9a5b10", - "type": "color" - }, - "h-oy-090": { - "value": "#6d3f08", - "type": "color" - }, - "h-oy-100": { - "value": "#402300", - "type": "color" - } - }, - "orange": { - "h-oo-010": { - "value": "#ffd8bf", - "type": "color" - }, - "h-oo-020": { - "value": "#fdc39f", - "type": "color" - }, - "h-oo-030": { - "value": "#faae7f", - "type": "color" - }, - "h-oo-040": { - "value": "#f89960", - "type": "color" - }, - "h-oo-050": { - "value": "#f58440", - "type": "color" - }, - "h-oo-060": { - "value": "#f36f20", - "type": "color" - }, - "h-oo-070": { - "value": "#c65a18", - "type": "color" - }, - "h-oo-080": { - "value": "#9a4410", - "type": "color" - }, - "h-oo-090": { - "value": "#6d2f08", - "type": "color" - }, - "h-oo-100": { - "value": "#401900", - "type": "color" - } - }, - "red-orange": { - "h-ro-010": { - "value": "#ffc7b3", - "type": "color" - }, - "h-ro-020": { - "value": "#f8af95", - "type": "color" - }, - "h-ro-030": { - "value": "#f09677", - "type": "color" - }, - "h-ro-040": { - "value": "#e97e5a", - "type": "color" - }, - "h-ro-050": { - "value": "#e1653c", - "type": "color" - }, - "h-ro-060": { - "value": "#da4d1e", - "type": "color" - }, - "h-ro-070": { - "value": "#ad3c16", - "type": "color" - }, - "h-ro-080": { - "value": "#802c0f", - "type": "color" - }, - "h-ro-090": { - "value": "#531b07", - "type": "color" - }, - "h-ro-100": { - "value": "#260a00", - "type": "color" - } - }, - "red": { - "h-rr-010": { - "value": "#ffc6bf", - "type": "color" - }, - "h-rr-020": { - "value": "#ffaaa1", - "type": "color" - }, - "h-rr-030": { - "value": "#f2877b", - "type": "color" - }, - "h-rr-040": { - "value": "#f07062", - "type": "color" - }, - "h-rr-050": { - "value": "#e65240", - "type": "color" - }, - "h-rr-060": { - "value": "#d83020", - "type": "color" - }, - "h-rr-070": { - "value": "#a82b1e", - "type": "color" - }, - "h-rr-080": { - "value": "#7c1d13", - "type": "color" - }, - "h-rr-090": { - "value": "#4f0e08", - "type": "color" - }, - "h-rr-100": { - "value": "#210300", - "type": "color" - } - }, - "pink": { - "h-pk-010": { - "value": "#ffd1ef", - "type": "color" - }, - "h-pk-020": { - "value": "#fabee4", - "type": "color" - }, - "h-pk-030": { - "value": "#f2a5d6", - "type": "color" - }, - "h-pk-040": { - "value": "#eb8dc9", - "type": "color" - }, - "h-pk-050": { - "value": "#e673bb", - "type": "color" - }, - "h-pk-060": { - "value": "#e04ea6", - "type": "color" - }, - "h-pk-070": { - "value": "#ba2f7e", - "type": "color" - }, - "h-pk-080": { - "value": "#851b52", - "type": "color" - }, - "h-pk-090": { - "value": "#590b32", - "type": "color" - }, - "h-pk-100": { - "value": "#260404", - "type": "color" - } - }, - "violet-red": { - "h-vr-010": { - "value": "#fadbff", - "type": "color" - }, - "h-vr-020": { - "value": "#e4beeb", - "type": "color" - }, - "h-vr-030": { - "value": "#cfa1d7", - "type": "color" - }, - "h-vr-040": { - "value": "#b983c3", - "type": "color" - }, - "h-vr-050": { - "value": "#a466af", - "type": "color" - }, - "h-vr-060": { - "value": "#8e499b", - "type": "color" - }, - "h-vr-070": { - "value": "#73377e", - "type": "color" - }, - "h-vr-080": { - "value": "#572561", - "type": "color" - }, - "h-vr-090": { - "value": "#3c1243", - "type": "color" - }, - "h-vr-100": { - "value": "#200026", - "type": "color" - } - }, - "violet": { - "h-vv-010": { - "value": "#e8d9ff", - "type": "color" - }, - "h-vv-020": { - "value": "#cdb9eb", - "type": "color" - }, - "h-vv-030": { - "value": "#b39ad7", - "type": "color" - }, - "h-vv-040": { - "value": "#987ac3", - "type": "color" - }, - "h-vv-050": { - "value": "#7e5baf", - "type": "color" - }, - "h-vv-060": { - "value": "#633b9b", - "type": "color" - }, - "h-vv-070": { - "value": "#4e2c7e", - "type": "color" - }, - "h-vv-080": { - "value": "#3a1e61", - "type": "color" - }, - "h-vv-090": { - "value": "#250f43", - "type": "color" - }, - "h-vv-100": { - "value": "#100026", - "type": "color" - } - } - }, - "vibrant": { - "blue": { - "v-bb-120": { - "value": "#59d6ff", - "type": "color" - }, - "v-bb-140": { - "value": "#3db8ff", - "type": "color" - }, - "v-bb-160": { - "value": "#009af2", - "type": "color" - }, - "v-bb-180": { - "value": "#009af2", - "type": "color" - } - }, - "green-blue": { - "v-gb-120": { - "value": "#59fffc", - "type": "color" - }, - "v-gb-140": { - "value": "#00f7f3", - "type": "color" - }, - "v-gb-160": { - "value": "#00e6e2", - "type": "color" - }, - "v-gb-180": { - "value": "#00cfca", - "type": "color" - } - }, - "green": { - "v-gg-120": { - "value": "#73ff84", - "type": "color" - }, - "v-gg-140": { - "value": "#3bed52", - "type": "color" - }, - "v-gg-160": { - "value": "#00b81b", - "type": "color" - }, - "v-gg-180": { - "value": "#00a118", - "type": "color" - } - }, - "yellow-green": { - "v-yg-120": { - "value": "#d7ff73", - "type": "color" - }, - "v-yg-140": { - "value": "#bbed3b", - "type": "color" - }, - "v-yg-160": { - "value": "#96cc00", - "type": "color" - }, - "v-yg-180": { - "value": "#7fab00", - "type": "color" - } - }, - "yellow": { - "v-yy-120": { - "value": "#fff766", - "type": "color" - }, - "v-yy-140": { - "value": "#ffee33", - "type": "color" - }, - "v-yy-160": { - "value": "#f5d000", - "type": "color" - }, - "v-yy-180": { - "value": "#ebba17", - "type": "color" - } - }, - "orange-yellow": { - "v-oy-120": { - "value": "#ffb54d", - "type": "color" - }, - "v-oy-140": { - "value": "#ff9500", - "type": "color" - }, - "v-oy-160": { - "value": "#e68600", - "type": "color" - }, - "v-oy-180": { - "value": "#d17300", - "type": "color" - } - }, - "red-orange": { - "v-ro-120": { - "value": "#ff824d", - "type": "color" - }, - "v-ro-140": { - "value": "#ff4d00", - "type": "color" - }, - "v-ro-160": { - "value": "#de4300", - "type": "color" - }, - "v-ro-180": { - "value": "#c93b00", - "type": "color" - } - }, - "red": { - "v-rr-120": { - "value": "#ff624d", - "type": "color" - }, - "v-rr-140": { - "value": "#ff0015", - "type": "color" - }, - "v-rr-160": { - "value": "#d90012", - "type": "color" - }, - "v-rr-180": { - "value": "#b3000f", - "type": "color" - } - }, - "pink": { - "v-pk-120": { - "value": "#ff66c2", - "type": "color" - }, - "v-pk-140": { - "value": "#ff19a4", - "type": "color" - }, - "v-pk-160": { - "value": "#d11486", - "type": "color" - }, - "v-pk-180": { - "value": "#c00073", - "type": "color" - } - }, - "violet-red": { - "v-vr-120": { - "value": "#ea80ff", - "type": "color" - }, - "v-vr-140": { - "value": "#dd33ff", - "type": "color" - }, - "v-vr-160": { - "value": "#ac08cc", - "type": "color" - }, - "v-vr-180": { - "value": "#83009e", - "type": "color" - } - }, - "violet": { - "v-vv-120": { - "value": "#b580ff", - "type": "color" - }, - "v-vv-140": { - "value": "#974dff", - "type": "color" - }, - "v-vv-160": { - "value": "#8129ff", - "type": "color" - }, - "v-vv-180": { - "value": "#6a0be6", - "type": "color" - } - } - }, - "dark": { - "green": { - "d-gg-410": { - "value": "#44ED51", - "type": "color" - }, - "d-gg-420": { - "value": "#36DA43", - "type": "color" - }, - "d-gg-430": { - "value": "#36DA43", - "type": "color" - } - }, - "yellow": { - "d-yy-410": { - "value": "#FFE24D", - "type": "color" - }, - "d-yy-420": { - "value": "#FFC900", - "type": "color" - }, - "d-yy-430": { - "value": "#F4B000", - "type": "color" - } - }, - "red": { - "d-rr-410": { - "value": "#FF7465", - "type": "color" - }, - "d-rr-420": { - "value": "#FE583E", - "type": "color" - }, - "d-rr-430": { - "value": "#F3381B", - "type": "color" - } - }, - "blue": { - "d-bb-410": { - "value": "#47BBFF", - "type": "color" - }, - "d-bb-420": { - "value": "#00A0FF", - "type": "color" - }, - "d-bb-430": { - "value": "#0087D7", - "type": "color" - } - } - } - } - }, - "sizing": { - "0": { - "value": "2px", - "type": "sizing" - }, - "1": { - "value": "4px", - "type": "sizing" - }, - "2": { - "value": "6px", - "type": "sizing" - }, - "3": { - "value": "8px", - "type": "sizing" - }, - "4": { - "value": "10px", - "type": "sizing" - }, - "5": { - "value": "12px", - "type": "sizing" - }, - "6": { - "value": "14px", - "type": "sizing" - }, - "7": { - "value": "16px", - "type": "sizing" - }, - "8": { - "value": "20px", - "type": "sizing" - }, - "9": { - "value": "24px", - "type": "sizing" - }, - "10": { - "value": "28px", - "type": "sizing" - }, - "11": { - "value": "32px", - "type": "sizing" - }, - "12": { - "value": "36px", - "type": "sizing" - }, - "13": { - "value": "40px", - "type": "sizing" - }, - "14": { - "value": "44px", - "type": "sizing" - }, - "15": { - "value": "48px", - "type": "sizing" - }, - "16": { - "value": "56px", - "type": "sizing" - }, - "17": { - "value": "64px", - "type": "sizing" - }, - "18": { - "value": "72px", - "type": "sizing" - }, - "19": { - "value": "80px", - "type": "sizing" - }, - "20": { - "value": "96px", - "type": "sizing" - }, - "21": { - "value": "112px", - "type": "sizing" - }, - "22": { - "value": "128px", - "type": "sizing" - }, - "23": { - "value": "144px", - "type": "sizing" - }, - "24": { - "value": "160px", - "type": "sizing" - }, - "25": { - "value": "192px", - "type": "sizing" - }, - "26": { - "value": "224px", - "type": "sizing" - }, - "27": { - "value": "256px", - "type": "sizing" - }, - "28": { - "value": "288px", - "type": "sizing" - }, - "none": { - "value": "0px", - "type": "sizing" - } - }, - "spacing": { - "0": { - "value": "2px", - "type": "spacing" - }, - "1": { - "value": "4px", - "type": "spacing" - }, - "2": { - "value": "6px", - "type": "spacing" - }, - "3": { - "value": "8px", - "type": "spacing" - }, - "4": { - "value": "10px", - "type": "spacing" - }, - "5": { - "value": "12px", - "type": "spacing" - }, - "6": { - "value": "14px", - "type": "spacing" - }, - "7": { - "value": "16px", - "type": "spacing" - }, - "8": { - "value": "20px", - "type": "spacing" - }, - "9": { - "value": "24px", - "type": "spacing" - }, - "10": { - "value": "28px", - "type": "spacing" - }, - "11": { - "value": "32px", - "type": "spacing" - }, - "12": { - "value": "36px", - "type": "spacing" - }, - "13": { - "value": "40px", - "type": "spacing" - }, - "14": { - "value": "44px", - "type": "spacing" - }, - "15": { - "value": "48px", - "type": "spacing" - }, - "16": { - "value": "56px", - "type": "spacing" - }, - "17": { - "value": "64px", - "type": "spacing" - }, - "18": { - "value": "72px", - "type": "spacing" - }, - "19": { - "value": "80px", - "type": "spacing" - }, - "20": { - "value": "96px", - "type": "spacing" - }, - "21": { - "value": "112px", - "type": "spacing" - }, - "22": { - "value": "128px", - "type": "spacing" - }, - "23": { - "value": "144px", - "type": "spacing" - }, - "24": { - "value": "160px", - "type": "spacing" - }, - "25": { - "value": "192px", - "type": "spacing" - }, - "26": { - "value": "224px", - "type": "spacing" - }, - "27": { - "value": "256px", - "type": "spacing" - }, - "28": { - "value": "288px", - "type": "spacing" - }, - "none": { - "value": "0px", - "type": "spacing" - } - }, - "breakpoint": { - "width": { - "xs": { - "value": "476px", - "type": "sizing", - "description": "min-width size" - }, - "sm": { - "value": "768px", - "type": "sizing", - "description": "min-width size" - }, - "md": { - "value": "1152px", - "type": "sizing", - "description": "min-width size" - }, - "lg": { - "value": "1440px", - "type": "sizing", - "description": "min-width size" - } - }, - "margin": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "gutter": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "content": { - "fluid": { - "value": "100%", - "type": "sizing", - "description": "for fluid grid widths" - }, - "fixed": { - "value": "1440px", - "type": "sizing", - "description": "only for lg breakpoint fixed grid width" - } - }, - "cols": { - "xs": { - "value": "6", - "type": "other", - "description": "columns" - }, - "sm": { - "value": "12", - "type": "other", - "description": "columns" - }, - "md": { - "value": "24", - "type": "other", - "description": "columns" - }, - "lg": { - "value": "24", - "type": "other", - "description": "columns" - } - } - }, - "z-index": { - "deep": { - "value": "-999999", - "type": "other" - }, - "default": { - "value": "1", - "type": "other" - }, - "sticky": { - "value": "300", - "type": "other" - }, - "header": { - "value": "400", - "type": "other" - }, - "toast": { - "value": "500", - "type": "other" - }, - "dropdown": { - "value": "600", - "type": "other" - }, - "overlay": { - "value": "700", - "type": "other" - }, - "modal": { - "value": "800", - "type": "other" - }, - "popup": { - "value": "900", - "type": "other" - } - }, - "box-shadow": { - "0": { - "value": { - "x": "0", - "y": "0", - "blur": "0", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", - "type": "dropShadow" - }, - "type": "boxShadow" - }, - "1": { - "value": [ - { - "x": "0", - "y": "2", - "blur": "8", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "4", - "blur": "16", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "2": { - "value": [ - { - "x": "0", - "y": "4", - "blur": "20", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "12", - "blur": "32", - "spread": "-2", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "none": { - "value": { - "x": "0", - "y": "0", - "blur": "0", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", - "type": "dropShadow" - }, - "type": "boxShadow" - } - } - } -} \ No newline at end of file diff --git a/tokens/brand/dark.json b/tokens/dark.json similarity index 100% rename from tokens/brand/dark.json rename to tokens/dark.json diff --git a/tokens/brand/global.json b/tokens/global.json similarity index 100% rename from tokens/brand/global.json rename to tokens/global.json diff --git a/tokens/brand/light.json b/tokens/light.json similarity index 100% rename from tokens/brand/light.json rename to tokens/light.json diff --git a/tokens/semantic.json b/tokens/semantic.json deleted file mode 100644 index b195cf841eb..00000000000 --- a/tokens/semantic.json +++ /dev/null @@ -1,1673 +0,0 @@ -{ - "semantic": { - "font": { - "default": { - "light": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "regular": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "medium": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "bold": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - } - }, - "wrap": { - "light": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "regular": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "medium": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "bold": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - } - }, - "hierarchy": { - "display-1": { - "value": "$semantic.font.wrap.regular.8", - "type": "typography" - }, - "display-2": { - "value": "$semantic.font.wrap.regular.7", - "type": "typography" - }, - "heading-1": { - "value": "$semantic.font.wrap.regular.6", - "type": "typography" - }, - "heading-2": { - "value": "$semantic.font.wrap.regular.5", - "type": "typography" - }, - "heading-3": { - "value": "$semantic.font.wrap.regular.4", - "type": "typography" - }, - "heading-4": { - "value": "$semantic.font.wrap.regular.3", - "type": "typography" - }, - "heading-5": { - "value": "$semantic.font.wrap.regular.2", - "type": "typography" - }, - "heading-6": { - "value": "$semantic.font.wrap.regular.1", - "type": "typography" - }, - "body-1": { - "value": "$semantic.font.wrap.regular.0", - "type": "typography" - }, - "body-2": { - "value": "$semantic.font.wrap.regular.-1", - "type": "typography" - }, - "overline": { - "value": { - "fontFamilies": "$core.font.font-family.primary", - "fontWeights": "$core.font.font-weight.bold", - "fontSizes": "$core.font.font-size.2", - "lineHeights": "$core.font.line-height.fixed.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textCase": "$core.font.text-case.uppercase", - "textDecoration": "$core.font.text-decoration.none", - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.bold", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2" - }, - "type": "typography" - }, - "caption": { - "value": "$semantic.font.wrap.regular.-2", - "type": "typography" - } - } - }, - "border": { - "border-radius": { - "sharp": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "round": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - }, - "circular": { - "value": "$core.border.border-radius.half", - "type": "borderRadius" - }, - "pill": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - } - } - }, - "ui": { - "border": { - "border-radius": { - "value": "$semantic.border.border-radius.sharp", - "type": "borderRadius" - } - }, - "color": { - "brand": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-160", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-060", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - } - } - }, - "background": { - "light": { - "value": "$core.color.neutral.blk-005", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-190", - "type": "color" - } - }, - "foreground": { - "1": { - "light": { - "value": "$core.color.neutral.blk-000", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-200", - "type": "color" - } - }, - "2": { - "light": { - "value": "$core.color.neutral.blk-010", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-210", - "type": "color" - } - }, - "3": { - "light": { - "value": "$core.color.neutral.blk-020", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-220", - "type": "color" - } - } - }, - "text": { - "1": { - "light": { - "value": "$core.color.neutral.blk-220", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-000", - "type": "color" - } - }, - "2": { - "light": { - "value": "$core.color.neutral.blk-170", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-060", - "type": "color" - } - }, - "3": { - "light": { - "value": "$core.color.neutral.blk-140", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-090", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$core.color.neutral.blk-000", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-220", - "type": "color" - } - }, - "link": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.blue.d-bb-420", - "type": "color" - } - } - }, - "border": { - "1": { - "light": { - "value": "$core.color.neutral.blk-050", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-160", - "type": "color" - } - }, - "2": { - "light": { - "value": "$core.color.neutral.blk-040", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-170", - "type": "color" - } - }, - "3": { - "light": { - "value": "$core.color.neutral.blk-030", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-180", - "type": "color" - } - }, - "input": { - "light": { - "value": "$core.color.neutral.blk-100", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-130", - "type": "color" - } - } - }, - "info": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.blue.d-bb-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-090", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-160", - "type": "color" - } - } - }, - "success": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.green.d-gg-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.green.v-gg-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.green.v-gg-160", - "type": "color" - } - } - }, - "warning": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.yellow.d-yy-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.yellow.v-yy-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.yellow.v-yy-160", - "type": "color" - } - } - }, - "danger": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.red.d-rr-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.red.v-rr-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.red.v-rr-160", - "type": "color" - } - } - }, - "inverse": { - "light": { - "value": "$core.color.neutral.blk-190", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-005", - "type": "color" - } - } - } - } - } -} \ No newline at end of file From ec984f9c74876cfd08f2068c3525bb19527a98ef Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 22 Dec 2022 11:08:31 -0800 Subject: [PATCH 081/696] Revert "test" This reverts commit 4cac1d544f98b448f81bd1f7c8e02eb3bb11c3b7. --- tokens/$metadata.json | 27 +- tokens/$themes.json | 785 ++++++++- tokens/{ => brand}/dark.json | 0 tokens/{ => brand}/global.json | 0 tokens/{ => brand}/light.json | 0 tokens/calcite/dark.json | 442 +++++ tokens/calcite/light.json | 442 +++++ tokens/component/[template-comp-name].json | 178 ++ tokens/component/accordion-item.json | 176 ++ tokens/component/accordion.json | 192 +++ tokens/component/accordion_backup.json | 238 +++ tokens/component/alert.json | 272 ++++ tokens/component/avatar.json | 140 ++ tokens/component/checkbox.json | 110 ++ tokens/component/chip.json | 350 ++++ tokens/component/input-message.json | 86 + tokens/component/input-time.json | 1 + tokens/component/label.json | 26 + tokens/component/loader.json | 130 ++ tokens/component/radio.json | 124 ++ tokens/component/rating.json | 243 +++ tokens/component/switch.json | 178 ++ tokens/component/tip.json | 128 ++ tokens/component/tooltip.json | 66 + tokens/core.json | 1696 ++++++++++++++++++++ tokens/semantic.json | 1673 +++++++++++++++++++ 26 files changed, 7699 insertions(+), 4 deletions(-) rename tokens/{ => brand}/dark.json (100%) rename tokens/{ => brand}/global.json (100%) rename tokens/{ => brand}/light.json (100%) create mode 100644 tokens/calcite/dark.json create mode 100644 tokens/calcite/light.json create mode 100644 tokens/component/[template-comp-name].json create mode 100644 tokens/component/accordion-item.json create mode 100644 tokens/component/accordion.json create mode 100644 tokens/component/accordion_backup.json create mode 100644 tokens/component/alert.json create mode 100644 tokens/component/avatar.json create mode 100644 tokens/component/checkbox.json create mode 100644 tokens/component/chip.json create mode 100644 tokens/component/input-message.json create mode 100644 tokens/component/input-time.json create mode 100644 tokens/component/label.json create mode 100644 tokens/component/loader.json create mode 100644 tokens/component/radio.json create mode 100644 tokens/component/rating.json create mode 100644 tokens/component/switch.json create mode 100644 tokens/component/tip.json create mode 100644 tokens/component/tooltip.json create mode 100644 tokens/core.json create mode 100644 tokens/semantic.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index d5726ff6887..e52cb2b1603 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -1,7 +1,28 @@ { "tokenSetOrder": [ - "dark", - "global", - "light" + "core", + "semantic", + "component/accordion-item", + "component/accordion", + "component/alert", + "component/avatar", + "component/checkbox", + "component/chip", + "component/input-message", + "component/input-time", + "component/label", + "component/loader", + "component/radio", + "component/rating", + "component/tip", + "component/tooltip", + "component/switch", + "calcite/light", + "calcite/dark", + "brand/global", + "brand/light", + "brand/dark", + "component/[template-comp-name]", + "component/accordion_backup" ] } \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index 0637a088a01..022510e7cd2 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -1 +1,784 @@ -[] \ No newline at end of file +[ + { + "id": "59a65f6d4a3657738c9d46d61315ae0b6fc6e9fd", + "name": "Brand - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "enabled", + "brand/dark": "disabled", + "component/label": "disabled", + "component/tooltip": "disabled", + "component/input-time": "disabled", + "component/switch": "disabled", + "component/input-message": "disabled", + "component/accordion-item": "disabled", + "component/alert": "disabled", + "component/accordion": "disabled", + "component/accordion_backup": "disabled", + "component/tip": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "d7056b4e805091c91b5ec1b6ce901ba3d606e7a8", + "name": "Brand - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "enabled", + "brand/light": "disabled", + "brand/dark": "enabled", + "component/label": "disabled", + "component/tooltip": "disabled", + "component/input-time": "disabled", + "component/switch": "disabled", + "component/input-message": "disabled", + "component/accordion-item": "disabled", + "component/alert": "disabled", + "component/accordion": "disabled", + "component/accordion_backup": "disabled", + "component/tip": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "enabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/input-time": "disabled", + "component/switch": "disabled", + "component/input-message": "disabled", + "component/accordion-item": "disabled", + "component/alert": "disabled", + "component/accordion": "disabled", + "component/accordion_backup": "disabled", + "component/tip": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "enabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/input-time": "disabled", + "component/switch": "disabled", + "component/input-message": "disabled", + "component/accordion-item": "disabled", + "component/alert": "disabled", + "component/accordion": "disabled", + "component/accordion_backup": "disabled", + "component/tip": "disabled" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + } + }, + { + "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", + "name": "Calcite Headless", + "selectedTokenSets": { + "core": "enabled", + "semantic": "enabled", + "brand/light": "disabled", + "brand/dark": "disabled", + "calcite/light": "disabled", + "calcite/dark": "disabled", + "brand/global": "disabled", + "component/avatar": "enabled", + "component/checkbox": "enabled", + "component/chip": "enabled", + "component/loader": "enabled", + "component/radio": "enabled", + "component/rating": "enabled", + "component/label": "enabled", + "component/tooltip": "enabled", + "component/input-time": "enabled", + "component/[template-comp-name]": "enabled" + "component/switch": "enabled", + "component/input-message": "enabled", + "component/accordion-item": "enabled", + "component/alert": "enabled", + "component/accordion": "enabled", + "component/accordion_backup": "disabled", + "component/tip": "enabled" + }, + "$figmaStyleReferences": { + "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", + "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", + "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", + "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", + "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", + "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", + "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", + "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", + "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", + "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", + "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", + "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", + "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", + "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", + "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", + "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", + "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", + "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", + "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", + "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", + "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", + "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", + "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", + "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", + "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", + "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", + "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", + "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", + "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", + "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", + "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", + "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", + "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", + "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", + "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", + "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", + "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", + "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", + "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", + "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", + "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", + "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", + "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", + "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", + "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", + "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", + "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", + "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", + "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", + "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", + "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", + "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", + "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", + "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", + "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", + "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", + "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", + "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", + "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", + "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", + "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", + "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", + "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", + "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", + "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", + "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", + "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", + "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", + "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", + "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", + "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", + "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", + "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", + "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", + "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", + "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", + "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", + "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", + "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", + "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", + "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", + "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", + "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", + "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", + "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", + "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", + "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", + "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", + "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", + "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", + "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", + "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", + "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", + "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", + "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", + "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", + "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", + "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", + "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", + "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", + "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", + "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", + "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", + "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", + "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", + "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", + "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", + "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", + "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", + "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", + "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", + "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", + "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", + "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", + "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", + "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", + "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", + "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", + "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", + "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", + "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", + "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", + "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", + "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", + "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", + "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", + "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", + "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", + "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", + "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", + "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", + "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", + "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", + "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", + "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", + "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", + "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", + "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", + "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", + "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", + "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", + "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", + "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", + "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", + "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", + "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", + "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", + "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", + "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", + "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", + "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", + "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", + "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", + "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", + "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", + "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", + "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", + "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", + "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", + "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", + "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", + "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", + "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", + "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", + "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", + "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", + "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", + "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", + "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", + "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", + "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", + "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", + "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", + "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", + "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", + "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", + "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", + "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", + "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", + "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", + "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", + "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", + "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", + "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", + "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", + "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", + "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", + "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", + "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", + "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", + "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", + "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", + "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", + "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", + "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", + "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", + "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", + "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", + "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", + "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", + "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", + "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", + "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", + "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", + "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", + "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", + "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", + "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", + "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", + "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", + "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", + "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", + "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", + "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", + "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", + "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", + "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", + "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", + "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", + "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", + "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", + "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", + "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", + "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", + "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", + "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", + "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", + "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", + "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", + "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", + "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", + "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", + "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", + "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", + "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", + "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", + "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", + "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", + "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", + "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", + "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", + "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", + "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", + "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", + "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", + "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", + "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", + "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", + "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", + "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", + "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", + "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", + "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", + "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", + "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", + "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", + "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", + "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", + "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", + "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", + "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", + "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", + "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", + "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", + "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", + "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", + "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", + "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", + "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", + "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", + "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", + "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", + "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", + "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", + "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", + "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", + "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", + "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", + "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", + "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", + "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", + "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", + "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", + "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", + "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", + "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", + "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", + "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", + "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", + "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", + "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", + "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", + "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", + "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", + "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", + "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", + "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", + "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", + "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", + "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", + "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", + "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", + "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", + "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", + "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", + "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", + "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", + "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", + "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", + "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", + "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", + "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", + "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", + "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", + "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", + "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", + "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", + "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", + "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", + "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", + "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", + "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", + "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", + "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", + "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", + "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", + "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", + "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", + "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", + "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", + "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", + "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", + "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", + "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", + "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", + "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", + "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", + "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", + "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", + "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", + "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", + "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", + "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", + "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", + "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", + "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", + "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", + "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", + "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", + "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", + "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", + "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", + "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", + "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", + "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", + "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", + "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", + "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", + "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", + "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", + "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", + "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", + "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", + "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", + "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", + "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", + "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", + "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", + "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", + "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", + "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", + "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", + "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", + "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", + "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", + "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", + "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", + "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", + "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", + "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", + "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", + "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", + "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", + "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", + "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", + "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", + "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", + "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", + "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", + "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", + "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", + "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", + "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", + "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", + "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", + "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", + "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", + "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", + "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", + "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", + "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", + "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", + "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", + "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", + "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", + "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", + "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", + "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", + "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", + "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", + "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", + "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", + "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", + "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", + "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", + "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", + "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", + "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", + "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", + "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", + "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", + "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", + "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", + "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", + "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", + "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", + "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", + "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", + "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", + "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", + "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", + "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", + "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", + "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", + "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", + "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", + "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", + "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", + "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", + "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", + "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", + "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", + "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", + "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", + "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", + "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", + "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", + "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", + "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", + "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", + "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", + "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", + "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", + "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", + "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", + "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", + "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", + "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", + "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", + "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", + "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", + "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", + "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", + "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", + "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", + "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", + "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", + "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", + "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", + "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", + "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", + "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", + "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", + "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", + "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", + "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", + "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", + "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", + "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", + "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", + "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", + "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", + "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", + "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", + "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", + "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", + "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", + "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", + "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", + "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", + "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", + "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", + "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", + "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", + "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", + "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", + "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", + "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", + "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", + "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", + "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", + "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", + "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", + "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", + "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", + "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", + "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", + "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", + "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", + "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", + "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", + "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", + "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", + "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", + "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", + "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", + "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", + "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", + "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," + } + } +] \ No newline at end of file diff --git a/tokens/dark.json b/tokens/brand/dark.json similarity index 100% rename from tokens/dark.json rename to tokens/brand/dark.json diff --git a/tokens/global.json b/tokens/brand/global.json similarity index 100% rename from tokens/global.json rename to tokens/brand/global.json diff --git a/tokens/light.json b/tokens/brand/light.json similarity index 100% rename from tokens/light.json rename to tokens/brand/light.json diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json new file mode 100644 index 00000000000..4182d2b7a2a --- /dev/null +++ b/tokens/calcite/dark.json @@ -0,0 +1,442 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.dark", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.dark", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.dark", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.dark", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.dark", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.dark", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.dark", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.dark", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.dark", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.dark", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.dark", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.dark", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.dark", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.dark", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.dark", + "type": "color" + }, + "border": { + "value": "$checkbox.border.dark", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.dark", + "type": "color" + }, + "background": { + "value": "$radio.background.dark", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.dark", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.dark", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.dark", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.dark", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.dark", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.dark", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.dark", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.dark", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.dark", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.dark", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.dark", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.dark", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.dark", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.dark", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.dark", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.dark", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.dark", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.dark", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.dark", + "type": "color" + }, + "border": { + "value": "$tooltip.border.dark", + "type": "color" + }, + "font": { + "value": "$tooltip.font.dark", + "type": "color" + } + }, + "accordion-item": { + "font": { + "heading": { + "value": "$accordion-item.font.heading.dark", + "type": "color" + }, + "description": { + "value": "$accordion-item.font.description.dark", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$accordion-item.icon.default.dark", + "type": "color" + }, + "expanded": { + "value": "$accordion-item.icon.expanded.dark", + "type": "color" + } + }, + "background": { + "value": "$accordion-item.background.default.dark", + "type": "color" + }, + "border": { + "value": "$accordion-item.border.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json new file mode 100644 index 00000000000..1cf660ae821 --- /dev/null +++ b/tokens/calcite/light.json @@ -0,0 +1,442 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.light", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.light", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.light", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.light", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.light", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.light", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.light", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.light", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.light", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.light", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.light", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.light", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.light", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.light", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.light", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.light", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.light", + "type": "color" + }, + "border": { + "value": "$checkbox.border.light", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.light", + "type": "color" + }, + "background": { + "value": "$radio.background.light", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.light", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.light", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.light", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.light", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.light", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.light", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.light", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.light", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.light", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.light", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.light", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.light", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.light", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.light", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.light", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.light", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.light", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.light", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.light", + "type": "color" + }, + "border": { + "value": "$tooltip.border.light", + "type": "color" + }, + "font": { + "value": "$tooltip.font.light", + "type": "color" + } + }, + "accordion-item": { + "font": { + "heading": { + "value": "$accordion-item.font.heading.light", + "type": "color" + }, + "description": { + "value": "$accordion-item.font.description.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$accordion-item.icon.default.light", + "type": "color" + }, + "expanded": { + "value": "$accordion-item.icon.expanded.light", + "type": "color" + } + }, + "background": { + "value": "$accordion-item.background.default.light", + "type": "color" + }, + "border": { + "value": "$accordion-item.border.light", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json new file mode 100644 index 00000000000..90b1037f52a --- /dev/null +++ b/tokens/component/[template-comp-name].json @@ -0,0 +1,178 @@ +{ + "[comp-name]": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json new file mode 100644 index 00000000000..3e8f1edc798 --- /dev/null +++ b/tokens/component/accordion-item.json @@ -0,0 +1,176 @@ +{ + "accordion-item": { + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "descrition": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/accordion.json b/tokens/component/accordion.json new file mode 100644 index 00000000000..044f000b7c8 --- /dev/null +++ b/tokens/component/accordion.json @@ -0,0 +1,192 @@ +{ + "accordion": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/accordion_backup.json b/tokens/component/accordion_backup.json new file mode 100644 index 00000000000..5a67f8416b4 --- /dev/null +++ b/tokens/component/accordion_backup.json @@ -0,0 +1,238 @@ +{ + "accordion": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/alert.json b/tokens/component/alert.json new file mode 100644 index 00000000000..e6ae9fd5a4e --- /dev/null +++ b/tokens/component/alert.json @@ -0,0 +1,272 @@ +{ + "alert": { + "title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "font": { + "title": { + "sm": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.1h", + "type": "typography" + } + }, + "message": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + } + }, + "message": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "icon": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "highlight": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "space-between": { + "sm": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "space-around": { + "top": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "bottom": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "left": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json new file mode 100644 index 00000000000..5694023e615 --- /dev/null +++ b/tokens/component/avatar.json @@ -0,0 +1,140 @@ +{ + "avatar": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.red.h-rr-090", + "type": "color" + } + }, + "teal": { + "light": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + } + }, + "green": { + "light": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-100", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json new file mode 100644 index 00000000000..cfa42420acf --- /dev/null +++ b/tokens/component/checkbox.json @@ -0,0 +1,110 @@ +{ + "checkbox": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "selected": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "standard": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/chip.json b/tokens/component/chip.json new file mode 100644 index 00000000000..65914eb59f6 --- /dev/null +++ b/tokens/component/chip.json @@ -0,0 +1,350 @@ +{ + "chip": { + "font": { + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "closable-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "space-around": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "border": { + "clear": { + "grey": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } +} \ No newline at end of file diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json new file mode 100644 index 00000000000..b4f54476d2c --- /dev/null +++ b/tokens/component/input-message.json @@ -0,0 +1,86 @@ +{ + "input-message": { + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + } + }, + "icon": { + "idle": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "valid": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-time.json b/tokens/component/input-time.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/component/input-time.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/component/label.json b/tokens/component/label.json new file mode 100644 index 00000000000..b658a3053ad --- /dev/null +++ b/tokens/component/label.json @@ -0,0 +1,26 @@ +{ + "label": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/loader.json b/tokens/component/loader.json new file mode 100644 index 00000000000..5aa7993e951 --- /dev/null +++ b/tokens/component/loader.json @@ -0,0 +1,130 @@ +{ + "loader": { + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "text": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "value-text": { + "sm": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "md": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + } + } + }, + "default": { + "comp-size": { + "sm": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.17", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.20", + "type": "sizing" + } + }, + "space-between": { + "standard": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inline": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "foreground": { + "indeterminate": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "determinate": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/radio.json b/tokens/component/radio.json new file mode 100644 index 00000000000..8c72a63238d --- /dev/null +++ b/tokens/component/radio.json @@ -0,0 +1,124 @@ +{ + "radio": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "border-width": { + "unchecked": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "checked": { + "sm": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.3", + "type": "borderWidth" + } + } + }, + "border": { + "unchecked": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/rating.json b/tokens/component/rating.json new file mode 100644 index 00000000000..c6c40e58835 --- /dev/null +++ b/tokens/component/rating.json @@ -0,0 +1,243 @@ +{ + "rating": { + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "chip": { + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "value-text": { + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "count": { + "font": { + "sm": { + "value": { + "typography": "$rating.chip.value-text.font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$rating.chip.value-text.font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$rating.chip.value-text.font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "star": { + "comp-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "average": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "star-container": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.2", + "type": "spacing" + } + } + }, + "average": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "chip": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/switch.json b/tokens/component/switch.json new file mode 100644 index 00000000000..1bfd307ea81 --- /dev/null +++ b/tokens/component/switch.json @@ -0,0 +1,178 @@ +{ + "switch": { + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.15", + "type": "sizing" + } + }, + "handle-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + } + } + }, + "handle": { + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "{core.border.border-width.1}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.border-width.1}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.border-width.1}", + "type": "borderWidth" + } + } + }, + "border-width": { + "sm": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tip.json b/tokens/component/tip.json new file mode 100644 index 00000000000..f35cde8a6e6 --- /dev/null +++ b/tokens/component/tip.json @@ -0,0 +1,128 @@ +{ + "tip": { + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + }, + "default": { + "space-between": { + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + } + }, + "space-around": { + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + }, + "selected": { + "space-between": { + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + } + }, + "space-around": { + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + }, + "border-width": { + "md": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json new file mode 100644 index 00000000000..51d50bce707 --- /dev/null +++ b/tokens/component/tooltip.json @@ -0,0 +1,66 @@ +{ + "tooltip": { + "space-arround": { + "top-bottom": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "left-right": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "standard": { + "value": "$semantic.font.wrap.medium.-2", + "type": "typography" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "arrow": { + "width": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "height": { + "value": "$core.sizing.2", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json new file mode 100644 index 00000000000..f697f4387a2 --- /dev/null +++ b/tokens/core.json @@ -0,0 +1,1696 @@ +{ + "core": { + "font": { + "font-family": { + "primary": { + "value": "Avenir Next LT Pro", + "type": "fontFamilies" + }, + "secondary": { + "value": "Avenir Next World", + "type": "fontFamilies" + }, + "code": { + "value": "Monaco", + "type": "fontFamilies" + } + }, + "font-weight": { + "ultralight": { + "value": "UltraLight", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "thin": { + "value": "Thin", + "type": "fontWeights" + }, + "light": { + "value": "Light", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "regular": { + "value": "Regular", + "type": "fontWeights" + }, + "medium": { + "value": "Medium", + "type": "fontWeights" + }, + "medium-italic": { + "value": "Medium Italic", + "type": "fontWeights" + }, + "demi": { + "value": "Demi", + "type": "fontWeights" + }, + "bold": { + "value": "Bold", + "type": "fontWeights" + }, + "extrabold": { + "value": "ExtraBold", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "black": { + "value": "Black", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "heavy": { + "value": "Heavy", + "type": "fontWeights" + } + }, + "line-height": { + "fixed": { + "0": { + "value": "12px", + "type": "lineHeights" + }, + "1": { + "value": "16px", + "type": "lineHeights" + }, + "2": { + "value": "20px", + "type": "lineHeights" + }, + "3": { + "value": "24px", + "type": "lineHeights" + }, + "4": { + "value": "28px", + "type": "lineHeights" + }, + "5": { + "value": "32px", + "type": "lineHeights" + }, + "6": { + "value": "36px", + "type": "lineHeights" + }, + "7": { + "value": "40px", + "type": "lineHeights" + }, + "8": { + "value": "48px", + "type": "lineHeights" + }, + "9": { + "value": "56px", + "type": "lineHeights" + }, + "10": { + "value": "64px", + "type": "lineHeights" + }, + "11": { + "value": "72px", + "type": "lineHeights" + }, + "12": { + "value": "80px", + "type": "lineHeights" + } + }, + "relative": { + "default": { + "value": "auto", + "type": "lineHeights", + "description": "1" + }, + "tight": { + "value": "125%", + "type": "lineHeights", + "description": "1.25" + }, + "snug": { + "value": "137.5%", + "type": "lineHeights", + "description": "1.375" + }, + "normal": { + "value": "150%", + "type": "lineHeights", + "description": "1.5" + }, + "relaxed": { + "value": "162.5%", + "type": "lineHeights", + "description": "1.625" + }, + "loose": { + "value": "200%", + "type": "lineHeights", + "description": "2" + } + } + }, + "font-size": { + "0": { + "value": "10px", + "type": "fontSizes" + }, + "1": { + "value": "12px", + "type": "fontSizes" + }, + "2": { + "value": "14px", + "type": "fontSizes" + }, + "3": { + "value": "16px", + "type": "fontSizes" + }, + "4": { + "value": "18px", + "type": "fontSizes" + }, + "5": { + "value": "20px", + "type": "fontSizes" + }, + "6": { + "value": "24px", + "type": "fontSizes" + }, + "7": { + "value": "32px", + "type": "fontSizes" + }, + "8": { + "value": "40px", + "type": "fontSizes" + }, + "9": { + "value": "48px", + "type": "fontSizes" + }, + "10": { + "value": "56px", + "type": "fontSizes" + }, + "11": { + "value": "64px", + "type": "fontSizes" + }, + "12": { + "value": "72px", + "type": "fontSizes" + }, + "13": { + "value": "80px", + "type": "fontSizes" + }, + "14": { + "value": "96px", + "type": "fontSizes" + }, + "15": { + "value": "120px", + "type": "fontSizes" + } + }, + "letter-spacing": { + "tight": { + "value": "-0.4px", + "type": "letterSpacing" + }, + "normal": { + "value": "0px", + "type": "letterSpacing" + }, + "wide": { + "value": "0.4px", + "type": "letterSpacing" + } + }, + "paragraph-spacing": { + "normal": { + "value": "10px", + "type": "paragraphSpacing" + } + }, + "text-decoration": { + "none": { + "value": "none", + "type": "textDecoration" + }, + "underline": { + "value": "underline", + "type": "textDecoration" + } + }, + "text-case": { + "none": { + "value": "none", + "type": "textCase" + }, + "uppercase": { + "value": "uppercase", + "type": "textCase" + }, + "lowercase": { + "value": "lowercase", + "type": "textCase" + }, + "capitalize": { + "value": "capitalize", + "type": "textCase" + } + } + }, + "border": { + "border-radius": { + "0": { + "value": "2px", + "type": "borderRadius" + }, + "1": { + "value": "4px", + "type": "borderRadius" + }, + "2": { + "value": "6px", + "type": "borderRadius" + }, + "3": { + "value": "8px", + "type": "borderRadius" + }, + "4": { + "value": "12px", + "type": "borderRadius" + }, + "5": { + "value": "16px", + "type": "borderRadius" + }, + "6": { + "value": "24px", + "type": "borderRadius" + }, + "none": { + "value": "0px", + "type": "borderRadius" + }, + "half": { + "value": "50%", + "type": "borderRadius" + }, + "full": { + "value": "9999px", + "type": "borderRadius" + } + }, + "border-width": { + "0": { + "value": "1px", + "type": "borderWidth" + }, + "1": { + "value": "2px", + "type": "borderWidth" + }, + "2": { + "value": "4px", + "type": "borderWidth" + }, + "3": { + "value": "6px", + "type": "borderWidth" + }, + "4": { + "value": "8px", + "type": "borderWidth" + }, + "none": { + "value": "0px", + "type": "borderWidth" + } + } + }, + "opacity": { + "0": { + "value": "0%", + "type": "opacity" + }, + "4": { + "value": "4%", + "type": "opacity" + }, + "8": { + "value": "8%", + "type": "opacity" + }, + "10": { + "value": "10%", + "type": "opacity" + }, + "20": { + "value": "20%", + "type": "opacity" + }, + "30": { + "value": "30%", + "type": "opacity" + }, + "40": { + "value": "40%", + "type": "opacity" + }, + "50": { + "value": "50%", + "type": "opacity" + }, + "60": { + "value": "60%", + "type": "opacity" + }, + "70": { + "value": "70%", + "type": "opacity" + }, + "80": { + "value": "80%", + "type": "opacity" + }, + "90": { + "value": "90%", + "type": "opacity" + }, + "92": { + "value": "92%", + "type": "opacity" + }, + "96": { + "value": "96%", + "type": "opacity" + }, + "100": { + "value": "100%", + "type": "opacity" + } + }, + "color": { + "neutral": { + "blk-000": { + "value": "#ffffff", + "type": "color" + }, + "blk-005": { + "value": "#f8f8f8", + "type": "color" + }, + "blk-010": { + "value": "#f3f3f3", + "type": "color" + }, + "blk-020": { + "value": "#eaeaea", + "type": "color" + }, + "blk-030": { + "value": "#dfdfdf", + "type": "color" + }, + "blk-040": { + "value": "#d4d4d4", + "type": "color" + }, + "blk-050": { + "value": "#cacaca", + "type": "color" + }, + "blk-060": { + "value": "#bfbfbf", + "type": "color" + }, + "blk-070": { + "value": "#b5b5b5", + "type": "color" + }, + "blk-080": { + "value": "#aaaaaa", + "type": "color" + }, + "blk-090": { + "value": "#9f9f9f", + "type": "color" + }, + "blk-100": { + "value": "#949494", + "type": "color" + }, + "blk-110": { + "value": "#8a8a8a", + "type": "color" + }, + "blk-120": { + "value": "#808080", + "type": "color" + }, + "blk-130": { + "value": "#757575", + "type": "color" + }, + "blk-140": { + "value": "#6a6a6a", + "type": "color" + }, + "blk-150": { + "value": "#606060", + "type": "color" + }, + "blk-160": { + "value": "#555555", + "type": "color" + }, + "blk-170": { + "value": "#4a4a4a", + "type": "color" + }, + "blk-180": { + "value": "#404040", + "type": "color" + }, + "blk-190": { + "value": "#353535", + "type": "color" + }, + "blk-200": { + "value": "#2b2b2b", + "type": "color" + }, + "blk-210": { + "value": "#202020", + "type": "color" + }, + "blk-220": { + "value": "#151515", + "type": "color" + }, + "blk-230": { + "value": "#0b0b0b", + "type": "color" + }, + "blk-235": { + "value": "#060606", + "type": "color" + }, + "blk-240": { + "value": "#000000", + "type": "color" + } + }, + "palette": { + "high-saturation": { + "blue": { + "h-bb-010": { + "value": "#c7eaff", + "type": "color" + }, + "h-bb-020": { + "value": "#9fd4f3", + "type": "color" + }, + "h-bb-030": { + "value": "#77bde7", + "type": "color" + }, + "h-bb-040": { + "value": "#50a7da", + "type": "color" + }, + "h-bb-050": { + "value": "#2890ce", + "type": "color" + }, + "h-bb-060": { + "value": "#007ac2", + "type": "color" + }, + "h-bb-070": { + "value": "#00619b", + "type": "color" + }, + "h-bb-080": { + "value": "#004874", + "type": "color" + }, + "h-bb-090": { + "value": "#00304d", + "type": "color" + }, + "h-bb-100": { + "value": "#001726", + "type": "color" + } + }, + "green-blue": { + "h-gb-010": { + "value": "#cef5f4", + "type": "color" + }, + "h-gb-020": { + "value": "#afedec", + "type": "color" + }, + "h-gb-030": { + "value": "#8fe6e5", + "type": "color" + }, + "h-gb-040": { + "value": "#5ae0de", + "type": "color" + }, + "h-gb-050": { + "value": "#28cecb", + "type": "color" + }, + "h-gb-060": { + "value": "#00bab5", + "type": "color" + }, + "h-gb-070": { + "value": "#009b98", + "type": "color" + }, + "h-gb-080": { + "value": "#007472", + "type": "color" + }, + "h-gb-090": { + "value": "#004d4c", + "type": "color" + }, + "h-gb-100": { + "value": "#002625", + "type": "color" + } + }, + "green": { + "h-gg-010": { + "value": "#bdf2c4", + "type": "color" + }, + "h-gg-020": { + "value": "#a2e4ab", + "type": "color" + }, + "h-gg-030": { + "value": "#87d692", + "type": "color" + }, + "h-gg-040": { + "value": "#6bc878", + "type": "color" + }, + "h-gg-050": { + "value": "#50ba5f", + "type": "color" + }, + "h-gg-060": { + "value": "#35ac46", + "type": "color" + }, + "h-gg-070": { + "value": "#288835", + "type": "color" + }, + "h-gg-080": { + "value": "#1a6324", + "type": "color" + }, + "h-gg-090": { + "value": "#0d3f14", + "type": "color" + }, + "h-gg-100": { + "value": "#001a03", + "type": "color" + } + }, + "yellow-green": { + "h-yg-010": { + "value": "#e5f7b4", + "type": "color" + }, + "h-yg-020": { + "value": "#d9ef9f", + "type": "color" + }, + "h-yg-030": { + "value": "#cde78a", + "type": "color" + }, + "h-yg-040": { + "value": "#c2e075", + "type": "color" + }, + "h-yg-050": { + "value": "#b6d860", + "type": "color" + }, + "h-yg-060": { + "value": "#aad04b", + "type": "color" + }, + "h-yg-070": { + "value": "#84a338", + "type": "color" + }, + "h-yg-080": { + "value": "#5e7526", + "type": "color" + }, + "h-yg-090": { + "value": "#384813", + "type": "color" + }, + "h-yg-100": { + "value": "#121a00", + "type": "color" + } + }, + "yellow": { + "h-yy-010": { + "value": "#fff7cc", + "type": "color" + }, + "h-yy-020": { + "value": "#fef3ad", + "type": "color" + }, + "h-yy-030": { + "value": "#fcee8d", + "type": "color" + }, + "h-yy-040": { + "value": "#fbea6e", + "type": "color" + }, + "h-yy-050": { + "value": "#f9e54e", + "type": "color" + }, + "h-yy-060": { + "value": "#edd317", + "type": "color" + }, + "h-yy-070": { + "value": "#d9bc00", + "type": "color" + }, + "h-yy-080": { + "value": "#bfa200", + "type": "color" + }, + "h-yy-090": { + "value": "#8c7500", + "type": "color" + }, + "h-yy-100": { + "value": "#5c4e00", + "type": "color" + } + }, + "orange-yellow": { + "h-oy-010": { + "value": "#ffe2bf", + "type": "color" + }, + "h-oy-020": { + "value": "#fed3a1", + "type": "color" + }, + "h-oy-030": { + "value": "#fcc582", + "type": "color" + }, + "h-oy-040": { + "value": "#fbb664", + "type": "color" + }, + "h-oy-050": { + "value": "#f9a845", + "type": "color" + }, + "h-oy-060": { + "value": "#f89927", + "type": "color" + }, + "h-oy-070": { + "value": "#c67718", + "type": "color" + }, + "h-oy-080": { + "value": "#9a5b10", + "type": "color" + }, + "h-oy-090": { + "value": "#6d3f08", + "type": "color" + }, + "h-oy-100": { + "value": "#402300", + "type": "color" + } + }, + "orange": { + "h-oo-010": { + "value": "#ffd8bf", + "type": "color" + }, + "h-oo-020": { + "value": "#fdc39f", + "type": "color" + }, + "h-oo-030": { + "value": "#faae7f", + "type": "color" + }, + "h-oo-040": { + "value": "#f89960", + "type": "color" + }, + "h-oo-050": { + "value": "#f58440", + "type": "color" + }, + "h-oo-060": { + "value": "#f36f20", + "type": "color" + }, + "h-oo-070": { + "value": "#c65a18", + "type": "color" + }, + "h-oo-080": { + "value": "#9a4410", + "type": "color" + }, + "h-oo-090": { + "value": "#6d2f08", + "type": "color" + }, + "h-oo-100": { + "value": "#401900", + "type": "color" + } + }, + "red-orange": { + "h-ro-010": { + "value": "#ffc7b3", + "type": "color" + }, + "h-ro-020": { + "value": "#f8af95", + "type": "color" + }, + "h-ro-030": { + "value": "#f09677", + "type": "color" + }, + "h-ro-040": { + "value": "#e97e5a", + "type": "color" + }, + "h-ro-050": { + "value": "#e1653c", + "type": "color" + }, + "h-ro-060": { + "value": "#da4d1e", + "type": "color" + }, + "h-ro-070": { + "value": "#ad3c16", + "type": "color" + }, + "h-ro-080": { + "value": "#802c0f", + "type": "color" + }, + "h-ro-090": { + "value": "#531b07", + "type": "color" + }, + "h-ro-100": { + "value": "#260a00", + "type": "color" + } + }, + "red": { + "h-rr-010": { + "value": "#ffc6bf", + "type": "color" + }, + "h-rr-020": { + "value": "#ffaaa1", + "type": "color" + }, + "h-rr-030": { + "value": "#f2877b", + "type": "color" + }, + "h-rr-040": { + "value": "#f07062", + "type": "color" + }, + "h-rr-050": { + "value": "#e65240", + "type": "color" + }, + "h-rr-060": { + "value": "#d83020", + "type": "color" + }, + "h-rr-070": { + "value": "#a82b1e", + "type": "color" + }, + "h-rr-080": { + "value": "#7c1d13", + "type": "color" + }, + "h-rr-090": { + "value": "#4f0e08", + "type": "color" + }, + "h-rr-100": { + "value": "#210300", + "type": "color" + } + }, + "pink": { + "h-pk-010": { + "value": "#ffd1ef", + "type": "color" + }, + "h-pk-020": { + "value": "#fabee4", + "type": "color" + }, + "h-pk-030": { + "value": "#f2a5d6", + "type": "color" + }, + "h-pk-040": { + "value": "#eb8dc9", + "type": "color" + }, + "h-pk-050": { + "value": "#e673bb", + "type": "color" + }, + "h-pk-060": { + "value": "#e04ea6", + "type": "color" + }, + "h-pk-070": { + "value": "#ba2f7e", + "type": "color" + }, + "h-pk-080": { + "value": "#851b52", + "type": "color" + }, + "h-pk-090": { + "value": "#590b32", + "type": "color" + }, + "h-pk-100": { + "value": "#260404", + "type": "color" + } + }, + "violet-red": { + "h-vr-010": { + "value": "#fadbff", + "type": "color" + }, + "h-vr-020": { + "value": "#e4beeb", + "type": "color" + }, + "h-vr-030": { + "value": "#cfa1d7", + "type": "color" + }, + "h-vr-040": { + "value": "#b983c3", + "type": "color" + }, + "h-vr-050": { + "value": "#a466af", + "type": "color" + }, + "h-vr-060": { + "value": "#8e499b", + "type": "color" + }, + "h-vr-070": { + "value": "#73377e", + "type": "color" + }, + "h-vr-080": { + "value": "#572561", + "type": "color" + }, + "h-vr-090": { + "value": "#3c1243", + "type": "color" + }, + "h-vr-100": { + "value": "#200026", + "type": "color" + } + }, + "violet": { + "h-vv-010": { + "value": "#e8d9ff", + "type": "color" + }, + "h-vv-020": { + "value": "#cdb9eb", + "type": "color" + }, + "h-vv-030": { + "value": "#b39ad7", + "type": "color" + }, + "h-vv-040": { + "value": "#987ac3", + "type": "color" + }, + "h-vv-050": { + "value": "#7e5baf", + "type": "color" + }, + "h-vv-060": { + "value": "#633b9b", + "type": "color" + }, + "h-vv-070": { + "value": "#4e2c7e", + "type": "color" + }, + "h-vv-080": { + "value": "#3a1e61", + "type": "color" + }, + "h-vv-090": { + "value": "#250f43", + "type": "color" + }, + "h-vv-100": { + "value": "#100026", + "type": "color" + } + } + }, + "vibrant": { + "blue": { + "v-bb-120": { + "value": "#59d6ff", + "type": "color" + }, + "v-bb-140": { + "value": "#3db8ff", + "type": "color" + }, + "v-bb-160": { + "value": "#009af2", + "type": "color" + }, + "v-bb-180": { + "value": "#009af2", + "type": "color" + } + }, + "green-blue": { + "v-gb-120": { + "value": "#59fffc", + "type": "color" + }, + "v-gb-140": { + "value": "#00f7f3", + "type": "color" + }, + "v-gb-160": { + "value": "#00e6e2", + "type": "color" + }, + "v-gb-180": { + "value": "#00cfca", + "type": "color" + } + }, + "green": { + "v-gg-120": { + "value": "#73ff84", + "type": "color" + }, + "v-gg-140": { + "value": "#3bed52", + "type": "color" + }, + "v-gg-160": { + "value": "#00b81b", + "type": "color" + }, + "v-gg-180": { + "value": "#00a118", + "type": "color" + } + }, + "yellow-green": { + "v-yg-120": { + "value": "#d7ff73", + "type": "color" + }, + "v-yg-140": { + "value": "#bbed3b", + "type": "color" + }, + "v-yg-160": { + "value": "#96cc00", + "type": "color" + }, + "v-yg-180": { + "value": "#7fab00", + "type": "color" + } + }, + "yellow": { + "v-yy-120": { + "value": "#fff766", + "type": "color" + }, + "v-yy-140": { + "value": "#ffee33", + "type": "color" + }, + "v-yy-160": { + "value": "#f5d000", + "type": "color" + }, + "v-yy-180": { + "value": "#ebba17", + "type": "color" + } + }, + "orange-yellow": { + "v-oy-120": { + "value": "#ffb54d", + "type": "color" + }, + "v-oy-140": { + "value": "#ff9500", + "type": "color" + }, + "v-oy-160": { + "value": "#e68600", + "type": "color" + }, + "v-oy-180": { + "value": "#d17300", + "type": "color" + } + }, + "red-orange": { + "v-ro-120": { + "value": "#ff824d", + "type": "color" + }, + "v-ro-140": { + "value": "#ff4d00", + "type": "color" + }, + "v-ro-160": { + "value": "#de4300", + "type": "color" + }, + "v-ro-180": { + "value": "#c93b00", + "type": "color" + } + }, + "red": { + "v-rr-120": { + "value": "#ff624d", + "type": "color" + }, + "v-rr-140": { + "value": "#ff0015", + "type": "color" + }, + "v-rr-160": { + "value": "#d90012", + "type": "color" + }, + "v-rr-180": { + "value": "#b3000f", + "type": "color" + } + }, + "pink": { + "v-pk-120": { + "value": "#ff66c2", + "type": "color" + }, + "v-pk-140": { + "value": "#ff19a4", + "type": "color" + }, + "v-pk-160": { + "value": "#d11486", + "type": "color" + }, + "v-pk-180": { + "value": "#c00073", + "type": "color" + } + }, + "violet-red": { + "v-vr-120": { + "value": "#ea80ff", + "type": "color" + }, + "v-vr-140": { + "value": "#dd33ff", + "type": "color" + }, + "v-vr-160": { + "value": "#ac08cc", + "type": "color" + }, + "v-vr-180": { + "value": "#83009e", + "type": "color" + } + }, + "violet": { + "v-vv-120": { + "value": "#b580ff", + "type": "color" + }, + "v-vv-140": { + "value": "#974dff", + "type": "color" + }, + "v-vv-160": { + "value": "#8129ff", + "type": "color" + }, + "v-vv-180": { + "value": "#6a0be6", + "type": "color" + } + } + }, + "dark": { + "green": { + "d-gg-410": { + "value": "#44ED51", + "type": "color" + }, + "d-gg-420": { + "value": "#36DA43", + "type": "color" + }, + "d-gg-430": { + "value": "#36DA43", + "type": "color" + } + }, + "yellow": { + "d-yy-410": { + "value": "#FFE24D", + "type": "color" + }, + "d-yy-420": { + "value": "#FFC900", + "type": "color" + }, + "d-yy-430": { + "value": "#F4B000", + "type": "color" + } + }, + "red": { + "d-rr-410": { + "value": "#FF7465", + "type": "color" + }, + "d-rr-420": { + "value": "#FE583E", + "type": "color" + }, + "d-rr-430": { + "value": "#F3381B", + "type": "color" + } + }, + "blue": { + "d-bb-410": { + "value": "#47BBFF", + "type": "color" + }, + "d-bb-420": { + "value": "#00A0FF", + "type": "color" + }, + "d-bb-430": { + "value": "#0087D7", + "type": "color" + } + } + } + } + }, + "sizing": { + "0": { + "value": "2px", + "type": "sizing" + }, + "1": { + "value": "4px", + "type": "sizing" + }, + "2": { + "value": "6px", + "type": "sizing" + }, + "3": { + "value": "8px", + "type": "sizing" + }, + "4": { + "value": "10px", + "type": "sizing" + }, + "5": { + "value": "12px", + "type": "sizing" + }, + "6": { + "value": "14px", + "type": "sizing" + }, + "7": { + "value": "16px", + "type": "sizing" + }, + "8": { + "value": "20px", + "type": "sizing" + }, + "9": { + "value": "24px", + "type": "sizing" + }, + "10": { + "value": "28px", + "type": "sizing" + }, + "11": { + "value": "32px", + "type": "sizing" + }, + "12": { + "value": "36px", + "type": "sizing" + }, + "13": { + "value": "40px", + "type": "sizing" + }, + "14": { + "value": "44px", + "type": "sizing" + }, + "15": { + "value": "48px", + "type": "sizing" + }, + "16": { + "value": "56px", + "type": "sizing" + }, + "17": { + "value": "64px", + "type": "sizing" + }, + "18": { + "value": "72px", + "type": "sizing" + }, + "19": { + "value": "80px", + "type": "sizing" + }, + "20": { + "value": "96px", + "type": "sizing" + }, + "21": { + "value": "112px", + "type": "sizing" + }, + "22": { + "value": "128px", + "type": "sizing" + }, + "23": { + "value": "144px", + "type": "sizing" + }, + "24": { + "value": "160px", + "type": "sizing" + }, + "25": { + "value": "192px", + "type": "sizing" + }, + "26": { + "value": "224px", + "type": "sizing" + }, + "27": { + "value": "256px", + "type": "sizing" + }, + "28": { + "value": "288px", + "type": "sizing" + }, + "none": { + "value": "0px", + "type": "sizing" + } + }, + "spacing": { + "0": { + "value": "2px", + "type": "spacing" + }, + "1": { + "value": "4px", + "type": "spacing" + }, + "2": { + "value": "6px", + "type": "spacing" + }, + "3": { + "value": "8px", + "type": "spacing" + }, + "4": { + "value": "10px", + "type": "spacing" + }, + "5": { + "value": "12px", + "type": "spacing" + }, + "6": { + "value": "14px", + "type": "spacing" + }, + "7": { + "value": "16px", + "type": "spacing" + }, + "8": { + "value": "20px", + "type": "spacing" + }, + "9": { + "value": "24px", + "type": "spacing" + }, + "10": { + "value": "28px", + "type": "spacing" + }, + "11": { + "value": "32px", + "type": "spacing" + }, + "12": { + "value": "36px", + "type": "spacing" + }, + "13": { + "value": "40px", + "type": "spacing" + }, + "14": { + "value": "44px", + "type": "spacing" + }, + "15": { + "value": "48px", + "type": "spacing" + }, + "16": { + "value": "56px", + "type": "spacing" + }, + "17": { + "value": "64px", + "type": "spacing" + }, + "18": { + "value": "72px", + "type": "spacing" + }, + "19": { + "value": "80px", + "type": "spacing" + }, + "20": { + "value": "96px", + "type": "spacing" + }, + "21": { + "value": "112px", + "type": "spacing" + }, + "22": { + "value": "128px", + "type": "spacing" + }, + "23": { + "value": "144px", + "type": "spacing" + }, + "24": { + "value": "160px", + "type": "spacing" + }, + "25": { + "value": "192px", + "type": "spacing" + }, + "26": { + "value": "224px", + "type": "spacing" + }, + "27": { + "value": "256px", + "type": "spacing" + }, + "28": { + "value": "288px", + "type": "spacing" + }, + "none": { + "value": "0px", + "type": "spacing" + } + }, + "breakpoint": { + "width": { + "xs": { + "value": "476px", + "type": "sizing", + "description": "min-width size" + }, + "sm": { + "value": "768px", + "type": "sizing", + "description": "min-width size" + }, + "md": { + "value": "1152px", + "type": "sizing", + "description": "min-width size" + }, + "lg": { + "value": "1440px", + "type": "sizing", + "description": "min-width size" + } + }, + "margin": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "gutter": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "content": { + "fluid": { + "value": "100%", + "type": "sizing", + "description": "for fluid grid widths" + }, + "fixed": { + "value": "1440px", + "type": "sizing", + "description": "only for lg breakpoint fixed grid width" + } + }, + "cols": { + "xs": { + "value": "6", + "type": "other", + "description": "columns" + }, + "sm": { + "value": "12", + "type": "other", + "description": "columns" + }, + "md": { + "value": "24", + "type": "other", + "description": "columns" + }, + "lg": { + "value": "24", + "type": "other", + "description": "columns" + } + } + }, + "z-index": { + "deep": { + "value": "-999999", + "type": "other" + }, + "default": { + "value": "1", + "type": "other" + }, + "sticky": { + "value": "300", + "type": "other" + }, + "header": { + "value": "400", + "type": "other" + }, + "toast": { + "value": "500", + "type": "other" + }, + "dropdown": { + "value": "600", + "type": "other" + }, + "overlay": { + "value": "700", + "type": "other" + }, + "modal": { + "value": "800", + "type": "other" + }, + "popup": { + "value": "900", + "type": "other" + } + }, + "box-shadow": { + "0": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + }, + "1": { + "value": [ + { + "x": "0", + "y": "2", + "blur": "8", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "4", + "blur": "16", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "2": { + "value": [ + { + "x": "0", + "y": "4", + "blur": "20", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "12", + "blur": "32", + "spread": "-2", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "none": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + } + } + } +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json new file mode 100644 index 00000000000..b195cf841eb --- /dev/null +++ b/tokens/semantic.json @@ -0,0 +1,1673 @@ +{ + "semantic": { + "font": { + "default": { + "light": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "wrap": { + "light": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "hierarchy": { + "display-1": { + "value": "$semantic.font.wrap.regular.8", + "type": "typography" + }, + "display-2": { + "value": "$semantic.font.wrap.regular.7", + "type": "typography" + }, + "heading-1": { + "value": "$semantic.font.wrap.regular.6", + "type": "typography" + }, + "heading-2": { + "value": "$semantic.font.wrap.regular.5", + "type": "typography" + }, + "heading-3": { + "value": "$semantic.font.wrap.regular.4", + "type": "typography" + }, + "heading-4": { + "value": "$semantic.font.wrap.regular.3", + "type": "typography" + }, + "heading-5": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + }, + "heading-6": { + "value": "$semantic.font.wrap.regular.1", + "type": "typography" + }, + "body-1": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "body-2": { + "value": "$semantic.font.wrap.regular.-1", + "type": "typography" + }, + "overline": { + "value": { + "fontFamilies": "$core.font.font-family.primary", + "fontWeights": "$core.font.font-weight.bold", + "fontSizes": "$core.font.font-size.2", + "lineHeights": "$core.font.line-height.fixed.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textCase": "$core.font.text-case.uppercase", + "textDecoration": "$core.font.text-decoration.none", + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.bold", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2" + }, + "type": "typography" + }, + "caption": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + } + } + }, + "border": { + "border-radius": { + "sharp": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "round": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "circular": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "pill": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + } + }, + "ui": { + "border": { + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + } + }, + "color": { + "brand": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$core.color.neutral.blk-005", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-190", + "type": "color" + } + }, + "foreground": { + "1": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-200", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-010", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-210", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-020", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + } + }, + "text": { + "1": { + "light": { + "value": "$core.color.neutral.blk-220", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-000", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-170", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-060", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-140", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-090", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + }, + "link": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + } + }, + "border": { + "1": { + "light": { + "value": "$core.color.neutral.blk-050", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-160", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-040", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-170", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-030", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-180", + "type": "color" + } + }, + "input": { + "light": { + "value": "$core.color.neutral.blk-100", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-130", + "type": "color" + } + } + }, + "info": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + } + }, + "success": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.green.d-gg-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-160", + "type": "color" + } + } + }, + "warning": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.yellow.d-yy-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-160", + "type": "color" + } + } + }, + "danger": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.red.d-rr-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-160", + "type": "color" + } + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-190", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-005", + "type": "color" + } + } + } + } + } +} \ No newline at end of file From 31a13933af31d531fa8f3dbf9605059c73a4145b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 3 Jan 2023 08:35:48 -0800 Subject: [PATCH 082/696] fix(*): token json misformation --- tokens/$themes.json | 4 ++-- tokens/component/[template-comp-name].json | 17 ++++++++--------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 022510e7cd2..892e82d93ef 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -248,7 +248,7 @@ "component/label": "enabled", "component/tooltip": "enabled", "component/input-time": "enabled", - "component/[template-comp-name]": "enabled" + "component/[template-comp-name]": "enabled", "component/switch": "enabled", "component/input-message": "enabled", "component/accordion-item": "enabled", @@ -781,4 +781,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] \ No newline at end of file +] diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 90b1037f52a..2d95491e98f 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -55,14 +55,13 @@ } }, "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" } }, "border-radius": { @@ -175,4 +174,4 @@ } } } -} \ No newline at end of file +} From 147eec3d66d5baf6ce3fc42e640f9b9a70a46858 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 3 Jan 2023 16:59:44 +0000 Subject: [PATCH 083/696] push from main --- tokens/$themes.json | 66 ++-------------------- tokens/component/[template-comp-name].json | 15 +++-- 2 files changed, 12 insertions(+), 69 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 022510e7cd2..61e4835d651 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -5,21 +5,8 @@ "selectedTokenSets": { "core": "source", "semantic": "source", - "calcite/light": "disabled", - "calcite/dark": "disabled", "brand/global": "enabled", - "brand/light": "enabled", - "brand/dark": "disabled", - "component/label": "disabled", - "component/tooltip": "disabled", - "component/input-time": "disabled", - "component/switch": "disabled", - "component/input-message": "disabled", - "component/accordion-item": "disabled", - "component/alert": "disabled", - "component/accordion": "disabled", - "component/accordion_backup": "disabled", - "component/tip": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -29,21 +16,8 @@ "selectedTokenSets": { "core": "source", "semantic": "source", - "calcite/light": "disabled", - "calcite/dark": "disabled", "brand/global": "enabled", - "brand/light": "disabled", - "brand/dark": "enabled", - "component/label": "disabled", - "component/tooltip": "disabled", - "component/input-time": "disabled", - "component/switch": "disabled", - "component/input-message": "disabled", - "component/accordion-item": "disabled", - "component/alert": "disabled", - "component/accordion": "disabled", - "component/accordion_backup": "disabled", - "component/tip": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -53,11 +27,7 @@ "selectedTokenSets": { "core": "source", "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", "calcite/dark": "enabled", - "brand/global": "disabled", "component/label": "source", "component/avatar": "source", "component/checkbox": "source", @@ -65,15 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-time": "disabled", - "component/switch": "disabled", - "component/input-message": "disabled", - "component/accordion-item": "disabled", - "component/alert": "disabled", - "component/accordion": "disabled", - "component/accordion_backup": "disabled", - "component/tip": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -142,11 +104,7 @@ "selectedTokenSets": { "core": "source", "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", "calcite/light": "enabled", - "calcite/dark": "disabled", - "brand/global": "disabled", "component/label": "source", "component/avatar": "source", "component/checkbox": "source", @@ -154,15 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-time": "disabled", - "component/switch": "disabled", - "component/input-message": "disabled", - "component/accordion-item": "disabled", - "component/alert": "disabled", - "component/accordion": "disabled", - "component/accordion_backup": "disabled", - "component/tip": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -234,11 +184,6 @@ "selectedTokenSets": { "core": "enabled", "semantic": "enabled", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "disabled", "component/avatar": "enabled", "component/checkbox": "enabled", "component/chip": "enabled", @@ -248,13 +193,12 @@ "component/label": "enabled", "component/tooltip": "enabled", "component/input-time": "enabled", - "component/[template-comp-name]": "enabled" + "component/[template-comp-name]": "enabled", "component/switch": "enabled", "component/input-message": "enabled", "component/accordion-item": "enabled", "component/alert": "enabled", "component/accordion": "enabled", - "component/accordion_backup": "disabled", "component/tip": "enabled" }, "$figmaStyleReferences": { diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 90b1037f52a..bf4896dbc5a 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -55,14 +55,13 @@ } }, "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" } }, "border-radius": { From 5602d8c227c83df627b60ae88ed5ebf4fd0cb591 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 5 Jan 2023 16:11:31 +0000 Subject: [PATCH 084/696] input-message token --- tokens/component/input-message.json | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json index b4f54476d2c..f755f4ca24e 100644 --- a/tokens/component/input-message.json +++ b/tokens/component/input-message.json @@ -10,11 +10,11 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.regular.-3h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-2h", + "value": "$semantic.font.default.medium.-2h", "type": "typography" }, "lg": { @@ -54,20 +54,6 @@ } } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", From 12cc85bb8d654884122fd7f680b0a8e336cedc77 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 5 Jan 2023 16:13:10 +0000 Subject: [PATCH 085/696] input-message token --- tokens/component/input-message.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json index f755f4ca24e..3418886d3d6 100644 --- a/tokens/component/input-message.json +++ b/tokens/component/input-message.json @@ -10,7 +10,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-3h", + "value": "$semantic.font.default.medium.-3h", "type": "typography" }, "md": { @@ -18,7 +18,7 @@ "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.medium.-1h", "type": "typography" } }, From 79656e0d99cfececf625ee9888752d07299b29d9 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 5 Jan 2023 18:49:11 +0000 Subject: [PATCH 086/696] alert light tokens --- tokens/calcite/dark.json | 20 ++++++++++ tokens/calcite/light.json | 76 +++++++++++++++++++++++++++++++++++++ tokens/component/alert.json | 36 ++++++++---------- 3 files changed, 112 insertions(+), 20 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 4182d2b7a2a..1d966c0c032 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -436,6 +436,26 @@ "value": "$accordion-item.border.dark", "type": "color" } + }, + "input-message": { + "font": { + "value": "$input-message.font.dark", + "type": "color" + }, + "icon": { + "idle": { + "value": "$input-message.icon.idle.dark", + "type": "color" + }, + "invalid": { + "value": "$input-message.icon.invalid.dark", + "type": "color" + }, + "valid": { + "value": "$input-message.icon.valid.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 1cf660ae821..1cddb40248d 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -436,6 +436,82 @@ "value": "$accordion-item.border.light", "type": "color" } + }, + "input-message": { + "font": { + "value": "$input-message.font.light", + "type": "color" + }, + "icon": { + "idle": { + "value": "$input-message.icon.idle.light", + "type": "color" + }, + "invalid": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "valid": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + } + } + }, + "alert": { + "font": { + "title": { + "value": "$alert.font.title.light", + "type": "color" + }, + "message": { + "value": "$alert.font.message.light", + "type": "color" + } + }, + "background": { + "value": "$alert.background.light", + "type": "color" + }, + "border": { + "value": "$alert.border.light", + "type": "color" + }, + "icon": { + "blue": { + "value": "$alert.icon.blue.light", + "type": "color" + }, + "green": { + "value": "$alert.icon.green.light", + "type": "color" + }, + "yellow": { + "value": "$alert.icon.yellow.light", + "type": "color" + }, + "red": { + "value": "$alert.icon.red.light", + "type": "color" + } + }, + "highlight": { + "blue": { + "value": "$alert.highlight.blue.light", + "type": "color" + }, + "green": { + "value": "$alert.highlight.green.light", + "type": "color" + }, + "yellow": { + "value": "$alert.highlight.yellow.light", + "type": "color" + }, + "red": { + "value": "$alert.highlight.red.light", + "type": "color" + } + } } } } diff --git a/tokens/component/alert.json b/tokens/component/alert.json index e6ae9fd5a4e..da1de7672b1 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -1,17 +1,15 @@ { "alert": { - "title": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, "font": { "title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, "sm": { "value": "$semantic.font.default.bold.-1h", "type": "typography" @@ -37,19 +35,17 @@ "lg": { "value": "$semantic.font.default.bold.0h", "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" } } }, - "message": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, "background": { "light": { "value": "$semantic.ui.color.foreground.2.light", From fb2574e7293b59650f3838453bbe65554ee99491 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 5 Jan 2023 19:39:28 +0000 Subject: [PATCH 087/696] alert dark colors tokens --- tokens/calcite/dark.json | 56 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 1d966c0c032..2ee861fca84 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -456,6 +456,62 @@ "type": "color" } } + }, + "alert": { + "font": { + "title": { + "value": "$alert.font.title.dark", + "type": "color" + }, + "message": { + "value": "$alert.font.message.dark", + "type": "color" + } + }, + "background": { + "value": "$alert.background.dark", + "type": "color" + }, + "border": { + "value": "$alert.border.dark", + "type": "color" + }, + "icon": { + "blue": { + "value": "$alert.icon.blue.dark", + "type": "color" + }, + "green": { + "value": "$alert.icon.green.dark", + "type": "color" + }, + "yellow": { + "value": "$alert.icon.yellow.dark", + "type": "color" + }, + "red": { + "value": "$alert.icon.red.dark", + "type": "color" + } + }, + "highlight": { + "blue": { + "value": "$alert.icon.blue.dark", + "type": "color" + }, + "green": { + "value": "$alert.icon.green.dark", + "type": "color" + }, + "yellow": { + "value": "$alert.icon.yellow.dark", + "type": "color" + }, + "red": { + "value": "$alert.icon.red.dark", + "type": "color" + } + } } } } From 682af9d4a956f377d05bee58e109f51a441fb6b3 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 13 Jan 2023 13:49:29 +0000 Subject: [PATCH 088/696] alert dark tokens --- tokens/calcite/dark.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 2ee861fca84..3928a9a068e 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -496,19 +496,19 @@ }, "highlight": { "blue": { - "value": "$alert.icon.blue.dark", + "value": "$alert.highlight.blue.dark", "type": "color" }, "green": { - "value": "$alert.icon.green.dark", + "value": "$alert.highlight.green.dark", "type": "color" }, "yellow": { - "value": "$alert.icon.yellow.dark", + "value": "$alert.highlight.yellow.light", "type": "color" }, "red": { - "value": "$alert.icon.red.dark", + "value": "$alert.highlight.red.light", "type": "color" } } From d69581dfbcfbae25ef42bb17892672cfebd969bf Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 16 Jan 2023 21:14:19 +0000 Subject: [PATCH 089/696] alert tokens --- tokens/calcite/dark.json | 8 ++++---- tokens/calcite/light.json | 30 ++++++++++++++++++++++++++++++ tokens/component/alert.json | 30 ++++++++++-------------------- 3 files changed, 44 insertions(+), 24 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 3928a9a068e..2ee861fca84 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -496,19 +496,19 @@ }, "highlight": { "blue": { - "value": "$alert.highlight.blue.dark", + "value": "$alert.icon.blue.dark", "type": "color" }, "green": { - "value": "$alert.highlight.green.dark", + "value": "$alert.icon.green.dark", "type": "color" }, "yellow": { - "value": "$alert.highlight.yellow.light", + "value": "$alert.icon.yellow.dark", "type": "color" }, "red": { - "value": "$alert.highlight.red.light", + "value": "$alert.icon.red.dark", "type": "color" } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 1cddb40248d..8c93e95bb9c 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -512,6 +512,36 @@ "type": "color" } } + }, + "tip": { + "font": { + "heading": { + "value": "$tip.font.heading.light", + "type": "color" + }, + "description": { + "value": "$tip.font.description.light", + "type": "color" + } + }, + "icon": { + "value": "$tip.icon.light", + "type": "color" + }, + "background": { + "default": { + "light": { + "value": "$tip.background.default.light", + "type": "color" + } + } + }, + "border": { + "default": { + "value": "$tip.border.default.light", + "type": "color" + } + } } } } diff --git a/tokens/component/alert.json b/tokens/component/alert.json index da1de7672b1..fbfda681395 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -11,29 +11,29 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.medium.-1h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.medium.0h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.1h", + "value": "$semantic.font.default.medium.1h", "type": "typography" } }, "message": { "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.regular.0h", "type": "typography" }, "light": { @@ -80,20 +80,6 @@ "type": "borderRadius" } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", @@ -263,6 +249,10 @@ "type": "spacing" } } + }, + "shadow": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" } } } \ No newline at end of file From 1f553bc1f6527766a77fbaa66cd45c3f1ebfa4b3 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 16 Jan 2023 21:17:32 +0000 Subject: [PATCH 090/696] alert token change --- tokens/component/alert.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/component/alert.json b/tokens/component/alert.json index fbfda681395..698b1e3e623 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -48,7 +48,7 @@ }, "background": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { From 6da83d8bec916dbf5237c8fbced3cbaa5f7e4dfb Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 17 Jan 2023 10:11:47 +0000 Subject: [PATCH 091/696] tip tokens --- tokens/calcite/light.json | 4 ++-- tokens/component/tip.json | 14 -------------- 2 files changed, 2 insertions(+), 16 deletions(-) diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 8c93e95bb9c..16e4eebe7ec 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -448,11 +448,11 @@ "type": "color" }, "invalid": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$input-message.icon.invalid.light", "type": "color" }, "valid": { - "value": "$semantic.ui.color.success.default.light", + "value": "$input-message.icon.valid.light", "type": "color" } } diff --git a/tokens/component/tip.json b/tokens/component/tip.json index f35cde8a6e6..402020b0202 100644 --- a/tokens/component/tip.json +++ b/tokens/component/tip.json @@ -58,20 +58,6 @@ "type": "borderRadius" } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "md": { "value": "$core.sizing.9", From 001d30d7c5e8e8a766f31ee0814ca9e9298a73aa Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 19 Jan 2023 17:57:00 +0200 Subject: [PATCH 092/696] test --- tokens/$metadata.json | 25 +- tokens/$themes.json | 785 +-------- tokens/brand/dark.json | 1 - tokens/brand/light.json | 20 - tokens/calcite/dark.json | 552 ------- tokens/calcite/light.json | 552 ------- tokens/component/FAB.json | 232 --- tokens/component/[template-comp-name].json | 177 -- tokens/component/avatar.json | 140 -- tokens/component/button.json | 232 --- tokens/component/checkbox.json | 119 -- tokens/component/chip.json | 352 ---- tokens/component/input-time.json | 1 - tokens/component/label.json | 26 - tokens/component/link.json | 36 - tokens/component/loader.json | 130 -- tokens/component/pagination.json | 76 - tokens/component/progress.json | 50 - tokens/component/radio.json | 124 -- tokens/component/rating.json | 243 --- tokens/component/split-button.json | 232 --- tokens/component/tile.json | 52 - tokens/component/tooltip.json | 66 - tokens/core.json | 1696 -------------------- tokens/{brand => }/global.json | 0 tokens/semantic.json | 1673 ------------------- 26 files changed, 2 insertions(+), 7590 deletions(-) delete mode 100644 tokens/brand/dark.json delete mode 100644 tokens/brand/light.json delete mode 100644 tokens/calcite/dark.json delete mode 100644 tokens/calcite/light.json delete mode 100644 tokens/component/FAB.json delete mode 100644 tokens/component/[template-comp-name].json delete mode 100644 tokens/component/avatar.json delete mode 100644 tokens/component/button.json delete mode 100644 tokens/component/checkbox.json delete mode 100644 tokens/component/chip.json delete mode 100644 tokens/component/input-time.json delete mode 100644 tokens/component/label.json delete mode 100644 tokens/component/link.json delete mode 100644 tokens/component/loader.json delete mode 100644 tokens/component/pagination.json delete mode 100644 tokens/component/progress.json delete mode 100644 tokens/component/radio.json delete mode 100644 tokens/component/rating.json delete mode 100644 tokens/component/split-button.json delete mode 100644 tokens/component/tile.json delete mode 100644 tokens/component/tooltip.json delete mode 100644 tokens/core.json rename tokens/{brand => }/global.json (100%) delete mode 100644 tokens/semantic.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 31047a17115..74cad535f24 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -1,28 +1,5 @@ { "tokenSetOrder": [ - "core", - "semantic", - "component/avatar", - "component/checkbox", - "component/input-time", - "component/[template-comp-name]", - "component/button", - "component/chip", - "component/FAB", - "component/label", - "component/link", - "component/loader", - "component/pagination", - "component/progress", - "component/radio", - "component/split-button", - "component/rating", - "component/tooltip", - "component/tile", - "calcite/light", - "calcite/dark", - "brand/global", - "brand/light", - "brand/dark" + "global" ] } \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index b8ef40ed2b6..0637a088a01 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -1,784 +1 @@ -[ - { - "id": "59a65f6d4a3657738c9d46d61315ae0b6fc6e9fd", - "name": "Brand - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "enabled", - "brand/light": "enabled", - "brand/dark": "disabled", - "component/label": "disabled", - "component/tooltip": "disabled", - "component/input-time": "disabled" - "component/link": "disabled", - "component/progress": "disabled", - "component/pagination": "disabled", - "component/tile": "disabled", - "component/button": "disabled", - "component/split-button": "disabled", - "component/FAB": "disabled" - }, - "$figmaStyleReferences": {} - }, - { - "id": "d7056b4e805091c91b5ec1b6ce901ba3d606e7a8", - "name": "Brand - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "enabled", - "brand/light": "disabled", - "brand/dark": "enabled", - "component/label": "disabled", - "component/tooltip": "disabled", - "component/input-time": "disabled" - "component/link": "disabled", - "component/progress": "disabled", - "component/pagination": "disabled", - "component/tile": "disabled", - "component/button": "disabled", - "component/split-button": "disabled", - "component/FAB": "disabled" - }, - "$figmaStyleReferences": {} - }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "enabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/input-time": "disabled" - "component/link": "source", - "component/progress": "source", - "component/pagination": "source", - "component/tile": "source", - "component/button": "source", - "component/split-button": "disabled", - "component/FAB": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," - } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "enabled", - "calcite/dark": "disabled", - "brand/global": "disabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/input-time": "disabled" - "component/link": "source", - "component/progress": "source", - "component/pagination": "source", - "component/tile": "source", - "component/button": "source", - "component/split-button": "disabled", - "component/FAB": "disabled" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", - "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", - "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", - "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", - "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", - "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", - "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", - "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", - "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", - "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", - "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", - "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", - "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", - "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," - } - }, - { - "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", - "name": "Calcite Headless", - "selectedTokenSets": { - "core": "enabled", - "semantic": "enabled", - "brand/light": "disabled", - "brand/dark": "disabled", - "calcite/light": "disabled", - "calcite/dark": "disabled", - "brand/global": "disabled", - "component/avatar": "enabled", - "component/checkbox": "enabled", - "component/chip": "enabled", - "component/loader": "enabled", - "component/radio": "enabled", - "component/rating": "enabled", - "component/label": "enabled", - "component/tooltip": "enabled", - "component/input-time": "enabled", - "component/[template-comp-name]": "enabled" - "component/link": "enabled", - "component/progress": "enabled", - "component/pagination": "enabled", - "component/tile": "enabled", - "component/button": "enabled", - "component/split-button": "enabled", - "component/FAB": "enabled" - }, - "$figmaStyleReferences": { - "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", - "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", - "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", - "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", - "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", - "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", - "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", - "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", - "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", - "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", - "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", - "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", - "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", - "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", - "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", - "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", - "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", - "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", - "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", - "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", - "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", - "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", - "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", - "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", - "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", - "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", - "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", - "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", - "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", - "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", - "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", - "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", - "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", - "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", - "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", - "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", - "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", - "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", - "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", - "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", - "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", - "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", - "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", - "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", - "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", - "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", - "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", - "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", - "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", - "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", - "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", - "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", - "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", - "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", - "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", - "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", - "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", - "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", - "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", - "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", - "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", - "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", - "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", - "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", - "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", - "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", - "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", - "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", - "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", - "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", - "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", - "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", - "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", - "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", - "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", - "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", - "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", - "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", - "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", - "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", - "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", - "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", - "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", - "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", - "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", - "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", - "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", - "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", - "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", - "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", - "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", - "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", - "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", - "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", - "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", - "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", - "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", - "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", - "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", - "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", - "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", - "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", - "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", - "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", - "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", - "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", - "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", - "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", - "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", - "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", - "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", - "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", - "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", - "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", - "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", - "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", - "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", - "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", - "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", - "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", - "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", - "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", - "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", - "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", - "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", - "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", - "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", - "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", - "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", - "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", - "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", - "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", - "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", - "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", - "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", - "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", - "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", - "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", - "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", - "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", - "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", - "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", - "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", - "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", - "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", - "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", - "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", - "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", - "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", - "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", - "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", - "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", - "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", - "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", - "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", - "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", - "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", - "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", - "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", - "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", - "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", - "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", - "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", - "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", - "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", - "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", - "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", - "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", - "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", - "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", - "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", - "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", - "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", - "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", - "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", - "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", - "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", - "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", - "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", - "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", - "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", - "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", - "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", - "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", - "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", - "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", - "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", - "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", - "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", - "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", - "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", - "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", - "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", - "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", - "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", - "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", - "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", - "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", - "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", - "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", - "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", - "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", - "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", - "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", - "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", - "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", - "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", - "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", - "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", - "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", - "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", - "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", - "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", - "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", - "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", - "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", - "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", - "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", - "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", - "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", - "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", - "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", - "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", - "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", - "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", - "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", - "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", - "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", - "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", - "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", - "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", - "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", - "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", - "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", - "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", - "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", - "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", - "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", - "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", - "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", - "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", - "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", - "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", - "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", - "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", - "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", - "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", - "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", - "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", - "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", - "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", - "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", - "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", - "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", - "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", - "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", - "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", - "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", - "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", - "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", - "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", - "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", - "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", - "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", - "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", - "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", - "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", - "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", - "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", - "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", - "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", - "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", - "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", - "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", - "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", - "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", - "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", - "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", - "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", - "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", - "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", - "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", - "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", - "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", - "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", - "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", - "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", - "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", - "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", - "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", - "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", - "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", - "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", - "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", - "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", - "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", - "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", - "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", - "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", - "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", - "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", - "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", - "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", - "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", - "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", - "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", - "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", - "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", - "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", - "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", - "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", - "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", - "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", - "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", - "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", - "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", - "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", - "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", - "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", - "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", - "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", - "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", - "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", - "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", - "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", - "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", - "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", - "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", - "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", - "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", - "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", - "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", - "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", - "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", - "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", - "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", - "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", - "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", - "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", - "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", - "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", - "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", - "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", - "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", - "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", - "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", - "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", - "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", - "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", - "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", - "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", - "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", - "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", - "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", - "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", - "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", - "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", - "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", - "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", - "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", - "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", - "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", - "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", - "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", - "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", - "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", - "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", - "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", - "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", - "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", - "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", - "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", - "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", - "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", - "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", - "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", - "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", - "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", - "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", - "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", - "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", - "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", - "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", - "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", - "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", - "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", - "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", - "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", - "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", - "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", - "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", - "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", - "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", - "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", - "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", - "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", - "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", - "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", - "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", - "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", - "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", - "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", - "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", - "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", - "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", - "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", - "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", - "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", - "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", - "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", - "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", - "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", - "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", - "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", - "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", - "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", - "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", - "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", - "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", - "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", - "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", - "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", - "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", - "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", - "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", - "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", - "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", - "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", - "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", - "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", - "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", - "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", - "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", - "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", - "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", - "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", - "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", - "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", - "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", - "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", - "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", - "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", - "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", - "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", - "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", - "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", - "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", - "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", - "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", - "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", - "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", - "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", - "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", - "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", - "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", - "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", - "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", - "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", - "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", - "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", - "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", - "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", - "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", - "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", - "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", - "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", - "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", - "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", - "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", - "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", - "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", - "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", - "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", - "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", - "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", - "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", - "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", - "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", - "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", - "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", - "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", - "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", - "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", - "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", - "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", - "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", - "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", - "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", - "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", - "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", - "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", - "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", - "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", - "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", - "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", - "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", - "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", - "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", - "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", - "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", - "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", - "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", - "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", - "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", - "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", - "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", - "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", - "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", - "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", - "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", - "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", - "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", - "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", - "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", - "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", - "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", - "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", - "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", - "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", - "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", - "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," - } - } -] \ No newline at end of file +[] \ No newline at end of file diff --git a/tokens/brand/dark.json b/tokens/brand/dark.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/tokens/brand/dark.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/tokens/brand/light.json b/tokens/brand/light.json deleted file mode 100644 index a55d3c5bc32..00000000000 --- a/tokens/brand/light.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "core": { - "font": { - "font-size": { - "6": { - "value": "26px", - "type": "fontSizes" - } - } - } - }, - "breakpoint": { - "width": { - "lg": { - "value": "$core.breakpoint.width.lg", - "type": "sizing" - } - } - } -} \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json deleted file mode 100644 index a717aeb65a8..00000000000 --- a/tokens/calcite/dark.json +++ /dev/null @@ -1,552 +0,0 @@ -{ - "color": { - "brand": { - "default": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.brand.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.brand.press.dark", - "type": "color" - } - }, - "background": { - "1": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - }, - "foreground": { - "1": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.foreground.3.dark", - "type": "color" - } - }, - "text": { - "1": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "inverse": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - }, - "link": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "border": { - "1": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - }, - "input": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "info": { - "default": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.info.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.info.press.dark", - "type": "color" - } - }, - "success": { - "default": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.success.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.success.press.dark", - "type": "color" - } - }, - "warning": { - "default": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.warning.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.warning.press.dark", - "type": "color" - } - }, - "danger": { - "default": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.danger.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.danger.press.dark", - "type": "color" - } - }, - "inverse": { - "default": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "component": { - "avatar": { - "font": { - "value": "$avatar.font.dark", - "type": "color" - }, - "icon": { - "value": "$avatar.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$avatar.background.default.dark", - "type": "color" - }, - "red": { - "value": "$avatar.background.red.dark", - "type": "color" - }, - "teal": { - "value": "$avatar.background.teal.dark", - "type": "color" - }, - "blue": { - "value": "$avatar.background.blue.dark", - "type": "color" - }, - "green": { - "value": "$avatar.background.green.dark", - "type": "color" - }, - "yellow": { - "value": "$avatar.background.yellow.dark", - "type": "color" - } - } - }, - "checkbox": { - "font": { - "value": "$checkbox.font.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$checkbox.background.default.dark", - "type": "color" - }, - "selected": { - "value": "$checkbox.background.selected.dark", - "type": "color" - } - }, - "icon": { - "value": "$checkbox.icon.dark", - "type": "color" - }, - "border": { - "value": "$checkbox.border.dark", - "type": "color" - } - }, - "radio": { - "font": { - "value": "$radio.font.dark", - "type": "color" - }, - "background": { - "value": "$radio.background.dark", - "type": "color" - }, - "border": { - "unchecked": { - "value": "$radio.border.unchecked.dark", - "type": "color" - }, - "checked": { - "value": "$radio.border.checked.dark", - "type": "color" - } - } - }, - "chip": { - "font": { - "clear": { - "value": "$chip.font.clear.dark", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.font.solid.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.font.solid.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.font.solid.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.font.solid.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.font.solid.green.dark", - "type": "color" - } - } - }, - "icon": { - "clear": { - "value": "$chip.icon.clear.dark", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.icon.solid.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.icon.solid.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.icon.solid.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.icon.solid.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.icon.solid.green.dark", - "type": "color" - } - } - }, - "closable-icon": { - "value": "$chip.closable-icon.dark", - "type": "color" - }, - "background": { - "solid": { - "grey": { - "value": "$chip.background.solid.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.background.solid.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.background.solid.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.background.solid.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.background.solid.green.dark", - "type": "color" - } - } - }, - "border": { - "clear": { - "grey": { - "value": "$chip.border.clear.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.border.clear.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.border.clear.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.border.clear.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.border.clear.green.dark", - "type": "color" - } - } - } - }, - "label": { - "font": { - "value": "$label.font.dark", - "type": "color" - } - }, - "loader": { - "font": { - "value": "$loader.font.dark", - "type": "color" - }, - "default": { - "foreground": { - "value": "$loader.default.foreground.dark", - "type": "color" - } - }, - "inline": { - "foreground": { - "indeterminate": { - "value": "$loader.inline.foreground.indeterminate.dark", - "type": "color" - }, - "determinate": { - "value": "$loader.inline.foreground.determinate.dark", - "type": "color" - } - } - } - }, - "rating": { - "star": { - "background": { - "default": { - "value": "$rating.star.background.default.dark", - "type": "color" - }, - "active": { - "value": "$rating.star.background.active.dark", - "type": "color" - }, - "average": { - "value": "$rating.star.background.average.dark", - "type": "color" - } - } - }, - "chip": { - "value-text": { - "font": { - "value": "$rating.chip.value-text.font.dark", - "type": "color" - } - }, - "count": { - "font": { - "value": "$rating.chip.count.font.dark", - "type": "color" - } - }, - "foreground": { - "value": "$rating.chip.foreground.dark", - "type": "color" - } - } - }, - "tooltip": { - "foreground": { - "value": "$tooltip.foreground.dark", - "type": "color" - }, - "border": { - "value": "$tooltip.border.dark", - "type": "color" - }, - "font": { - "value": "$tooltip.font.dark", - "type": "color" - } - }, - "link": { - "font": { - "value": "$link.font.dark", - "type": "color" - }, - "icon": { - "value": "$link.font.dark", - "type": "color" - } - }, - "pagination": { - "font": { - "active": { - "value": "$pagination.font.active.dark", - "type": "color" - }, - "inactive": { - "value": "$pagination.font.inactive.dark", - "type": "color" - } - }, - "icon": { - "value": "$pagination.icon.dark", - "type": "color" - }, - "border": { - "value": "$pagination.border.dark", - "type": "color" - } - }, - "progress": { - "background": { - "track": { - "idle": { - "value": "$progress.background.track.idle.dark", - "type": "color" - }, - "active": { - "value": "$progress.background.track.active.dark", - "type": "color" - } - } - }, - "font": { - "value": "$progress.font.dark", - "type": "color" - } - }, - "tile": { - "foreground": { - "value": "$tile.foreground.dark", - "type": "color" - }, - "font": { - "value": "$tile.font.dark", - "type": "color" - }, - "icon": { - "value": "$tile.icon.dark", - "type": "color" - }, - "border": { - "value": "$tile.border.dark", - "type": "color" - } - }, - "button": { - "background": { - "blue": { - "value": "$button.background.blue.light", - "type": "color" - }, - "inverse": { - "value": "$button.background.inverse.light", - "type": "color" - }, - "red": { - "value": "$button.background.red.light", - "type": "color" - }, - "neutral": { - "value": "$button.background.neutral.light", - "type": "color" - } - }, - "border": { - "blue": { - "value": "$button.border.blue.light", - "type": "color" - }, - "inverse": { - "value": "$button.border.inverse.light", - "type": "color" - }, - "red": { - "value": "$button.border.red.light", - "type": "color" - }, - "neutral": { - "value": "$button.border.neutral.light", - "type": "color" - } - }, - "font": { - "blue": { - "value": "$button.font.blue.light", - "type": "color" - }, - "inverse": { - "value": "$button.font.inverse.light", - "type": "color" - }, - "red": { - "value": "$button.font.red.light", - "type": "color" - }, - "neutral": { - "value": "$button.font.neutral.light", - "type": "color" - } - }, - "icon": { - "blue": { - "value": "$button.icon.blue.light", - "type": "color" - }, - "inverse": { - "value": "$button.icon.inverse.light", - "type": "color" - }, - "red": { - "value": "$button.icon.red.light", - "type": "color" - }, - "neutral": { - "value": "$button.icon.neutral.light", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json deleted file mode 100644 index 695f6ef4092..00000000000 --- a/tokens/calcite/light.json +++ /dev/null @@ -1,552 +0,0 @@ -{ - "color": { - "brand": { - "default": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.brand.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.brand.press.light", - "type": "color" - } - }, - "background": { - "1": { - "value": "$semantic.ui.color.background.light", - "type": "color" - } - }, - "foreground": { - "1": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.foreground.3.light", - "type": "color" - } - }, - "text": { - "1": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "inverse": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "link": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - } - }, - "border": { - "1": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "input": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - } - }, - "info": { - "default": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.info.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.info.press.light", - "type": "color" - } - }, - "success": { - "default": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.success.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.success.press.light", - "type": "color" - } - }, - "warning": { - "default": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.warning.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.warning.press.light", - "type": "color" - } - }, - "danger": { - "default": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.danger.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.danger.press.light", - "type": "color" - } - }, - "inverse": { - "default": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - } - }, - "component": { - "avatar": { - "font": { - "value": "$avatar.font.light", - "type": "color" - }, - "icon": { - "value": "$avatar.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$avatar.background.default.light", - "type": "color" - }, - "red": { - "value": "$avatar.background.red.light", - "type": "color" - }, - "teal": { - "value": "$avatar.background.teal.light", - "type": "color" - }, - "blue": { - "value": "$avatar.background.blue.light", - "type": "color" - }, - "green": { - "value": "$avatar.background.green.light", - "type": "color" - }, - "yellow": { - "value": "$avatar.background.yellow.light", - "type": "color" - } - } - }, - "checkbox": { - "font": { - "value": "$checkbox.font.light", - "type": "color" - }, - "background": { - "default": { - "value": "$checkbox.background.default.light", - "type": "color" - }, - "selected": { - "value": "$checkbox.background.selected.light", - "type": "color" - } - }, - "icon": { - "value": "$checkbox.icon.light", - "type": "color" - }, - "border": { - "value": "$checkbox.border.light", - "type": "color" - } - }, - "radio": { - "font": { - "value": "$radio.font.light", - "type": "color" - }, - "background": { - "value": "$radio.background.light", - "type": "color" - }, - "border": { - "unchecked": { - "value": "$radio.border.unchecked.light", - "type": "color" - }, - "checked": { - "value": "$radio.border.checked.light", - "type": "color" - } - } - }, - "chip": { - "font": { - "clear": { - "value": "$chip.font.clear.light", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.font.solid.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.font.solid.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.font.solid.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.font.solid.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.font.solid.green.light", - "type": "color" - } - } - }, - "icon": { - "clear": { - "value": "$chip.icon.clear.light", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.icon.solid.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.icon.solid.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.icon.solid.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.icon.solid.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.icon.solid.green.light", - "type": "color" - } - } - }, - "closable-icon": { - "value": "$chip.closable-icon.light", - "type": "color" - }, - "background": { - "solid": { - "grey": { - "value": "$chip.background.solid.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.background.solid.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.background.solid.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.background.solid.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.background.solid.green.light", - "type": "color" - } - } - }, - "border": { - "clear": { - "grey": { - "value": "$chip.border.clear.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.border.clear.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.border.clear.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.border.clear.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.border.clear.green.light", - "type": "color" - } - } - } - }, - "label": { - "font": { - "value": "$label.font.light", - "type": "color" - } - }, - "loader": { - "font": { - "value": "$loader.font.light", - "type": "color" - }, - "default": { - "foreground": { - "value": "$loader.default.foreground.light", - "type": "color" - } - }, - "inline": { - "foreground": { - "indeterminate": { - "value": "$loader.inline.foreground.indeterminate.light", - "type": "color" - }, - "determinate": { - "value": "$loader.inline.foreground.determinate.light", - "type": "color" - } - } - } - }, - "rating": { - "star": { - "background": { - "default": { - "value": "$rating.star.background.default.light", - "type": "color" - }, - "active": { - "value": "$rating.star.background.active.light", - "type": "color" - }, - "average": { - "value": "$rating.star.background.average.light", - "type": "color" - } - } - }, - "chip": { - "value-text": { - "font": { - "value": "$rating.chip.value-text.font.light", - "type": "color" - } - }, - "count": { - "font": { - "value": "$rating.chip.count.font.light", - "type": "color" - } - }, - "foreground": { - "value": "$rating.chip.foreground.light", - "type": "color" - } - } - }, - "tooltip": { - "foreground": { - "value": "$tooltip.foreground.light", - "type": "color" - }, - "border": { - "value": "$tooltip.border.light", - "type": "color" - }, - "font": { - "value": "$tooltip.font.light", - "type": "color" - } - }, - "link": { - "font": { - "value": "$link.font.light", - "type": "color" - }, - "icon": { - "value": "$link.font.light", - "type": "color" - } - }, - "pagination": { - "font": { - "active": { - "value": "$pagination.font.active.light", - "type": "color" - }, - "inactive": { - "value": "$pagination.font.inactive.light", - "type": "color" - } - }, - "icon": { - "value": "$pagination.icon.light", - "type": "color" - }, - "border": { - "value": "$pagination.border.light", - "type": "color" - } - }, - "progress": { - "background": { - "track": { - "idle": { - "value": "$progress.background.track.idle.light", - "type": "color" - }, - "active": { - "value": "$progress.background.track.active.light", - "type": "color" - } - } - }, - "font": { - "value": "$progress.font.light", - "type": "color" - } - }, - "tile": { - "foreground": { - "value": "$tile.foreground.light", - "type": "color" - }, - "font": { - "value": "$tile.font.light", - "type": "color" - }, - "icon": { - "value": "$tile.icon.light", - "type": "color" - }, - "border": { - "value": "$tile.border.light", - "type": "color" - } - }, - "button": { - "background": { - "blue": { - "value": "$button.background.blue.light", - "type": "color" - }, - "inverse": { - "value": "$button.background.inverse.light", - "type": "color" - }, - "red": { - "value": "$button.background.red.light", - "type": "color" - }, - "neutral": { - "value": "$button.background.neutral.light", - "type": "color" - } - }, - "border": { - "blue": { - "value": "$button.border.blue.light", - "type": "color" - }, - "inverse": { - "value": "$button.border.inverse.light", - "type": "color" - }, - "red": { - "value": "$button.border.red.light", - "type": "color" - }, - "neutral": { - "value": "$button.border.neutral.light", - "type": "color" - } - }, - "font": { - "blue": { - "value": "$button.font.blue.light", - "type": "color" - }, - "inverse": { - "value": "$button.font.inverse.light", - "type": "color" - }, - "red": { - "value": "$button.font.red.light", - "type": "color" - }, - "neutral": { - "value": "$button.font.neutral.light", - "type": "color" - } - }, - "icon": { - "blue": { - "value": "$button.icon.blue.light", - "type": "color" - }, - "inverse": { - "value": "$button.icon.inverse.light", - "type": "color" - }, - "red": { - "value": "$button.icon.red.light", - "type": "color" - }, - "neutral": { - "value": "$button.icon.neutral.light", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/FAB.json b/tokens/component/FAB.json deleted file mode 100644 index 807e2dfb356..00000000000 --- a/tokens/component/FAB.json +++ /dev/null @@ -1,232 +0,0 @@ -{ - "FAB": { - "comp-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.6", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.3", - "type": "spacing" - } - }, - "background": { - "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "border-radius": { - "square": { - "value": "$semantic.border.border-radius.sharp", - "type": "borderRadius" - }, - "rounded": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - } - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "border": { - "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "blue": { - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - }, - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "space-around": { - "standard": { - "value": "$core.sizing.5", - "type": "spacing" - } - }, - "icon": { - "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json deleted file mode 100644 index f1f63332baf..00000000000 --- a/tokens/component/[template-comp-name].json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "[comp-name]": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json deleted file mode 100644 index 5694023e615..00000000000 --- a/tokens/component/avatar.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "avatar": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.red.h-rr-090", - "type": "color" - } - }, - "teal": { - "light": { - "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-090", - "type": "color" - } - }, - "green": { - "light": { - "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-010", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-100", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/button.json b/tokens/component/button.json deleted file mode 100644 index 056bc775024..00000000000 --- a/tokens/component/button.json +++ /dev/null @@ -1,232 +0,0 @@ -{ - "button": { - "comp-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.6", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.3", - "type": "spacing" - } - }, - "background": { - "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "border-radius": { - "square": { - "value": "$semantic.border.border-radius.sharp", - "type": "borderRadius" - }, - "rounded": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - } - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "border": { - "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "blue": { - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - }, - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "space-around": { - "standard": { - "value": "$core.sizing.5", - "type": "spacing" - } - }, - "icon": { - "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json deleted file mode 100644 index 5f813ded2bf..00000000000 --- a/tokens/component/checkbox.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "checkbox": { - "comp-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.6", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.3", - "type": "spacing" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "selected": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "border-radius": { - "value": "$semantic.border.border-radius.sharp", - "type": "borderRadius" - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "space-around": { - "standard": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/chip.json b/tokens/component/chip.json deleted file mode 100644 index 6d5b1bde371..00000000000 --- a/tokens/component/chip.json +++ /dev/null @@ -1,352 +0,0 @@ -{ - "chip": { - "font": { - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - }, - "solid": { - "grey": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - } - }, - "icon": { - "solid": { - "grey": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "solid": { - "grey": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "closable-icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "space-arround": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" - } - } - }, - "border": { - "clear": { - "grey": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "blue": { - "light": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - } - }, - "green": { - "light": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - } - }, - "yellow": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - } - } - }, - "comp-height": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "space-arround": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "border-width": { - "standard": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/input-time.json b/tokens/component/input-time.json deleted file mode 100644 index 9e26dfeeb6e..00000000000 --- a/tokens/component/input-time.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/tokens/component/label.json b/tokens/component/label.json deleted file mode 100644 index b658a3053ad..00000000000 --- a/tokens/component/label.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "label": { - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json deleted file mode 100644 index 427c1a3101a..00000000000 --- a/tokens/component/link.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "link": { - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "icon": { - "light": { - "value": "{semantic.ui.color.text.link.light}", - "type": "color" - }, - "dark": { - "value": "{semantic.ui.color.text.link.dark}", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/loader.json b/tokens/component/loader.json deleted file mode 100644 index 5aa7993e951..00000000000 --- a/tokens/component/loader.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "loader": { - "font": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "text": { - "value": "$semantic.font.wrap.regular.-2", - "type": "typography" - }, - "value-text": { - "sm": { - "value": "$semantic.font.wrap.regular.-2", - "type": "typography" - }, - "md": { - "value": "$semantic.font.wrap.regular.0", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.wrap.regular.2", - "type": "typography" - } - } - }, - "default": { - "comp-size": { - "sm": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.17", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.20", - "type": "sizing" - } - }, - "space-between": { - "standard": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inline": { - "comp-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "foreground": { - "indeterminate": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "determinate": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json deleted file mode 100644 index d6d4d06a075..00000000000 --- a/tokens/component/pagination.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "pagination": { - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "inactive": { - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "border-bottom": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "border": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/progress.json b/tokens/component/progress.json deleted file mode 100644 index 2d222db3415..00000000000 --- a/tokens/component/progress.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "progress": { - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "background": { - "track": { - "idle": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/radio.json b/tokens/component/radio.json deleted file mode 100644 index 8c72a63238d..00000000000 --- a/tokens/component/radio.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "radio": { - "comp-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.6", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.3", - "type": "spacing" - } - }, - "background": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "border-radius": { - "value": "$semantic.border.border-radius.pill", - "type": "borderRadius" - }, - "border-width": { - "unchecked": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "checked": { - "sm": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.3", - "type": "borderWidth" - } - } - }, - "border": { - "unchecked": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "space-around": { - "sm": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/rating.json b/tokens/component/rating.json deleted file mode 100644 index 7f38f76893b..00000000000 --- a/tokens/component/rating.json +++ /dev/null @@ -1,243 +0,0 @@ -{ - "rating": { - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "chip": { - "border-radius": { - "value": "$semantic.border.border-radius.pill", - "type": "borderRadius" - }, - "value-text": { - "font": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "count": { - "font": { - "sm": { - "value": { - "typography": "$rating.chip.value-text.font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$rating.chip.value-text.font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$rating.chip.value-text.font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - } - }, - "star": { - "comp-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "average": { - "light": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - } - } - } - }, - "star-container": { - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.5", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.2", - "type": "spacing" - } - } - }, - "average": { - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.5", - "type": "spacing" - } - }, - "chip": { - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.5", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "spacing" - } - } - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json deleted file mode 100644 index 98adcebd3e7..00000000000 --- a/tokens/component/split-button.json +++ /dev/null @@ -1,232 +0,0 @@ -{ - "split-button": { - "comp-size": { - "sm": { - "value": "$core.sizing.5", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.6", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.sizing.1", - "type": "spacing" - }, - "md": { - "value": "$core.sizing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.sizing.3", - "type": "spacing" - } - }, - "background": { - "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "border-radius": { - "square": { - "value": "$semantic.border.border-radius.sharp", - "type": "borderRadius" - }, - "rounded": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - } - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "border": { - "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "blue": { - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - }, - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "space-around": { - "standard": { - "value": "$core.sizing.5", - "type": "spacing" - } - }, - "icon": { - "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/tile.json b/tokens/component/tile.json deleted file mode 100644 index 5e8bb9219a9..00000000000 --- a/tokens/component/tile.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "tile": { - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "font": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "standard": { - "value": "$semantic.font.wrap.medium.-2", - "type": "typography" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json deleted file mode 100644 index 57a5c1e7105..00000000000 --- a/tokens/component/tooltip.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "tooltip": { - "space-around": { - "top-bottom": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "left-right": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "font": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "standard": { - "value": "$semantic.font.wrap.medium.-2", - "type": "typography" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "border-radius": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - }, - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "arrow": { - "width": { - "value": "$core.sizing.6", - "type": "sizing" - }, - "height": { - "value": "$core.sizing.2", - "type": "sizing" - } - } - } -} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json deleted file mode 100644 index f697f4387a2..00000000000 --- a/tokens/core.json +++ /dev/null @@ -1,1696 +0,0 @@ -{ - "core": { - "font": { - "font-family": { - "primary": { - "value": "Avenir Next LT Pro", - "type": "fontFamilies" - }, - "secondary": { - "value": "Avenir Next World", - "type": "fontFamilies" - }, - "code": { - "value": "Monaco", - "type": "fontFamilies" - } - }, - "font-weight": { - "ultralight": { - "value": "UltraLight", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "thin": { - "value": "Thin", - "type": "fontWeights" - }, - "light": { - "value": "Light", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "regular": { - "value": "Regular", - "type": "fontWeights" - }, - "medium": { - "value": "Medium", - "type": "fontWeights" - }, - "medium-italic": { - "value": "Medium Italic", - "type": "fontWeights" - }, - "demi": { - "value": "Demi", - "type": "fontWeights" - }, - "bold": { - "value": "Bold", - "type": "fontWeights" - }, - "extrabold": { - "value": "ExtraBold", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "black": { - "value": "Black", - "type": "fontWeights", - "description": "only for Avenir Next World (secondary font family)" - }, - "heavy": { - "value": "Heavy", - "type": "fontWeights" - } - }, - "line-height": { - "fixed": { - "0": { - "value": "12px", - "type": "lineHeights" - }, - "1": { - "value": "16px", - "type": "lineHeights" - }, - "2": { - "value": "20px", - "type": "lineHeights" - }, - "3": { - "value": "24px", - "type": "lineHeights" - }, - "4": { - "value": "28px", - "type": "lineHeights" - }, - "5": { - "value": "32px", - "type": "lineHeights" - }, - "6": { - "value": "36px", - "type": "lineHeights" - }, - "7": { - "value": "40px", - "type": "lineHeights" - }, - "8": { - "value": "48px", - "type": "lineHeights" - }, - "9": { - "value": "56px", - "type": "lineHeights" - }, - "10": { - "value": "64px", - "type": "lineHeights" - }, - "11": { - "value": "72px", - "type": "lineHeights" - }, - "12": { - "value": "80px", - "type": "lineHeights" - } - }, - "relative": { - "default": { - "value": "auto", - "type": "lineHeights", - "description": "1" - }, - "tight": { - "value": "125%", - "type": "lineHeights", - "description": "1.25" - }, - "snug": { - "value": "137.5%", - "type": "lineHeights", - "description": "1.375" - }, - "normal": { - "value": "150%", - "type": "lineHeights", - "description": "1.5" - }, - "relaxed": { - "value": "162.5%", - "type": "lineHeights", - "description": "1.625" - }, - "loose": { - "value": "200%", - "type": "lineHeights", - "description": "2" - } - } - }, - "font-size": { - "0": { - "value": "10px", - "type": "fontSizes" - }, - "1": { - "value": "12px", - "type": "fontSizes" - }, - "2": { - "value": "14px", - "type": "fontSizes" - }, - "3": { - "value": "16px", - "type": "fontSizes" - }, - "4": { - "value": "18px", - "type": "fontSizes" - }, - "5": { - "value": "20px", - "type": "fontSizes" - }, - "6": { - "value": "24px", - "type": "fontSizes" - }, - "7": { - "value": "32px", - "type": "fontSizes" - }, - "8": { - "value": "40px", - "type": "fontSizes" - }, - "9": { - "value": "48px", - "type": "fontSizes" - }, - "10": { - "value": "56px", - "type": "fontSizes" - }, - "11": { - "value": "64px", - "type": "fontSizes" - }, - "12": { - "value": "72px", - "type": "fontSizes" - }, - "13": { - "value": "80px", - "type": "fontSizes" - }, - "14": { - "value": "96px", - "type": "fontSizes" - }, - "15": { - "value": "120px", - "type": "fontSizes" - } - }, - "letter-spacing": { - "tight": { - "value": "-0.4px", - "type": "letterSpacing" - }, - "normal": { - "value": "0px", - "type": "letterSpacing" - }, - "wide": { - "value": "0.4px", - "type": "letterSpacing" - } - }, - "paragraph-spacing": { - "normal": { - "value": "10px", - "type": "paragraphSpacing" - } - }, - "text-decoration": { - "none": { - "value": "none", - "type": "textDecoration" - }, - "underline": { - "value": "underline", - "type": "textDecoration" - } - }, - "text-case": { - "none": { - "value": "none", - "type": "textCase" - }, - "uppercase": { - "value": "uppercase", - "type": "textCase" - }, - "lowercase": { - "value": "lowercase", - "type": "textCase" - }, - "capitalize": { - "value": "capitalize", - "type": "textCase" - } - } - }, - "border": { - "border-radius": { - "0": { - "value": "2px", - "type": "borderRadius" - }, - "1": { - "value": "4px", - "type": "borderRadius" - }, - "2": { - "value": "6px", - "type": "borderRadius" - }, - "3": { - "value": "8px", - "type": "borderRadius" - }, - "4": { - "value": "12px", - "type": "borderRadius" - }, - "5": { - "value": "16px", - "type": "borderRadius" - }, - "6": { - "value": "24px", - "type": "borderRadius" - }, - "none": { - "value": "0px", - "type": "borderRadius" - }, - "half": { - "value": "50%", - "type": "borderRadius" - }, - "full": { - "value": "9999px", - "type": "borderRadius" - } - }, - "border-width": { - "0": { - "value": "1px", - "type": "borderWidth" - }, - "1": { - "value": "2px", - "type": "borderWidth" - }, - "2": { - "value": "4px", - "type": "borderWidth" - }, - "3": { - "value": "6px", - "type": "borderWidth" - }, - "4": { - "value": "8px", - "type": "borderWidth" - }, - "none": { - "value": "0px", - "type": "borderWidth" - } - } - }, - "opacity": { - "0": { - "value": "0%", - "type": "opacity" - }, - "4": { - "value": "4%", - "type": "opacity" - }, - "8": { - "value": "8%", - "type": "opacity" - }, - "10": { - "value": "10%", - "type": "opacity" - }, - "20": { - "value": "20%", - "type": "opacity" - }, - "30": { - "value": "30%", - "type": "opacity" - }, - "40": { - "value": "40%", - "type": "opacity" - }, - "50": { - "value": "50%", - "type": "opacity" - }, - "60": { - "value": "60%", - "type": "opacity" - }, - "70": { - "value": "70%", - "type": "opacity" - }, - "80": { - "value": "80%", - "type": "opacity" - }, - "90": { - "value": "90%", - "type": "opacity" - }, - "92": { - "value": "92%", - "type": "opacity" - }, - "96": { - "value": "96%", - "type": "opacity" - }, - "100": { - "value": "100%", - "type": "opacity" - } - }, - "color": { - "neutral": { - "blk-000": { - "value": "#ffffff", - "type": "color" - }, - "blk-005": { - "value": "#f8f8f8", - "type": "color" - }, - "blk-010": { - "value": "#f3f3f3", - "type": "color" - }, - "blk-020": { - "value": "#eaeaea", - "type": "color" - }, - "blk-030": { - "value": "#dfdfdf", - "type": "color" - }, - "blk-040": { - "value": "#d4d4d4", - "type": "color" - }, - "blk-050": { - "value": "#cacaca", - "type": "color" - }, - "blk-060": { - "value": "#bfbfbf", - "type": "color" - }, - "blk-070": { - "value": "#b5b5b5", - "type": "color" - }, - "blk-080": { - "value": "#aaaaaa", - "type": "color" - }, - "blk-090": { - "value": "#9f9f9f", - "type": "color" - }, - "blk-100": { - "value": "#949494", - "type": "color" - }, - "blk-110": { - "value": "#8a8a8a", - "type": "color" - }, - "blk-120": { - "value": "#808080", - "type": "color" - }, - "blk-130": { - "value": "#757575", - "type": "color" - }, - "blk-140": { - "value": "#6a6a6a", - "type": "color" - }, - "blk-150": { - "value": "#606060", - "type": "color" - }, - "blk-160": { - "value": "#555555", - "type": "color" - }, - "blk-170": { - "value": "#4a4a4a", - "type": "color" - }, - "blk-180": { - "value": "#404040", - "type": "color" - }, - "blk-190": { - "value": "#353535", - "type": "color" - }, - "blk-200": { - "value": "#2b2b2b", - "type": "color" - }, - "blk-210": { - "value": "#202020", - "type": "color" - }, - "blk-220": { - "value": "#151515", - "type": "color" - }, - "blk-230": { - "value": "#0b0b0b", - "type": "color" - }, - "blk-235": { - "value": "#060606", - "type": "color" - }, - "blk-240": { - "value": "#000000", - "type": "color" - } - }, - "palette": { - "high-saturation": { - "blue": { - "h-bb-010": { - "value": "#c7eaff", - "type": "color" - }, - "h-bb-020": { - "value": "#9fd4f3", - "type": "color" - }, - "h-bb-030": { - "value": "#77bde7", - "type": "color" - }, - "h-bb-040": { - "value": "#50a7da", - "type": "color" - }, - "h-bb-050": { - "value": "#2890ce", - "type": "color" - }, - "h-bb-060": { - "value": "#007ac2", - "type": "color" - }, - "h-bb-070": { - "value": "#00619b", - "type": "color" - }, - "h-bb-080": { - "value": "#004874", - "type": "color" - }, - "h-bb-090": { - "value": "#00304d", - "type": "color" - }, - "h-bb-100": { - "value": "#001726", - "type": "color" - } - }, - "green-blue": { - "h-gb-010": { - "value": "#cef5f4", - "type": "color" - }, - "h-gb-020": { - "value": "#afedec", - "type": "color" - }, - "h-gb-030": { - "value": "#8fe6e5", - "type": "color" - }, - "h-gb-040": { - "value": "#5ae0de", - "type": "color" - }, - "h-gb-050": { - "value": "#28cecb", - "type": "color" - }, - "h-gb-060": { - "value": "#00bab5", - "type": "color" - }, - "h-gb-070": { - "value": "#009b98", - "type": "color" - }, - "h-gb-080": { - "value": "#007472", - "type": "color" - }, - "h-gb-090": { - "value": "#004d4c", - "type": "color" - }, - "h-gb-100": { - "value": "#002625", - "type": "color" - } - }, - "green": { - "h-gg-010": { - "value": "#bdf2c4", - "type": "color" - }, - "h-gg-020": { - "value": "#a2e4ab", - "type": "color" - }, - "h-gg-030": { - "value": "#87d692", - "type": "color" - }, - "h-gg-040": { - "value": "#6bc878", - "type": "color" - }, - "h-gg-050": { - "value": "#50ba5f", - "type": "color" - }, - "h-gg-060": { - "value": "#35ac46", - "type": "color" - }, - "h-gg-070": { - "value": "#288835", - "type": "color" - }, - "h-gg-080": { - "value": "#1a6324", - "type": "color" - }, - "h-gg-090": { - "value": "#0d3f14", - "type": "color" - }, - "h-gg-100": { - "value": "#001a03", - "type": "color" - } - }, - "yellow-green": { - "h-yg-010": { - "value": "#e5f7b4", - "type": "color" - }, - "h-yg-020": { - "value": "#d9ef9f", - "type": "color" - }, - "h-yg-030": { - "value": "#cde78a", - "type": "color" - }, - "h-yg-040": { - "value": "#c2e075", - "type": "color" - }, - "h-yg-050": { - "value": "#b6d860", - "type": "color" - }, - "h-yg-060": { - "value": "#aad04b", - "type": "color" - }, - "h-yg-070": { - "value": "#84a338", - "type": "color" - }, - "h-yg-080": { - "value": "#5e7526", - "type": "color" - }, - "h-yg-090": { - "value": "#384813", - "type": "color" - }, - "h-yg-100": { - "value": "#121a00", - "type": "color" - } - }, - "yellow": { - "h-yy-010": { - "value": "#fff7cc", - "type": "color" - }, - "h-yy-020": { - "value": "#fef3ad", - "type": "color" - }, - "h-yy-030": { - "value": "#fcee8d", - "type": "color" - }, - "h-yy-040": { - "value": "#fbea6e", - "type": "color" - }, - "h-yy-050": { - "value": "#f9e54e", - "type": "color" - }, - "h-yy-060": { - "value": "#edd317", - "type": "color" - }, - "h-yy-070": { - "value": "#d9bc00", - "type": "color" - }, - "h-yy-080": { - "value": "#bfa200", - "type": "color" - }, - "h-yy-090": { - "value": "#8c7500", - "type": "color" - }, - "h-yy-100": { - "value": "#5c4e00", - "type": "color" - } - }, - "orange-yellow": { - "h-oy-010": { - "value": "#ffe2bf", - "type": "color" - }, - "h-oy-020": { - "value": "#fed3a1", - "type": "color" - }, - "h-oy-030": { - "value": "#fcc582", - "type": "color" - }, - "h-oy-040": { - "value": "#fbb664", - "type": "color" - }, - "h-oy-050": { - "value": "#f9a845", - "type": "color" - }, - "h-oy-060": { - "value": "#f89927", - "type": "color" - }, - "h-oy-070": { - "value": "#c67718", - "type": "color" - }, - "h-oy-080": { - "value": "#9a5b10", - "type": "color" - }, - "h-oy-090": { - "value": "#6d3f08", - "type": "color" - }, - "h-oy-100": { - "value": "#402300", - "type": "color" - } - }, - "orange": { - "h-oo-010": { - "value": "#ffd8bf", - "type": "color" - }, - "h-oo-020": { - "value": "#fdc39f", - "type": "color" - }, - "h-oo-030": { - "value": "#faae7f", - "type": "color" - }, - "h-oo-040": { - "value": "#f89960", - "type": "color" - }, - "h-oo-050": { - "value": "#f58440", - "type": "color" - }, - "h-oo-060": { - "value": "#f36f20", - "type": "color" - }, - "h-oo-070": { - "value": "#c65a18", - "type": "color" - }, - "h-oo-080": { - "value": "#9a4410", - "type": "color" - }, - "h-oo-090": { - "value": "#6d2f08", - "type": "color" - }, - "h-oo-100": { - "value": "#401900", - "type": "color" - } - }, - "red-orange": { - "h-ro-010": { - "value": "#ffc7b3", - "type": "color" - }, - "h-ro-020": { - "value": "#f8af95", - "type": "color" - }, - "h-ro-030": { - "value": "#f09677", - "type": "color" - }, - "h-ro-040": { - "value": "#e97e5a", - "type": "color" - }, - "h-ro-050": { - "value": "#e1653c", - "type": "color" - }, - "h-ro-060": { - "value": "#da4d1e", - "type": "color" - }, - "h-ro-070": { - "value": "#ad3c16", - "type": "color" - }, - "h-ro-080": { - "value": "#802c0f", - "type": "color" - }, - "h-ro-090": { - "value": "#531b07", - "type": "color" - }, - "h-ro-100": { - "value": "#260a00", - "type": "color" - } - }, - "red": { - "h-rr-010": { - "value": "#ffc6bf", - "type": "color" - }, - "h-rr-020": { - "value": "#ffaaa1", - "type": "color" - }, - "h-rr-030": { - "value": "#f2877b", - "type": "color" - }, - "h-rr-040": { - "value": "#f07062", - "type": "color" - }, - "h-rr-050": { - "value": "#e65240", - "type": "color" - }, - "h-rr-060": { - "value": "#d83020", - "type": "color" - }, - "h-rr-070": { - "value": "#a82b1e", - "type": "color" - }, - "h-rr-080": { - "value": "#7c1d13", - "type": "color" - }, - "h-rr-090": { - "value": "#4f0e08", - "type": "color" - }, - "h-rr-100": { - "value": "#210300", - "type": "color" - } - }, - "pink": { - "h-pk-010": { - "value": "#ffd1ef", - "type": "color" - }, - "h-pk-020": { - "value": "#fabee4", - "type": "color" - }, - "h-pk-030": { - "value": "#f2a5d6", - "type": "color" - }, - "h-pk-040": { - "value": "#eb8dc9", - "type": "color" - }, - "h-pk-050": { - "value": "#e673bb", - "type": "color" - }, - "h-pk-060": { - "value": "#e04ea6", - "type": "color" - }, - "h-pk-070": { - "value": "#ba2f7e", - "type": "color" - }, - "h-pk-080": { - "value": "#851b52", - "type": "color" - }, - "h-pk-090": { - "value": "#590b32", - "type": "color" - }, - "h-pk-100": { - "value": "#260404", - "type": "color" - } - }, - "violet-red": { - "h-vr-010": { - "value": "#fadbff", - "type": "color" - }, - "h-vr-020": { - "value": "#e4beeb", - "type": "color" - }, - "h-vr-030": { - "value": "#cfa1d7", - "type": "color" - }, - "h-vr-040": { - "value": "#b983c3", - "type": "color" - }, - "h-vr-050": { - "value": "#a466af", - "type": "color" - }, - "h-vr-060": { - "value": "#8e499b", - "type": "color" - }, - "h-vr-070": { - "value": "#73377e", - "type": "color" - }, - "h-vr-080": { - "value": "#572561", - "type": "color" - }, - "h-vr-090": { - "value": "#3c1243", - "type": "color" - }, - "h-vr-100": { - "value": "#200026", - "type": "color" - } - }, - "violet": { - "h-vv-010": { - "value": "#e8d9ff", - "type": "color" - }, - "h-vv-020": { - "value": "#cdb9eb", - "type": "color" - }, - "h-vv-030": { - "value": "#b39ad7", - "type": "color" - }, - "h-vv-040": { - "value": "#987ac3", - "type": "color" - }, - "h-vv-050": { - "value": "#7e5baf", - "type": "color" - }, - "h-vv-060": { - "value": "#633b9b", - "type": "color" - }, - "h-vv-070": { - "value": "#4e2c7e", - "type": "color" - }, - "h-vv-080": { - "value": "#3a1e61", - "type": "color" - }, - "h-vv-090": { - "value": "#250f43", - "type": "color" - }, - "h-vv-100": { - "value": "#100026", - "type": "color" - } - } - }, - "vibrant": { - "blue": { - "v-bb-120": { - "value": "#59d6ff", - "type": "color" - }, - "v-bb-140": { - "value": "#3db8ff", - "type": "color" - }, - "v-bb-160": { - "value": "#009af2", - "type": "color" - }, - "v-bb-180": { - "value": "#009af2", - "type": "color" - } - }, - "green-blue": { - "v-gb-120": { - "value": "#59fffc", - "type": "color" - }, - "v-gb-140": { - "value": "#00f7f3", - "type": "color" - }, - "v-gb-160": { - "value": "#00e6e2", - "type": "color" - }, - "v-gb-180": { - "value": "#00cfca", - "type": "color" - } - }, - "green": { - "v-gg-120": { - "value": "#73ff84", - "type": "color" - }, - "v-gg-140": { - "value": "#3bed52", - "type": "color" - }, - "v-gg-160": { - "value": "#00b81b", - "type": "color" - }, - "v-gg-180": { - "value": "#00a118", - "type": "color" - } - }, - "yellow-green": { - "v-yg-120": { - "value": "#d7ff73", - "type": "color" - }, - "v-yg-140": { - "value": "#bbed3b", - "type": "color" - }, - "v-yg-160": { - "value": "#96cc00", - "type": "color" - }, - "v-yg-180": { - "value": "#7fab00", - "type": "color" - } - }, - "yellow": { - "v-yy-120": { - "value": "#fff766", - "type": "color" - }, - "v-yy-140": { - "value": "#ffee33", - "type": "color" - }, - "v-yy-160": { - "value": "#f5d000", - "type": "color" - }, - "v-yy-180": { - "value": "#ebba17", - "type": "color" - } - }, - "orange-yellow": { - "v-oy-120": { - "value": "#ffb54d", - "type": "color" - }, - "v-oy-140": { - "value": "#ff9500", - "type": "color" - }, - "v-oy-160": { - "value": "#e68600", - "type": "color" - }, - "v-oy-180": { - "value": "#d17300", - "type": "color" - } - }, - "red-orange": { - "v-ro-120": { - "value": "#ff824d", - "type": "color" - }, - "v-ro-140": { - "value": "#ff4d00", - "type": "color" - }, - "v-ro-160": { - "value": "#de4300", - "type": "color" - }, - "v-ro-180": { - "value": "#c93b00", - "type": "color" - } - }, - "red": { - "v-rr-120": { - "value": "#ff624d", - "type": "color" - }, - "v-rr-140": { - "value": "#ff0015", - "type": "color" - }, - "v-rr-160": { - "value": "#d90012", - "type": "color" - }, - "v-rr-180": { - "value": "#b3000f", - "type": "color" - } - }, - "pink": { - "v-pk-120": { - "value": "#ff66c2", - "type": "color" - }, - "v-pk-140": { - "value": "#ff19a4", - "type": "color" - }, - "v-pk-160": { - "value": "#d11486", - "type": "color" - }, - "v-pk-180": { - "value": "#c00073", - "type": "color" - } - }, - "violet-red": { - "v-vr-120": { - "value": "#ea80ff", - "type": "color" - }, - "v-vr-140": { - "value": "#dd33ff", - "type": "color" - }, - "v-vr-160": { - "value": "#ac08cc", - "type": "color" - }, - "v-vr-180": { - "value": "#83009e", - "type": "color" - } - }, - "violet": { - "v-vv-120": { - "value": "#b580ff", - "type": "color" - }, - "v-vv-140": { - "value": "#974dff", - "type": "color" - }, - "v-vv-160": { - "value": "#8129ff", - "type": "color" - }, - "v-vv-180": { - "value": "#6a0be6", - "type": "color" - } - } - }, - "dark": { - "green": { - "d-gg-410": { - "value": "#44ED51", - "type": "color" - }, - "d-gg-420": { - "value": "#36DA43", - "type": "color" - }, - "d-gg-430": { - "value": "#36DA43", - "type": "color" - } - }, - "yellow": { - "d-yy-410": { - "value": "#FFE24D", - "type": "color" - }, - "d-yy-420": { - "value": "#FFC900", - "type": "color" - }, - "d-yy-430": { - "value": "#F4B000", - "type": "color" - } - }, - "red": { - "d-rr-410": { - "value": "#FF7465", - "type": "color" - }, - "d-rr-420": { - "value": "#FE583E", - "type": "color" - }, - "d-rr-430": { - "value": "#F3381B", - "type": "color" - } - }, - "blue": { - "d-bb-410": { - "value": "#47BBFF", - "type": "color" - }, - "d-bb-420": { - "value": "#00A0FF", - "type": "color" - }, - "d-bb-430": { - "value": "#0087D7", - "type": "color" - } - } - } - } - }, - "sizing": { - "0": { - "value": "2px", - "type": "sizing" - }, - "1": { - "value": "4px", - "type": "sizing" - }, - "2": { - "value": "6px", - "type": "sizing" - }, - "3": { - "value": "8px", - "type": "sizing" - }, - "4": { - "value": "10px", - "type": "sizing" - }, - "5": { - "value": "12px", - "type": "sizing" - }, - "6": { - "value": "14px", - "type": "sizing" - }, - "7": { - "value": "16px", - "type": "sizing" - }, - "8": { - "value": "20px", - "type": "sizing" - }, - "9": { - "value": "24px", - "type": "sizing" - }, - "10": { - "value": "28px", - "type": "sizing" - }, - "11": { - "value": "32px", - "type": "sizing" - }, - "12": { - "value": "36px", - "type": "sizing" - }, - "13": { - "value": "40px", - "type": "sizing" - }, - "14": { - "value": "44px", - "type": "sizing" - }, - "15": { - "value": "48px", - "type": "sizing" - }, - "16": { - "value": "56px", - "type": "sizing" - }, - "17": { - "value": "64px", - "type": "sizing" - }, - "18": { - "value": "72px", - "type": "sizing" - }, - "19": { - "value": "80px", - "type": "sizing" - }, - "20": { - "value": "96px", - "type": "sizing" - }, - "21": { - "value": "112px", - "type": "sizing" - }, - "22": { - "value": "128px", - "type": "sizing" - }, - "23": { - "value": "144px", - "type": "sizing" - }, - "24": { - "value": "160px", - "type": "sizing" - }, - "25": { - "value": "192px", - "type": "sizing" - }, - "26": { - "value": "224px", - "type": "sizing" - }, - "27": { - "value": "256px", - "type": "sizing" - }, - "28": { - "value": "288px", - "type": "sizing" - }, - "none": { - "value": "0px", - "type": "sizing" - } - }, - "spacing": { - "0": { - "value": "2px", - "type": "spacing" - }, - "1": { - "value": "4px", - "type": "spacing" - }, - "2": { - "value": "6px", - "type": "spacing" - }, - "3": { - "value": "8px", - "type": "spacing" - }, - "4": { - "value": "10px", - "type": "spacing" - }, - "5": { - "value": "12px", - "type": "spacing" - }, - "6": { - "value": "14px", - "type": "spacing" - }, - "7": { - "value": "16px", - "type": "spacing" - }, - "8": { - "value": "20px", - "type": "spacing" - }, - "9": { - "value": "24px", - "type": "spacing" - }, - "10": { - "value": "28px", - "type": "spacing" - }, - "11": { - "value": "32px", - "type": "spacing" - }, - "12": { - "value": "36px", - "type": "spacing" - }, - "13": { - "value": "40px", - "type": "spacing" - }, - "14": { - "value": "44px", - "type": "spacing" - }, - "15": { - "value": "48px", - "type": "spacing" - }, - "16": { - "value": "56px", - "type": "spacing" - }, - "17": { - "value": "64px", - "type": "spacing" - }, - "18": { - "value": "72px", - "type": "spacing" - }, - "19": { - "value": "80px", - "type": "spacing" - }, - "20": { - "value": "96px", - "type": "spacing" - }, - "21": { - "value": "112px", - "type": "spacing" - }, - "22": { - "value": "128px", - "type": "spacing" - }, - "23": { - "value": "144px", - "type": "spacing" - }, - "24": { - "value": "160px", - "type": "spacing" - }, - "25": { - "value": "192px", - "type": "spacing" - }, - "26": { - "value": "224px", - "type": "spacing" - }, - "27": { - "value": "256px", - "type": "spacing" - }, - "28": { - "value": "288px", - "type": "spacing" - }, - "none": { - "value": "0px", - "type": "spacing" - } - }, - "breakpoint": { - "width": { - "xs": { - "value": "476px", - "type": "sizing", - "description": "min-width size" - }, - "sm": { - "value": "768px", - "type": "sizing", - "description": "min-width size" - }, - "md": { - "value": "1152px", - "type": "sizing", - "description": "min-width size" - }, - "lg": { - "value": "1440px", - "type": "sizing", - "description": "min-width size" - } - }, - "margin": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "gutter": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "content": { - "fluid": { - "value": "100%", - "type": "sizing", - "description": "for fluid grid widths" - }, - "fixed": { - "value": "1440px", - "type": "sizing", - "description": "only for lg breakpoint fixed grid width" - } - }, - "cols": { - "xs": { - "value": "6", - "type": "other", - "description": "columns" - }, - "sm": { - "value": "12", - "type": "other", - "description": "columns" - }, - "md": { - "value": "24", - "type": "other", - "description": "columns" - }, - "lg": { - "value": "24", - "type": "other", - "description": "columns" - } - } - }, - "z-index": { - "deep": { - "value": "-999999", - "type": "other" - }, - "default": { - "value": "1", - "type": "other" - }, - "sticky": { - "value": "300", - "type": "other" - }, - "header": { - "value": "400", - "type": "other" - }, - "toast": { - "value": "500", - "type": "other" - }, - "dropdown": { - "value": "600", - "type": "other" - }, - "overlay": { - "value": "700", - "type": "other" - }, - "modal": { - "value": "800", - "type": "other" - }, - "popup": { - "value": "900", - "type": "other" - } - }, - "box-shadow": { - "0": { - "value": { - "x": "0", - "y": "0", - "blur": "0", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", - "type": "dropShadow" - }, - "type": "boxShadow" - }, - "1": { - "value": [ - { - "x": "0", - "y": "2", - "blur": "8", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "4", - "blur": "16", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "2": { - "value": [ - { - "x": "0", - "y": "4", - "blur": "20", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", - "type": "dropShadow" - }, - { - "x": "0", - "y": "12", - "blur": "32", - "spread": "-2", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", - "type": "dropShadow" - } - ], - "type": "boxShadow" - }, - "none": { - "value": { - "x": "0", - "y": "0", - "blur": "0", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", - "type": "dropShadow" - }, - "type": "boxShadow" - } - } - } -} \ No newline at end of file diff --git a/tokens/brand/global.json b/tokens/global.json similarity index 100% rename from tokens/brand/global.json rename to tokens/global.json diff --git a/tokens/semantic.json b/tokens/semantic.json deleted file mode 100644 index b195cf841eb..00000000000 --- a/tokens/semantic.json +++ /dev/null @@ -1,1673 +0,0 @@ -{ - "semantic": { - "font": { - "default": { - "light": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "regular": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "medium": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "bold": { - "-3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "0h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.2", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.3", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.5", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.7", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.8", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.10", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8h": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.fixed.12", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - } - }, - "wrap": { - "light": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "regular": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.regular", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "medium": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.medium", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - }, - "bold": { - "0": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.3", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.4", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.5", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.6", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "4": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.7", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "5": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.8", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "6": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.9", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "7": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.10", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "8": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.tight", - "fontSize": "$core.font.font-size.11", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-3": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-2": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - }, - "-1": { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.demi", - "lineHeight": "$core.font.line-height.relative.snug", - "fontSize": "$core.font.font-size.2", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" - }, - "type": "typography" - } - } - }, - "hierarchy": { - "display-1": { - "value": "$semantic.font.wrap.regular.8", - "type": "typography" - }, - "display-2": { - "value": "$semantic.font.wrap.regular.7", - "type": "typography" - }, - "heading-1": { - "value": "$semantic.font.wrap.regular.6", - "type": "typography" - }, - "heading-2": { - "value": "$semantic.font.wrap.regular.5", - "type": "typography" - }, - "heading-3": { - "value": "$semantic.font.wrap.regular.4", - "type": "typography" - }, - "heading-4": { - "value": "$semantic.font.wrap.regular.3", - "type": "typography" - }, - "heading-5": { - "value": "$semantic.font.wrap.regular.2", - "type": "typography" - }, - "heading-6": { - "value": "$semantic.font.wrap.regular.1", - "type": "typography" - }, - "body-1": { - "value": "$semantic.font.wrap.regular.0", - "type": "typography" - }, - "body-2": { - "value": "$semantic.font.wrap.regular.-1", - "type": "typography" - }, - "overline": { - "value": { - "fontFamilies": "$core.font.font-family.primary", - "fontWeights": "$core.font.font-weight.bold", - "fontSizes": "$core.font.font-size.2", - "lineHeights": "$core.font.line-height.fixed.1", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textCase": "$core.font.text-case.uppercase", - "textDecoration": "$core.font.text-decoration.none", - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.bold", - "lineHeight": "$core.font.line-height.fixed.1", - "fontSize": "$core.font.font-size.2" - }, - "type": "typography" - }, - "caption": { - "value": "$semantic.font.wrap.regular.-2", - "type": "typography" - } - } - }, - "border": { - "border-radius": { - "sharp": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "round": { - "value": "$core.border.border-radius.1", - "type": "borderRadius" - }, - "circular": { - "value": "$core.border.border-radius.half", - "type": "borderRadius" - }, - "pill": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - } - } - }, - "ui": { - "border": { - "border-radius": { - "value": "$semantic.border.border-radius.sharp", - "type": "borderRadius" - } - }, - "color": { - "brand": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-160", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-060", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - } - } - }, - "background": { - "light": { - "value": "$core.color.neutral.blk-005", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-190", - "type": "color" - } - }, - "foreground": { - "1": { - "light": { - "value": "$core.color.neutral.blk-000", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-200", - "type": "color" - } - }, - "2": { - "light": { - "value": "$core.color.neutral.blk-010", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-210", - "type": "color" - } - }, - "3": { - "light": { - "value": "$core.color.neutral.blk-020", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-220", - "type": "color" - } - } - }, - "text": { - "1": { - "light": { - "value": "$core.color.neutral.blk-220", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-000", - "type": "color" - } - }, - "2": { - "light": { - "value": "$core.color.neutral.blk-170", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-060", - "type": "color" - } - }, - "3": { - "light": { - "value": "$core.color.neutral.blk-140", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-090", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$core.color.neutral.blk-000", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-220", - "type": "color" - } - }, - "link": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.blue.d-bb-420", - "type": "color" - } - } - }, - "border": { - "1": { - "light": { - "value": "$core.color.neutral.blk-050", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-160", - "type": "color" - } - }, - "2": { - "light": { - "value": "$core.color.neutral.blk-040", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-170", - "type": "color" - } - }, - "3": { - "light": { - "value": "$core.color.neutral.blk-030", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-180", - "type": "color" - } - }, - "input": { - "light": { - "value": "$core.color.neutral.blk-100", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-130", - "type": "color" - } - } - }, - "info": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.blue.d-bb-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.blue.h-bb-090", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.blue.v-bb-160", - "type": "color" - } - } - }, - "success": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.green.d-gg-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.green.v-gg-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.green.h-gg-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.green.v-gg-160", - "type": "color" - } - } - }, - "warning": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.yellow.d-yy-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.yellow.v-yy-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.yellow.h-yy-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.yellow.v-yy-160", - "type": "color" - } - } - }, - "danger": { - "default": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-060", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.dark.red.d-rr-420", - "type": "color" - } - }, - "hover": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-070", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.red.v-rr-140", - "type": "color" - } - }, - "press": { - "light": { - "value": "$core.color.palette.high-saturation.red.h-rr-080", - "type": "color" - }, - "dark": { - "value": "$core.color.palette.vibrant.red.v-rr-160", - "type": "color" - } - } - }, - "inverse": { - "light": { - "value": "$core.color.neutral.blk-190", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-005", - "type": "color" - } - } - } - } - } -} \ No newline at end of file From 5e51e7ce4c6cb994e4c2d5f80a4a130ffc412220 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 20 Jan 2023 19:58:30 +0000 Subject: [PATCH 093/696] color picker tokens --- tokens/$metadata.json | 7 +- tokens/$themes.json | 5 +- tokens/component/[template-comp-name].json | 2 +- tokens/component/color-picker.json | 169 +++++++++++++++++++++ 4 files changed, 177 insertions(+), 6 deletions(-) create mode 100644 tokens/component/color-picker.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index e52cb2b1603..996e43347a4 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -8,6 +8,7 @@ "component/avatar", "component/checkbox", "component/chip", + "component/color-picker", "component/input-message", "component/input-time", "component/label", @@ -17,12 +18,12 @@ "component/tip", "component/tooltip", "component/switch", + "component/[template-comp-name]", + "component/accordion_backup", "calcite/light", "calcite/dark", "brand/global", "brand/light", - "brand/dark", - "component/[template-comp-name]", - "component/accordion_backup" + "brand/dark" ] } \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index d96e4d807fa..d37859de601 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -199,7 +199,8 @@ "component/accordion-item": "enabled", "component/alert": "enabled", "component/accordion": "enabled", - "component/tip": "enabled" + "component/tip": "enabled", + "component/color-picker": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -725,4 +726,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] +] \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 2d95491e98f..bf4896dbc5a 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/color-picker.json b/tokens/component/color-picker.json new file mode 100644 index 00000000000..aa441373504 --- /dev/null +++ b/tokens/component/color-picker.json @@ -0,0 +1,169 @@ +{ + "color-picker": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "saved-size": { + "sm": { + "value": "$core.sizing.8", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.8", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "swatch-size": { + "sm": { + "value": "$core.sizing.8", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.8", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "channels": { + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.auto", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.auto", + "type": "spacing" + } + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From 89f2c0209792173f9d59410fa79a0638f20c53af Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 22 Jan 2023 11:42:39 +0000 Subject: [PATCH 094/696] color picker tokens --- tokens/component/color-picker.json | 52 ++++++++++++++++-------------- 1 file changed, 28 insertions(+), 24 deletions(-) diff --git a/tokens/component/color-picker.json b/tokens/component/color-picker.json index aa441373504..bdebcf1eae1 100644 --- a/tokens/component/color-picker.json +++ b/tokens/component/color-picker.json @@ -1,34 +1,24 @@ { "color-picker": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } } }, "icon": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } }, @@ -56,15 +46,15 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, @@ -126,6 +116,20 @@ } } }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, "space-around": { "sm": { "value": "$core.spacing.5", From 7dbbd95b1393a4aae32e899fd3a665268d8d578f Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 23 Jan 2023 16:54:49 +0000 Subject: [PATCH 095/696] color picker token --- tokens/calcite/dark.json | 22 ++++++++++++++++++++++ tokens/calcite/light.json | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 2ee861fca84..904e5ac28ad 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -512,6 +512,28 @@ "type": "color" } } + }, + "color-picker": { + "font": { + "label": { + "value": "$color-picker.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$color-picker.icon.dark", + "type": "color" + }, + "border": { + "value": "$color-picker.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$color-picker.background.default.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 16e4eebe7ec..87fa8f47dae 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -542,6 +542,28 @@ "type": "color" } } + }, + "color-picker": { + "font": { + "label": { + "value": "$color-picker.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$color-picker.icon.light", + "type": "color" + }, + "border": { + "value": "$color-picker.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$color-picker.background.default.light", + "type": "color" + } + } } } } From df487a06efdd3922c4b5da0c0fe6afd69f362bf9 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 24 Jan 2023 15:24:13 +0000 Subject: [PATCH 096/696] color picker tokens --- tokens/component/color-picker.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokens/component/color-picker.json b/tokens/component/color-picker.json index bdebcf1eae1..5e9e3dec1bf 100644 --- a/tokens/component/color-picker.json +++ b/tokens/component/color-picker.json @@ -107,11 +107,11 @@ "type": "spacing" }, "md": { - "value": "$core.spacing.auto", + "value": "auto", "type": "spacing" }, "lg": { - "value": "$core.spacing.auto", + "value": "auto", "type": "spacing" } } From 240a40c95e6b6e007d008a3796b09491933758ae Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 24 Jan 2023 20:08:03 +0000 Subject: [PATCH 097/696] date picker tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 3 +- tokens/component/color-picker.json | 4 +- tokens/component/date-picker.json | 199 +++++++++++++++++++++++++++++ 4 files changed, 204 insertions(+), 3 deletions(-) create mode 100644 tokens/component/date-picker.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 996e43347a4..46b91acda78 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -11,6 +11,7 @@ "component/color-picker", "component/input-message", "component/input-time", + "component/date-picker", "component/label", "component/loader", "component/radio", diff --git a/tokens/$themes.json b/tokens/$themes.json index d37859de601..8df93443729 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -200,7 +200,8 @@ "component/alert": "enabled", "component/accordion": "enabled", "component/tip": "enabled", - "component/color-picker": "enabled" + "component/color-picker": "enabled", + "component/date-picker": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/color-picker.json b/tokens/component/color-picker.json index 5e9e3dec1bf..54946927cf2 100644 --- a/tokens/component/color-picker.json +++ b/tokens/component/color-picker.json @@ -78,7 +78,7 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.8", + "value": "$core.sizing.9", "type": "sizing" }, "lg": { @@ -140,7 +140,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.7", "type": "spacing" } }, diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json new file mode 100644 index 00000000000..ee455a77ad5 --- /dev/null +++ b/tokens/component/date-picker.json @@ -0,0 +1,199 @@ +{ + "date-picker": { + "font": { + "date": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "day": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "month": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From 34086599100b37eaa744d9bacf4874a8a0d0e6a5 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 24 Jan 2023 22:19:55 +0000 Subject: [PATCH 098/696] date picker tokens --- tokens/component/date-picker.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index ee455a77ad5..6066d20b7c3 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -15,7 +15,7 @@ "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" }, "lg": { From e9b1f153be6fb69f22aef3cf842c2e9200d9a4cc Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 25 Jan 2023 22:52:19 +0000 Subject: [PATCH 099/696] date picker tokens --- tokens/component/date-picker.json | 168 ++++++++++++++++++++++-------- 1 file changed, 123 insertions(+), 45 deletions(-) diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 6066d20b7c3..3f68a943ece 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -11,7 +11,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { @@ -19,7 +19,7 @@ "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.regular.0h", "type": "typography" } }, @@ -33,37 +33,37 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.bold.-1h", "type": "typography" } }, "month": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.medium.-1h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.medium.0h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.medium.1h", "type": "typography" } } @@ -91,40 +91,40 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, @@ -134,40 +134,58 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "date": { + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } } }, "[specific-element]": { @@ -194,6 +212,66 @@ "type": "composition" } } + }, + "day": { + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + }, + "month": { + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.4", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } } } } \ No newline at end of file From 421dfe363617bb8596e448e74b43baca22729a7c Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 25 Jan 2023 22:54:23 +0000 Subject: [PATCH 100/696] date picker tokens From 7098ae119603e7299a7421be0c71a3ed6ed597c8 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 29 Jan 2023 13:32:18 +0000 Subject: [PATCH 101/696] spacing date picker tokens --- tokens/component/date-picker.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 3f68a943ece..5f0cecdaf2a 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -145,7 +145,7 @@ "date": { "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.none", "type": "spacing" }, "md": { @@ -153,7 +153,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.none", "type": "spacing" } }, @@ -168,21 +168,21 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.2", "type": "spacing" } }, "top-bottom": { "sm": { - "value": "$core.spacing.2", + "value": "$core.spacing.0", "type": "spacing" }, "md": { - "value": "$core.spacing.2", + "value": "$core.spacing.0", "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.none", "type": "spacing" } } @@ -216,7 +216,7 @@ "day": { "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.none", "type": "spacing" }, "md": { @@ -224,13 +224,13 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.none", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.7", + "value": "$core.spacing.1", "type": "spacing" }, "md": { @@ -238,7 +238,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.1", "type": "spacing" } } @@ -246,7 +246,7 @@ "month": { "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.none", "type": "spacing" }, "md": { @@ -254,13 +254,13 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.none", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.7", + "value": "$core.spacing.3", "type": "spacing" }, "md": { @@ -268,7 +268,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.4", "type": "spacing" } } From c45d4273fd881205b5d43db7d202be36936cc6b9 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 29 Jan 2023 13:43:17 +0000 Subject: [PATCH 102/696] color tokens date picker --- tokens/calcite/dark.json | 2 +- tokens/calcite/light.json | 2 +- tokens/component/date-picker.json | 22 ++++++++++++++++++++++ tokens/semantic.json | 6 +++--- 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 904e5ac28ad..84633053e5f 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -30,7 +30,7 @@ "type": "color" }, "3": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "{semantic.ui.color.foreground.current.dark}", "type": "color" } }, diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 87fa8f47dae..9e6791400db 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -30,7 +30,7 @@ "type": "color" }, "3": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "{semantic.ui.color.foreground.current.light}", "type": "color" } }, diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 5f0cecdaf2a..f18957ed56f 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -98,6 +98,28 @@ "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } + }, + "date": { + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "range": { + "light": { + "value": "$semantic.ui.color.foreground.current.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.current.dark", + "type": "color" + } + } } }, "border-radius": { diff --git a/tokens/semantic.json b/tokens/semantic.json index b195cf841eb..0c783c72a9a 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1424,13 +1424,13 @@ "type": "color" } }, - "3": { + "current": { "light": { - "value": "$core.color.neutral.blk-020", + "value": "$core.color.palette.high-saturation.blue.h-bb-010", "type": "color" }, "dark": { - "value": "$core.color.neutral.blk-220", + "value": "#214155", "type": "color" } } From 512ad2baf51efcd2f67a8972326540063bd9e4c8 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 29 Jan 2023 14:58:32 +0000 Subject: [PATCH 103/696] date picker light colors --- tokens/calcite/light.json | 44 +++++++++++++++++++++++++++++++ tokens/component/date-picker.json | 12 +++++++++ 2 files changed, 56 insertions(+) diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 9e6791400db..86449801a40 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -564,6 +564,50 @@ "type": "color" } } + }, + "date-picker": { + "font": { + "date": { + "value": "$date-picker.font.date.light", + "type": "color" + }, + "day": { + "value": "$date-picker.font.day.light", + "type": "color" + }, + "month": { + "value": "$date-picker.font.month.light", + "type": "color" + } + }, + "icon": { + "value": "$date-picker.icon.light", + "type": "color" + }, + "border": { + "value": "$date-picker.border.light", + "type": "color" + }, + "date": { + "active": { + "border": { + "value": "$date-picker.date.active.border.light", + "type": "color" + } + } + }, + "background": { + "default": { + "value": "$date-picker.background.default.light", + "type": "color" + }, + "date": { + "range": { + "value": "$date-picker.background.date.range.light", + "type": "color" + } + } + } } } } diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index f18957ed56f..369b67d41c6 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -208,6 +208,18 @@ "type": "spacing" } } + }, + "active": { + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } } }, "[specific-element]": { From 34c03e8e86080f3c71708ba519ba51fefd0d5e7f Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 29 Jan 2023 18:10:52 +0000 Subject: [PATCH 104/696] dark colors tokens date picker --- tokens/calcite/dark.json | 48 +++++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 6 +++++ 2 files changed, 54 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 84633053e5f..f36c28d54f8 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -534,6 +534,54 @@ "type": "color" } } + }, + "date-picker": { + "font": { + "date": { + "value": "$date-picker.font.date.dark", + "type": "color" + }, + "day": { + "value": "$date-picker.font.day.dark", + "type": "color" + }, + "month": { + "value": "$date-picker.font.month.dark", + "type": "color" + } + }, + "icon": { + "value": "$date-picker.icon.dark", + "type": "color" + }, + "border": { + "value": "$date-picker.border.dark", + "type": "color" + }, + "date": { + "active": { + "border": { + "value": "$date-picker.date.active.border.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "value": "$date-picker.background.default.dark", + "type": "color" + }, + "date": { + "range": { + "value": "$date-picker.background.date.range.dark", + "type": "color" + }, + "active": { + "value": "$date-picker.background.date.active.dark", + "type": "color" + } + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 86449801a40..772b18b9c00 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -605,6 +605,12 @@ "range": { "value": "$date-picker.background.date.range.light", "type": "color" + }, + "active": { + "light": { + "value": "$date-picker.background.date.active.light", + "type": "color" + } } } } From ba781452b2d3ffa383210302155ed1f536798105 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 29 Jan 2023 19:05:33 +0000 Subject: [PATCH 105/696] date picker tokens --- tokens/calcite/dark.json | 22 +++++++++++++++++++ tokens/calcite/light.json | 20 ++++++++++++++++- tokens/component/date-picker.json | 36 +++++++++++++++++++++++++++++++ 3 files changed, 77 insertions(+), 1 deletion(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index f36c28d54f8..c60b576bb0e 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -548,6 +548,18 @@ "month": { "value": "$date-picker.font.month.dark", "type": "color" + }, + "range": { + "date": { + "value": "$date-picker.font.range.date.dark", + "type": "color" + } + }, + "selected": { + "date": { + "value": "$date-picker.font.selected.date.dark", + "type": "color" + } } }, "icon": { @@ -582,6 +594,16 @@ } } } + }, + "$date-picker": { + "font": { + "active": { + "date": { + "value": "$date-picker.font.active.date.dark", + "type": "color" + } + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 772b18b9c00..56c6afd8af9 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -571,13 +571,31 @@ "value": "$date-picker.font.date.light", "type": "color" }, + "range": { + "date": { + "value": "$date-picker.font.range.date.light", + "type": "color" + } + }, "day": { - "value": "$date-picker.font.day.light", + "value": "{date-picker.font.day.light}", "type": "color" }, "month": { "value": "$date-picker.font.month.light", "type": "color" + }, + "selected": { + "date": { + "value": "$date-picker.font.selected.date.light", + "type": "color" + } + }, + "active": { + "date": { + "value": "$date-picker.font.active.date.light", + "type": "color" + } } }, "icon": { diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 369b67d41c6..a95274f5700 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -66,6 +66,42 @@ "value": "$semantic.font.default.medium.1h", "type": "typography" } + }, + "range": { + "date": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "selected": { + "date": { + "light": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + } + } + }, + "active": { + "date": { + "light": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } } }, "icon": { From 9c8f087e75f6848b547be25784b3563e5ce126e6 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 29 Jan 2023 22:03:21 +0000 Subject: [PATCH 106/696] date picker tokens --- tokens/component/date-picker.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index a95274f5700..5d6cf4be4d7 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -236,7 +236,7 @@ "type": "spacing" }, "md": { - "value": "$core.spacing.0", + "value": "$core.spacing.none", "type": "spacing" }, "lg": { From dc09e649f341afc0a9b108f7d1cd434b5d013941 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 30 Jan 2023 13:55:05 +0000 Subject: [PATCH 107/696] date picker tokens --- tokens/component/date-picker.json | 36 +++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 5d6cf4be4d7..122de315f3a 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -200,7 +200,7 @@ "type": "sizing" } }, - "date": { + "date-row": { "space-between": { "sm": { "value": "$core.spacing.none", @@ -244,7 +244,9 @@ "type": "spacing" } } - }, + } + }, + "date": { "active": { "border": { "light": { @@ -256,6 +258,36 @@ "type": "color" } } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.0", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.0", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + } } }, "[specific-element]": { From 4947e9b0bc11aaff0c8c95d5627f26399d9cd537 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 30 Jan 2023 15:59:04 +0200 Subject: [PATCH 108/696] latest --- tokens/$metadata.json | 29 +- tokens/$themes.json | 741 ++++++++- tokens/{global.json => brand/dark.json} | 0 tokens/brand/global.json | 1 + tokens/brand/light.json | 20 + tokens/calcite/dark.json | 610 +++++++ tokens/calcite/light.json | 638 ++++++++ tokens/component/[template-comp-name].json | 177 ++ tokens/component/accordion-item.json | 176 ++ tokens/component/accordion.json | 192 +++ tokens/component/accordion_backup.json | 238 +++ tokens/component/alert.json | 258 +++ tokens/component/avatar.json | 140 ++ tokens/component/checkbox.json | 110 ++ tokens/component/chip.json | 350 ++++ tokens/component/color-picker.json | 173 ++ tokens/component/date-picker.json | 349 ++++ tokens/component/dropdown.json | 177 ++ tokens/component/input-message.json | 72 + tokens/component/input-time.json | 1 + tokens/component/label.json | 26 + tokens/component/loader.json | 130 ++ tokens/component/radio.json | 124 ++ tokens/component/rating.json | 243 +++ tokens/component/select.json | 163 ++ tokens/component/switch.json | 178 ++ tokens/component/tip.json | 114 ++ tokens/component/tooltip.json | 66 + tokens/core.json | 1696 ++++++++++++++++++++ tokens/semantic.json | 1673 +++++++++++++++++++ 30 files changed, 8863 insertions(+), 2 deletions(-) rename tokens/{global.json => brand/dark.json} (100%) create mode 100644 tokens/brand/global.json create mode 100644 tokens/brand/light.json create mode 100644 tokens/calcite/dark.json create mode 100644 tokens/calcite/light.json create mode 100644 tokens/component/[template-comp-name].json create mode 100644 tokens/component/accordion-item.json create mode 100644 tokens/component/accordion.json create mode 100644 tokens/component/accordion_backup.json create mode 100644 tokens/component/alert.json create mode 100644 tokens/component/avatar.json create mode 100644 tokens/component/checkbox.json create mode 100644 tokens/component/chip.json create mode 100644 tokens/component/color-picker.json create mode 100644 tokens/component/date-picker.json create mode 100644 tokens/component/dropdown.json create mode 100644 tokens/component/input-message.json create mode 100644 tokens/component/input-time.json create mode 100644 tokens/component/label.json create mode 100644 tokens/component/loader.json create mode 100644 tokens/component/radio.json create mode 100644 tokens/component/rating.json create mode 100644 tokens/component/select.json create mode 100644 tokens/component/switch.json create mode 100644 tokens/component/tip.json create mode 100644 tokens/component/tooltip.json create mode 100644 tokens/core.json create mode 100644 tokens/semantic.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 74cad535f24..476a45001fa 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -1,5 +1,32 @@ { "tokenSetOrder": [ - "global" + "core", + "semantic", + "component/accordion-item", + "component/accordion", + "component/alert", + "component/avatar", + "component/checkbox", + "component/chip", + "component/color-picker", + "component/input-message", + "component/input-time", + "component/date-picker", + "component/label", + "component/loader", + "component/radio", + "component/rating", + "component/tip", + "component/tooltip", + "component/switch", + "component/[template-comp-name]", + "component/select", + "component/dropdown", + "component/accordion_backup", + "calcite/light", + "calcite/dark", + "brand/global", + "brand/light", + "brand/dark" ] } \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index 0637a088a01..8a953c75998 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -1 +1,740 @@ -[] \ No newline at end of file +[ + { + "id": "59a65f6d4a3657738c9d46d61315ae0b6fc6e9fd", + "name": "Brand - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/global": "enabled", + "brand/light": "enabled", + "component/dropdown": "disabled", + "component/select": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "d7056b4e805091c91b5ec1b6ce901ba3d606e7a8", + "name": "Brand - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "brand/global": "enabled", + "brand/dark": "enabled", + "component/dropdown": "disabled", + "component/select": "disabled" + }, + "$figmaStyleReferences": {} + }, + { + "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", + "name": "Calcite Headless", + "selectedTokenSets": { + "core": "enabled", + "semantic": "enabled", + "component/avatar": "enabled", + "component/checkbox": "enabled", + "component/chip": "enabled", + "component/loader": "enabled", + "component/radio": "enabled", + "component/rating": "enabled", + "component/label": "enabled", + "component/tooltip": "enabled", + "component/input-time": "enabled", + "component/[template-comp-name]": "enabled", + "component/switch": "enabled", + "component/input-message": "enabled", + "component/accordion-item": "enabled", + "component/alert": "enabled", + "component/accordion": "enabled", + "component/tip": "enabled", + "component/color-picker": "enabled", + "component/date-picker": "enabled", + "component/dropdown": "enabled", + "component/select": "enabled" + }, + "$figmaStyleReferences": { + "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", + "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", + "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", + "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", + "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", + "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", + "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", + "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", + "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", + "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", + "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", + "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", + "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", + "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", + "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", + "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", + "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", + "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", + "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", + "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", + "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", + "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", + "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", + "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", + "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", + "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", + "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", + "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", + "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", + "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", + "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", + "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", + "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", + "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", + "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", + "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", + "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", + "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", + "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", + "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", + "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", + "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", + "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", + "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", + "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", + "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", + "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", + "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", + "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", + "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", + "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", + "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", + "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", + "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", + "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", + "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", + "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", + "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", + "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", + "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", + "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", + "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", + "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", + "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", + "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", + "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", + "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", + "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", + "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", + "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", + "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", + "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", + "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", + "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", + "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", + "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", + "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", + "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", + "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", + "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", + "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", + "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", + "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", + "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", + "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", + "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", + "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", + "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", + "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", + "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", + "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", + "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", + "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", + "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", + "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", + "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", + "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", + "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", + "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", + "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", + "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", + "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", + "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", + "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", + "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", + "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", + "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", + "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", + "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", + "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", + "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", + "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", + "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", + "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", + "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", + "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", + "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", + "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", + "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", + "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", + "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", + "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", + "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", + "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", + "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", + "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", + "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", + "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", + "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", + "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", + "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", + "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", + "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", + "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", + "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", + "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", + "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", + "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", + "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", + "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", + "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", + "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", + "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", + "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", + "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", + "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", + "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", + "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", + "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", + "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", + "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", + "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", + "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", + "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", + "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", + "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", + "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", + "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", + "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", + "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", + "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", + "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", + "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", + "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", + "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", + "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", + "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", + "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", + "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", + "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", + "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", + "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", + "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", + "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", + "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", + "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", + "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", + "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", + "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", + "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", + "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", + "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", + "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", + "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", + "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", + "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", + "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", + "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", + "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", + "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", + "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", + "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", + "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", + "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", + "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", + "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", + "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", + "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", + "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", + "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", + "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", + "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", + "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", + "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", + "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", + "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", + "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", + "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", + "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", + "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", + "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", + "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", + "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", + "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", + "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", + "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", + "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", + "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", + "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", + "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", + "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", + "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", + "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", + "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", + "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", + "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", + "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", + "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", + "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", + "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", + "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", + "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", + "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", + "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", + "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", + "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", + "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", + "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", + "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", + "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", + "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", + "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", + "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", + "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", + "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", + "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", + "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", + "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", + "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", + "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", + "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", + "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", + "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", + "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", + "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", + "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", + "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", + "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", + "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", + "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", + "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", + "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", + "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", + "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", + "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", + "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", + "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", + "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", + "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", + "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", + "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", + "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", + "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", + "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", + "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", + "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", + "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", + "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", + "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", + "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", + "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", + "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", + "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", + "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", + "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", + "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", + "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", + "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", + "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", + "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", + "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", + "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", + "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", + "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", + "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", + "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", + "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", + "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", + "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", + "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", + "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", + "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", + "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", + "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", + "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", + "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", + "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", + "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", + "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", + "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", + "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", + "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", + "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", + "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", + "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", + "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", + "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", + "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", + "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", + "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", + "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", + "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", + "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", + "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", + "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", + "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", + "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", + "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", + "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", + "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", + "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", + "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", + "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", + "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", + "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", + "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", + "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", + "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", + "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", + "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", + "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", + "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", + "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", + "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", + "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", + "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", + "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", + "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", + "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", + "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", + "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", + "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", + "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", + "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", + "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", + "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", + "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", + "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", + "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", + "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", + "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", + "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", + "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", + "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", + "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", + "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", + "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", + "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", + "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", + "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", + "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", + "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", + "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", + "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", + "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", + "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", + "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", + "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", + "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", + "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", + "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", + "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", + "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", + "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", + "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", + "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", + "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", + "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", + "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", + "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", + "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", + "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", + "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", + "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", + "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", + "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", + "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", + "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", + "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", + "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", + "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", + "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", + "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", + "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", + "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", + "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", + "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", + "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", + "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", + "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", + "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", + "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", + "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", + "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", + "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", + "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", + "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", + "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", + "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", + "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", + "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", + "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", + "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", + "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", + "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", + "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", + "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", + "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", + "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", + "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", + "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", + "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", + "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", + "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", + "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", + "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", + "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", + "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", + "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", + "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", + "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", + "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", + "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", + "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", + "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", + "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", + "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", + "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", + "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", + "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", + "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", + "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", + "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", + "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", + "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", + "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", + "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", + "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", + "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", + "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", + "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", + "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", + "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", + "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", + "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", + "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", + "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", + "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", + "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", + "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", + "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", + "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", + "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", + "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", + "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", + "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", + "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", + "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", + "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", + "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", + "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", + "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", + "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", + "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", + "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", + "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", + "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", + "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", + "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", + "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", + "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", + "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", + "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", + "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", + "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", + "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", + "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", + "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", + "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", + "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", + "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", + "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", + "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", + "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", + "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", + "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", + "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", + "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", + "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", + "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", + "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", + "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", + "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", + "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", + "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", + "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", + "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", + "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", + "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", + "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "enabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/dropdown": "source", + "component/select": "source" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + } + }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/dark": "enabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/dropdown": "source", + "component/select": "source" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } + } +] \ No newline at end of file diff --git a/tokens/global.json b/tokens/brand/dark.json similarity index 100% rename from tokens/global.json rename to tokens/brand/dark.json diff --git a/tokens/brand/global.json b/tokens/brand/global.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/brand/global.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/brand/light.json b/tokens/brand/light.json new file mode 100644 index 00000000000..a55d3c5bc32 --- /dev/null +++ b/tokens/brand/light.json @@ -0,0 +1,20 @@ +{ + "core": { + "font": { + "font-size": { + "6": { + "value": "26px", + "type": "fontSizes" + } + } + } + }, + "breakpoint": { + "width": { + "lg": { + "value": "$core.breakpoint.width.lg", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json new file mode 100644 index 00000000000..c60b576bb0e --- /dev/null +++ b/tokens/calcite/dark.json @@ -0,0 +1,610 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.dark", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + }, + "3": { + "value": "{semantic.ui.color.foreground.current.dark}", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.dark", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.dark", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.dark", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.dark", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.dark", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.dark", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.dark", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.dark", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.dark", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.dark", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.dark", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.dark", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.dark", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.dark", + "type": "color" + }, + "border": { + "value": "$checkbox.border.dark", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.dark", + "type": "color" + }, + "background": { + "value": "$radio.background.dark", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.dark", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.dark", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.dark", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.dark", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.dark", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.dark", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.dark", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.dark", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.dark", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.dark", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.dark", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.dark", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.dark", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.dark", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.dark", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.dark", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.dark", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.dark", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.dark", + "type": "color" + }, + "border": { + "value": "$tooltip.border.dark", + "type": "color" + }, + "font": { + "value": "$tooltip.font.dark", + "type": "color" + } + }, + "accordion-item": { + "font": { + "heading": { + "value": "$accordion-item.font.heading.dark", + "type": "color" + }, + "description": { + "value": "$accordion-item.font.description.dark", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$accordion-item.icon.default.dark", + "type": "color" + }, + "expanded": { + "value": "$accordion-item.icon.expanded.dark", + "type": "color" + } + }, + "background": { + "value": "$accordion-item.background.default.dark", + "type": "color" + }, + "border": { + "value": "$accordion-item.border.dark", + "type": "color" + } + }, + "input-message": { + "font": { + "value": "$input-message.font.dark", + "type": "color" + }, + "icon": { + "idle": { + "value": "$input-message.icon.idle.dark", + "type": "color" + }, + "invalid": { + "value": "$input-message.icon.invalid.dark", + "type": "color" + }, + "valid": { + "value": "$input-message.icon.valid.dark", + "type": "color" + } + } + }, + "alert": { + "font": { + "title": { + "value": "$alert.font.title.dark", + "type": "color" + }, + "message": { + "value": "$alert.font.message.dark", + "type": "color" + } + }, + "background": { + "value": "$alert.background.dark", + "type": "color" + }, + "border": { + "value": "$alert.border.dark", + "type": "color" + }, + "icon": { + "blue": { + "value": "$alert.icon.blue.dark", + "type": "color" + }, + "green": { + "value": "$alert.icon.green.dark", + "type": "color" + }, + "yellow": { + "value": "$alert.icon.yellow.dark", + "type": "color" + }, + "red": { + "value": "$alert.icon.red.dark", + "type": "color" + } + }, + "highlight": { + "blue": { + "value": "$alert.icon.blue.dark", + "type": "color" + }, + "green": { + "value": "$alert.icon.green.dark", + "type": "color" + }, + "yellow": { + "value": "$alert.icon.yellow.dark", + "type": "color" + }, + "red": { + "value": "$alert.icon.red.dark", + "type": "color" + } + } + }, + "color-picker": { + "font": { + "label": { + "value": "$color-picker.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$color-picker.icon.dark", + "type": "color" + }, + "border": { + "value": "$color-picker.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$color-picker.background.default.dark", + "type": "color" + } + } + }, + "date-picker": { + "font": { + "date": { + "value": "$date-picker.font.date.dark", + "type": "color" + }, + "day": { + "value": "$date-picker.font.day.dark", + "type": "color" + }, + "month": { + "value": "$date-picker.font.month.dark", + "type": "color" + }, + "range": { + "date": { + "value": "$date-picker.font.range.date.dark", + "type": "color" + } + }, + "selected": { + "date": { + "value": "$date-picker.font.selected.date.dark", + "type": "color" + } + } + }, + "icon": { + "value": "$date-picker.icon.dark", + "type": "color" + }, + "border": { + "value": "$date-picker.border.dark", + "type": "color" + }, + "date": { + "active": { + "border": { + "value": "$date-picker.date.active.border.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "value": "$date-picker.background.default.dark", + "type": "color" + }, + "date": { + "range": { + "value": "$date-picker.background.date.range.dark", + "type": "color" + }, + "active": { + "value": "$date-picker.background.date.active.dark", + "type": "color" + } + } + } + }, + "$date-picker": { + "font": { + "active": { + "date": { + "value": "$date-picker.font.active.date.dark", + "type": "color" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json new file mode 100644 index 00000000000..56c6afd8af9 --- /dev/null +++ b/tokens/calcite/light.json @@ -0,0 +1,638 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.light", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.light", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "3": { + "value": "{semantic.ui.color.foreground.current.light}", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.light", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.light", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.light", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.light", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.light", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.light", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.light", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.light", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.light", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.light", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.light", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.light", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.light", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.light", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.light", + "type": "color" + }, + "border": { + "value": "$checkbox.border.light", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.light", + "type": "color" + }, + "background": { + "value": "$radio.background.light", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.light", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.light", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.light", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.light", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.light", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.light", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.light", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.light", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.light", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.light", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.light", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.light", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.light", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.light", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.light", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.light", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.light", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.light", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.light", + "type": "color" + }, + "border": { + "value": "$tooltip.border.light", + "type": "color" + }, + "font": { + "value": "$tooltip.font.light", + "type": "color" + } + }, + "accordion-item": { + "font": { + "heading": { + "value": "$accordion-item.font.heading.light", + "type": "color" + }, + "description": { + "value": "$accordion-item.font.description.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$accordion-item.icon.default.light", + "type": "color" + }, + "expanded": { + "value": "$accordion-item.icon.expanded.light", + "type": "color" + } + }, + "background": { + "value": "$accordion-item.background.default.light", + "type": "color" + }, + "border": { + "value": "$accordion-item.border.light", + "type": "color" + } + }, + "input-message": { + "font": { + "value": "$input-message.font.light", + "type": "color" + }, + "icon": { + "idle": { + "value": "$input-message.icon.idle.light", + "type": "color" + }, + "invalid": { + "value": "$input-message.icon.invalid.light", + "type": "color" + }, + "valid": { + "value": "$input-message.icon.valid.light", + "type": "color" + } + } + }, + "alert": { + "font": { + "title": { + "value": "$alert.font.title.light", + "type": "color" + }, + "message": { + "value": "$alert.font.message.light", + "type": "color" + } + }, + "background": { + "value": "$alert.background.light", + "type": "color" + }, + "border": { + "value": "$alert.border.light", + "type": "color" + }, + "icon": { + "blue": { + "value": "$alert.icon.blue.light", + "type": "color" + }, + "green": { + "value": "$alert.icon.green.light", + "type": "color" + }, + "yellow": { + "value": "$alert.icon.yellow.light", + "type": "color" + }, + "red": { + "value": "$alert.icon.red.light", + "type": "color" + } + }, + "highlight": { + "blue": { + "value": "$alert.highlight.blue.light", + "type": "color" + }, + "green": { + "value": "$alert.highlight.green.light", + "type": "color" + }, + "yellow": { + "value": "$alert.highlight.yellow.light", + "type": "color" + }, + "red": { + "value": "$alert.highlight.red.light", + "type": "color" + } + } + }, + "tip": { + "font": { + "heading": { + "value": "$tip.font.heading.light", + "type": "color" + }, + "description": { + "value": "$tip.font.description.light", + "type": "color" + } + }, + "icon": { + "value": "$tip.icon.light", + "type": "color" + }, + "background": { + "default": { + "light": { + "value": "$tip.background.default.light", + "type": "color" + } + } + }, + "border": { + "default": { + "value": "$tip.border.default.light", + "type": "color" + } + } + }, + "color-picker": { + "font": { + "label": { + "value": "$color-picker.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$color-picker.icon.light", + "type": "color" + }, + "border": { + "value": "$color-picker.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$color-picker.background.default.light", + "type": "color" + } + } + }, + "date-picker": { + "font": { + "date": { + "value": "$date-picker.font.date.light", + "type": "color" + }, + "range": { + "date": { + "value": "$date-picker.font.range.date.light", + "type": "color" + } + }, + "day": { + "value": "{date-picker.font.day.light}", + "type": "color" + }, + "month": { + "value": "$date-picker.font.month.light", + "type": "color" + }, + "selected": { + "date": { + "value": "$date-picker.font.selected.date.light", + "type": "color" + } + }, + "active": { + "date": { + "value": "$date-picker.font.active.date.light", + "type": "color" + } + } + }, + "icon": { + "value": "$date-picker.icon.light", + "type": "color" + }, + "border": { + "value": "$date-picker.border.light", + "type": "color" + }, + "date": { + "active": { + "border": { + "value": "$date-picker.date.active.border.light", + "type": "color" + } + } + }, + "background": { + "default": { + "value": "$date-picker.background.default.light", + "type": "color" + }, + "date": { + "range": { + "value": "$date-picker.background.date.range.light", + "type": "color" + }, + "active": { + "light": { + "value": "$date-picker.background.date.active.light", + "type": "color" + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json new file mode 100644 index 00000000000..bf4896dbc5a --- /dev/null +++ b/tokens/component/[template-comp-name].json @@ -0,0 +1,177 @@ +{ + "[comp-name]": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json new file mode 100644 index 00000000000..3e8f1edc798 --- /dev/null +++ b/tokens/component/accordion-item.json @@ -0,0 +1,176 @@ +{ + "accordion-item": { + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "descrition": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/accordion.json b/tokens/component/accordion.json new file mode 100644 index 00000000000..044f000b7c8 --- /dev/null +++ b/tokens/component/accordion.json @@ -0,0 +1,192 @@ +{ + "accordion": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/accordion_backup.json b/tokens/component/accordion_backup.json new file mode 100644 index 00000000000..5a67f8416b4 --- /dev/null +++ b/tokens/component/accordion_backup.json @@ -0,0 +1,238 @@ +{ + "accordion": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/alert.json b/tokens/component/alert.json new file mode 100644 index 00000000000..698b1e3e623 --- /dev/null +++ b/tokens/component/alert.json @@ -0,0 +1,258 @@ +{ + "alert": { + "font": { + "title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.1h", + "type": "typography" + } + }, + "message": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "icon": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "highlight": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "space-between": { + "sm": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "space-around": { + "top": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "bottom": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "left": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + } + }, + "shadow": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + } + } +} \ No newline at end of file diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json new file mode 100644 index 00000000000..5694023e615 --- /dev/null +++ b/tokens/component/avatar.json @@ -0,0 +1,140 @@ +{ + "avatar": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.red.h-rr-090", + "type": "color" + } + }, + "teal": { + "light": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.green-blue.h-gb-090", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + } + }, + "green": { + "light": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow-green.h-yg-090", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-010", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-100", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json new file mode 100644 index 00000000000..cfa42420acf --- /dev/null +++ b/tokens/component/checkbox.json @@ -0,0 +1,110 @@ +{ + "checkbox": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "selected": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "standard": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/chip.json b/tokens/component/chip.json new file mode 100644 index 00000000000..65914eb59f6 --- /dev/null +++ b/tokens/component/chip.json @@ -0,0 +1,350 @@ +{ + "chip": { + "font": { + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "solid": { + "grey": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "closable-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "space-around": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "border": { + "clear": { + "grey": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } +} \ No newline at end of file diff --git a/tokens/component/color-picker.json b/tokens/component/color-picker.json new file mode 100644 index 00000000000..54946927cf2 --- /dev/null +++ b/tokens/component/color-picker.json @@ -0,0 +1,173 @@ +{ + "color-picker": { + "font": { + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "saved-size": { + "sm": { + "value": "$core.sizing.8", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "swatch-size": { + "sm": { + "value": "$core.sizing.8", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.8", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "channels": { + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "auto", + "type": "spacing" + }, + "lg": { + "value": "auto", + "type": "spacing" + } + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json new file mode 100644 index 00000000000..5f1ce617101 --- /dev/null +++ b/tokens/component/date-picker.json @@ -0,0 +1,349 @@ +{ + "date-picker": { + "font": { + "date": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "day": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + } + }, + "month": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.1h", + "type": "typography" + } + }, + "range": { + "date": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "selected": { + "date": { + "light": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + } + } + }, + "active": { + "date": { + "light": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "date": { + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "range": { + "light": { + "value": "$semantic.ui.color.foreground.current.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.current.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "date-row": { + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.2", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.0", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + } + } + }, + "date": { + "active": { + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "day": { + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + } + }, + "month": { + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.4", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json new file mode 100644 index 00000000000..b4e2f0a5bb1 --- /dev/null +++ b/tokens/component/dropdown.json @@ -0,0 +1,177 @@ +{ + "dropdown": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json new file mode 100644 index 00000000000..3418886d3d6 --- /dev/null +++ b/tokens/component/input-message.json @@ -0,0 +1,72 @@ +{ + "input-message": { + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } + }, + "icon": { + "idle": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "valid": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-time.json b/tokens/component/input-time.json new file mode 100644 index 00000000000..9e26dfeeb6e --- /dev/null +++ b/tokens/component/input-time.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/tokens/component/label.json b/tokens/component/label.json new file mode 100644 index 00000000000..b658a3053ad --- /dev/null +++ b/tokens/component/label.json @@ -0,0 +1,26 @@ +{ + "label": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/loader.json b/tokens/component/loader.json new file mode 100644 index 00000000000..5aa7993e951 --- /dev/null +++ b/tokens/component/loader.json @@ -0,0 +1,130 @@ +{ + "loader": { + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "text": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "value-text": { + "sm": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + }, + "md": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + } + } + }, + "default": { + "comp-size": { + "sm": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.17", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.20", + "type": "sizing" + } + }, + "space-between": { + "standard": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inline": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "foreground": { + "indeterminate": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "determinate": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/radio.json b/tokens/component/radio.json new file mode 100644 index 00000000000..8c72a63238d --- /dev/null +++ b/tokens/component/radio.json @@ -0,0 +1,124 @@ +{ + "radio": { + "comp-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "spacing" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "border-width": { + "unchecked": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "checked": { + "sm": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.3", + "type": "borderWidth" + } + } + }, + "border": { + "unchecked": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/rating.json b/tokens/component/rating.json new file mode 100644 index 00000000000..c6c40e58835 --- /dev/null +++ b/tokens/component/rating.json @@ -0,0 +1,243 @@ +{ + "rating": { + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "chip": { + "border-radius": { + "value": "$semantic.border.border-radius.pill", + "type": "borderRadius" + }, + "value-text": { + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "count": { + "font": { + "sm": { + "value": { + "typography": "$rating.chip.value-text.font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$rating.chip.value-text.font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$rating.chip.value-text.font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "star": { + "comp-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "average": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } + } + }, + "star-container": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.2", + "type": "spacing" + } + } + }, + "average": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "chip": { + "space-between": { + "sm": { + "value": "$core.sizing.1", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.5", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.sizing.3", + "type": "spacing" + }, + "md": { + "value": "$core.sizing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "spacing" + } + } + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "space-arround": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/select.json b/tokens/component/select.json new file mode 100644 index 00000000000..dcd684d9821 --- /dev/null +++ b/tokens/component/select.json @@ -0,0 +1,163 @@ +{ + "select": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/switch.json b/tokens/component/switch.json new file mode 100644 index 00000000000..1bfd307ea81 --- /dev/null +++ b/tokens/component/switch.json @@ -0,0 +1,178 @@ +{ + "switch": { + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.15", + "type": "sizing" + } + }, + "handle-size": { + "sm": { + "value": "$core.sizing.5", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + } + } + }, + "handle": { + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "{core.border.border-width.1}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.border-width.1}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.border-width.1}", + "type": "borderWidth" + } + } + }, + "border-width": { + "sm": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "md": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "lg": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tip.json b/tokens/component/tip.json new file mode 100644 index 00000000000..402020b0202 --- /dev/null +++ b/tokens/component/tip.json @@ -0,0 +1,114 @@ +{ + "tip": { + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + }, + "default": { + "space-between": { + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + } + }, + "space-around": { + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + }, + "selected": { + "space-between": { + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + } + }, + "space-around": { + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + }, + "border-width": { + "md": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json new file mode 100644 index 00000000000..51d50bce707 --- /dev/null +++ b/tokens/component/tooltip.json @@ -0,0 +1,66 @@ +{ + "tooltip": { + "space-arround": { + "top-bottom": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "left-right": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "standard": { + "value": "$semantic.font.wrap.medium.-2", + "type": "typography" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "arrow": { + "width": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "height": { + "value": "$core.sizing.2", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json new file mode 100644 index 00000000000..f697f4387a2 --- /dev/null +++ b/tokens/core.json @@ -0,0 +1,1696 @@ +{ + "core": { + "font": { + "font-family": { + "primary": { + "value": "Avenir Next LT Pro", + "type": "fontFamilies" + }, + "secondary": { + "value": "Avenir Next World", + "type": "fontFamilies" + }, + "code": { + "value": "Monaco", + "type": "fontFamilies" + } + }, + "font-weight": { + "ultralight": { + "value": "UltraLight", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "thin": { + "value": "Thin", + "type": "fontWeights" + }, + "light": { + "value": "Light", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "regular": { + "value": "Regular", + "type": "fontWeights" + }, + "medium": { + "value": "Medium", + "type": "fontWeights" + }, + "medium-italic": { + "value": "Medium Italic", + "type": "fontWeights" + }, + "demi": { + "value": "Demi", + "type": "fontWeights" + }, + "bold": { + "value": "Bold", + "type": "fontWeights" + }, + "extrabold": { + "value": "ExtraBold", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "black": { + "value": "Black", + "type": "fontWeights", + "description": "only for Avenir Next World (secondary font family)" + }, + "heavy": { + "value": "Heavy", + "type": "fontWeights" + } + }, + "line-height": { + "fixed": { + "0": { + "value": "12px", + "type": "lineHeights" + }, + "1": { + "value": "16px", + "type": "lineHeights" + }, + "2": { + "value": "20px", + "type": "lineHeights" + }, + "3": { + "value": "24px", + "type": "lineHeights" + }, + "4": { + "value": "28px", + "type": "lineHeights" + }, + "5": { + "value": "32px", + "type": "lineHeights" + }, + "6": { + "value": "36px", + "type": "lineHeights" + }, + "7": { + "value": "40px", + "type": "lineHeights" + }, + "8": { + "value": "48px", + "type": "lineHeights" + }, + "9": { + "value": "56px", + "type": "lineHeights" + }, + "10": { + "value": "64px", + "type": "lineHeights" + }, + "11": { + "value": "72px", + "type": "lineHeights" + }, + "12": { + "value": "80px", + "type": "lineHeights" + } + }, + "relative": { + "default": { + "value": "auto", + "type": "lineHeights", + "description": "1" + }, + "tight": { + "value": "125%", + "type": "lineHeights", + "description": "1.25" + }, + "snug": { + "value": "137.5%", + "type": "lineHeights", + "description": "1.375" + }, + "normal": { + "value": "150%", + "type": "lineHeights", + "description": "1.5" + }, + "relaxed": { + "value": "162.5%", + "type": "lineHeights", + "description": "1.625" + }, + "loose": { + "value": "200%", + "type": "lineHeights", + "description": "2" + } + } + }, + "font-size": { + "0": { + "value": "10px", + "type": "fontSizes" + }, + "1": { + "value": "12px", + "type": "fontSizes" + }, + "2": { + "value": "14px", + "type": "fontSizes" + }, + "3": { + "value": "16px", + "type": "fontSizes" + }, + "4": { + "value": "18px", + "type": "fontSizes" + }, + "5": { + "value": "20px", + "type": "fontSizes" + }, + "6": { + "value": "24px", + "type": "fontSizes" + }, + "7": { + "value": "32px", + "type": "fontSizes" + }, + "8": { + "value": "40px", + "type": "fontSizes" + }, + "9": { + "value": "48px", + "type": "fontSizes" + }, + "10": { + "value": "56px", + "type": "fontSizes" + }, + "11": { + "value": "64px", + "type": "fontSizes" + }, + "12": { + "value": "72px", + "type": "fontSizes" + }, + "13": { + "value": "80px", + "type": "fontSizes" + }, + "14": { + "value": "96px", + "type": "fontSizes" + }, + "15": { + "value": "120px", + "type": "fontSizes" + } + }, + "letter-spacing": { + "tight": { + "value": "-0.4px", + "type": "letterSpacing" + }, + "normal": { + "value": "0px", + "type": "letterSpacing" + }, + "wide": { + "value": "0.4px", + "type": "letterSpacing" + } + }, + "paragraph-spacing": { + "normal": { + "value": "10px", + "type": "paragraphSpacing" + } + }, + "text-decoration": { + "none": { + "value": "none", + "type": "textDecoration" + }, + "underline": { + "value": "underline", + "type": "textDecoration" + } + }, + "text-case": { + "none": { + "value": "none", + "type": "textCase" + }, + "uppercase": { + "value": "uppercase", + "type": "textCase" + }, + "lowercase": { + "value": "lowercase", + "type": "textCase" + }, + "capitalize": { + "value": "capitalize", + "type": "textCase" + } + } + }, + "border": { + "border-radius": { + "0": { + "value": "2px", + "type": "borderRadius" + }, + "1": { + "value": "4px", + "type": "borderRadius" + }, + "2": { + "value": "6px", + "type": "borderRadius" + }, + "3": { + "value": "8px", + "type": "borderRadius" + }, + "4": { + "value": "12px", + "type": "borderRadius" + }, + "5": { + "value": "16px", + "type": "borderRadius" + }, + "6": { + "value": "24px", + "type": "borderRadius" + }, + "none": { + "value": "0px", + "type": "borderRadius" + }, + "half": { + "value": "50%", + "type": "borderRadius" + }, + "full": { + "value": "9999px", + "type": "borderRadius" + } + }, + "border-width": { + "0": { + "value": "1px", + "type": "borderWidth" + }, + "1": { + "value": "2px", + "type": "borderWidth" + }, + "2": { + "value": "4px", + "type": "borderWidth" + }, + "3": { + "value": "6px", + "type": "borderWidth" + }, + "4": { + "value": "8px", + "type": "borderWidth" + }, + "none": { + "value": "0px", + "type": "borderWidth" + } + } + }, + "opacity": { + "0": { + "value": "0%", + "type": "opacity" + }, + "4": { + "value": "4%", + "type": "opacity" + }, + "8": { + "value": "8%", + "type": "opacity" + }, + "10": { + "value": "10%", + "type": "opacity" + }, + "20": { + "value": "20%", + "type": "opacity" + }, + "30": { + "value": "30%", + "type": "opacity" + }, + "40": { + "value": "40%", + "type": "opacity" + }, + "50": { + "value": "50%", + "type": "opacity" + }, + "60": { + "value": "60%", + "type": "opacity" + }, + "70": { + "value": "70%", + "type": "opacity" + }, + "80": { + "value": "80%", + "type": "opacity" + }, + "90": { + "value": "90%", + "type": "opacity" + }, + "92": { + "value": "92%", + "type": "opacity" + }, + "96": { + "value": "96%", + "type": "opacity" + }, + "100": { + "value": "100%", + "type": "opacity" + } + }, + "color": { + "neutral": { + "blk-000": { + "value": "#ffffff", + "type": "color" + }, + "blk-005": { + "value": "#f8f8f8", + "type": "color" + }, + "blk-010": { + "value": "#f3f3f3", + "type": "color" + }, + "blk-020": { + "value": "#eaeaea", + "type": "color" + }, + "blk-030": { + "value": "#dfdfdf", + "type": "color" + }, + "blk-040": { + "value": "#d4d4d4", + "type": "color" + }, + "blk-050": { + "value": "#cacaca", + "type": "color" + }, + "blk-060": { + "value": "#bfbfbf", + "type": "color" + }, + "blk-070": { + "value": "#b5b5b5", + "type": "color" + }, + "blk-080": { + "value": "#aaaaaa", + "type": "color" + }, + "blk-090": { + "value": "#9f9f9f", + "type": "color" + }, + "blk-100": { + "value": "#949494", + "type": "color" + }, + "blk-110": { + "value": "#8a8a8a", + "type": "color" + }, + "blk-120": { + "value": "#808080", + "type": "color" + }, + "blk-130": { + "value": "#757575", + "type": "color" + }, + "blk-140": { + "value": "#6a6a6a", + "type": "color" + }, + "blk-150": { + "value": "#606060", + "type": "color" + }, + "blk-160": { + "value": "#555555", + "type": "color" + }, + "blk-170": { + "value": "#4a4a4a", + "type": "color" + }, + "blk-180": { + "value": "#404040", + "type": "color" + }, + "blk-190": { + "value": "#353535", + "type": "color" + }, + "blk-200": { + "value": "#2b2b2b", + "type": "color" + }, + "blk-210": { + "value": "#202020", + "type": "color" + }, + "blk-220": { + "value": "#151515", + "type": "color" + }, + "blk-230": { + "value": "#0b0b0b", + "type": "color" + }, + "blk-235": { + "value": "#060606", + "type": "color" + }, + "blk-240": { + "value": "#000000", + "type": "color" + } + }, + "palette": { + "high-saturation": { + "blue": { + "h-bb-010": { + "value": "#c7eaff", + "type": "color" + }, + "h-bb-020": { + "value": "#9fd4f3", + "type": "color" + }, + "h-bb-030": { + "value": "#77bde7", + "type": "color" + }, + "h-bb-040": { + "value": "#50a7da", + "type": "color" + }, + "h-bb-050": { + "value": "#2890ce", + "type": "color" + }, + "h-bb-060": { + "value": "#007ac2", + "type": "color" + }, + "h-bb-070": { + "value": "#00619b", + "type": "color" + }, + "h-bb-080": { + "value": "#004874", + "type": "color" + }, + "h-bb-090": { + "value": "#00304d", + "type": "color" + }, + "h-bb-100": { + "value": "#001726", + "type": "color" + } + }, + "green-blue": { + "h-gb-010": { + "value": "#cef5f4", + "type": "color" + }, + "h-gb-020": { + "value": "#afedec", + "type": "color" + }, + "h-gb-030": { + "value": "#8fe6e5", + "type": "color" + }, + "h-gb-040": { + "value": "#5ae0de", + "type": "color" + }, + "h-gb-050": { + "value": "#28cecb", + "type": "color" + }, + "h-gb-060": { + "value": "#00bab5", + "type": "color" + }, + "h-gb-070": { + "value": "#009b98", + "type": "color" + }, + "h-gb-080": { + "value": "#007472", + "type": "color" + }, + "h-gb-090": { + "value": "#004d4c", + "type": "color" + }, + "h-gb-100": { + "value": "#002625", + "type": "color" + } + }, + "green": { + "h-gg-010": { + "value": "#bdf2c4", + "type": "color" + }, + "h-gg-020": { + "value": "#a2e4ab", + "type": "color" + }, + "h-gg-030": { + "value": "#87d692", + "type": "color" + }, + "h-gg-040": { + "value": "#6bc878", + "type": "color" + }, + "h-gg-050": { + "value": "#50ba5f", + "type": "color" + }, + "h-gg-060": { + "value": "#35ac46", + "type": "color" + }, + "h-gg-070": { + "value": "#288835", + "type": "color" + }, + "h-gg-080": { + "value": "#1a6324", + "type": "color" + }, + "h-gg-090": { + "value": "#0d3f14", + "type": "color" + }, + "h-gg-100": { + "value": "#001a03", + "type": "color" + } + }, + "yellow-green": { + "h-yg-010": { + "value": "#e5f7b4", + "type": "color" + }, + "h-yg-020": { + "value": "#d9ef9f", + "type": "color" + }, + "h-yg-030": { + "value": "#cde78a", + "type": "color" + }, + "h-yg-040": { + "value": "#c2e075", + "type": "color" + }, + "h-yg-050": { + "value": "#b6d860", + "type": "color" + }, + "h-yg-060": { + "value": "#aad04b", + "type": "color" + }, + "h-yg-070": { + "value": "#84a338", + "type": "color" + }, + "h-yg-080": { + "value": "#5e7526", + "type": "color" + }, + "h-yg-090": { + "value": "#384813", + "type": "color" + }, + "h-yg-100": { + "value": "#121a00", + "type": "color" + } + }, + "yellow": { + "h-yy-010": { + "value": "#fff7cc", + "type": "color" + }, + "h-yy-020": { + "value": "#fef3ad", + "type": "color" + }, + "h-yy-030": { + "value": "#fcee8d", + "type": "color" + }, + "h-yy-040": { + "value": "#fbea6e", + "type": "color" + }, + "h-yy-050": { + "value": "#f9e54e", + "type": "color" + }, + "h-yy-060": { + "value": "#edd317", + "type": "color" + }, + "h-yy-070": { + "value": "#d9bc00", + "type": "color" + }, + "h-yy-080": { + "value": "#bfa200", + "type": "color" + }, + "h-yy-090": { + "value": "#8c7500", + "type": "color" + }, + "h-yy-100": { + "value": "#5c4e00", + "type": "color" + } + }, + "orange-yellow": { + "h-oy-010": { + "value": "#ffe2bf", + "type": "color" + }, + "h-oy-020": { + "value": "#fed3a1", + "type": "color" + }, + "h-oy-030": { + "value": "#fcc582", + "type": "color" + }, + "h-oy-040": { + "value": "#fbb664", + "type": "color" + }, + "h-oy-050": { + "value": "#f9a845", + "type": "color" + }, + "h-oy-060": { + "value": "#f89927", + "type": "color" + }, + "h-oy-070": { + "value": "#c67718", + "type": "color" + }, + "h-oy-080": { + "value": "#9a5b10", + "type": "color" + }, + "h-oy-090": { + "value": "#6d3f08", + "type": "color" + }, + "h-oy-100": { + "value": "#402300", + "type": "color" + } + }, + "orange": { + "h-oo-010": { + "value": "#ffd8bf", + "type": "color" + }, + "h-oo-020": { + "value": "#fdc39f", + "type": "color" + }, + "h-oo-030": { + "value": "#faae7f", + "type": "color" + }, + "h-oo-040": { + "value": "#f89960", + "type": "color" + }, + "h-oo-050": { + "value": "#f58440", + "type": "color" + }, + "h-oo-060": { + "value": "#f36f20", + "type": "color" + }, + "h-oo-070": { + "value": "#c65a18", + "type": "color" + }, + "h-oo-080": { + "value": "#9a4410", + "type": "color" + }, + "h-oo-090": { + "value": "#6d2f08", + "type": "color" + }, + "h-oo-100": { + "value": "#401900", + "type": "color" + } + }, + "red-orange": { + "h-ro-010": { + "value": "#ffc7b3", + "type": "color" + }, + "h-ro-020": { + "value": "#f8af95", + "type": "color" + }, + "h-ro-030": { + "value": "#f09677", + "type": "color" + }, + "h-ro-040": { + "value": "#e97e5a", + "type": "color" + }, + "h-ro-050": { + "value": "#e1653c", + "type": "color" + }, + "h-ro-060": { + "value": "#da4d1e", + "type": "color" + }, + "h-ro-070": { + "value": "#ad3c16", + "type": "color" + }, + "h-ro-080": { + "value": "#802c0f", + "type": "color" + }, + "h-ro-090": { + "value": "#531b07", + "type": "color" + }, + "h-ro-100": { + "value": "#260a00", + "type": "color" + } + }, + "red": { + "h-rr-010": { + "value": "#ffc6bf", + "type": "color" + }, + "h-rr-020": { + "value": "#ffaaa1", + "type": "color" + }, + "h-rr-030": { + "value": "#f2877b", + "type": "color" + }, + "h-rr-040": { + "value": "#f07062", + "type": "color" + }, + "h-rr-050": { + "value": "#e65240", + "type": "color" + }, + "h-rr-060": { + "value": "#d83020", + "type": "color" + }, + "h-rr-070": { + "value": "#a82b1e", + "type": "color" + }, + "h-rr-080": { + "value": "#7c1d13", + "type": "color" + }, + "h-rr-090": { + "value": "#4f0e08", + "type": "color" + }, + "h-rr-100": { + "value": "#210300", + "type": "color" + } + }, + "pink": { + "h-pk-010": { + "value": "#ffd1ef", + "type": "color" + }, + "h-pk-020": { + "value": "#fabee4", + "type": "color" + }, + "h-pk-030": { + "value": "#f2a5d6", + "type": "color" + }, + "h-pk-040": { + "value": "#eb8dc9", + "type": "color" + }, + "h-pk-050": { + "value": "#e673bb", + "type": "color" + }, + "h-pk-060": { + "value": "#e04ea6", + "type": "color" + }, + "h-pk-070": { + "value": "#ba2f7e", + "type": "color" + }, + "h-pk-080": { + "value": "#851b52", + "type": "color" + }, + "h-pk-090": { + "value": "#590b32", + "type": "color" + }, + "h-pk-100": { + "value": "#260404", + "type": "color" + } + }, + "violet-red": { + "h-vr-010": { + "value": "#fadbff", + "type": "color" + }, + "h-vr-020": { + "value": "#e4beeb", + "type": "color" + }, + "h-vr-030": { + "value": "#cfa1d7", + "type": "color" + }, + "h-vr-040": { + "value": "#b983c3", + "type": "color" + }, + "h-vr-050": { + "value": "#a466af", + "type": "color" + }, + "h-vr-060": { + "value": "#8e499b", + "type": "color" + }, + "h-vr-070": { + "value": "#73377e", + "type": "color" + }, + "h-vr-080": { + "value": "#572561", + "type": "color" + }, + "h-vr-090": { + "value": "#3c1243", + "type": "color" + }, + "h-vr-100": { + "value": "#200026", + "type": "color" + } + }, + "violet": { + "h-vv-010": { + "value": "#e8d9ff", + "type": "color" + }, + "h-vv-020": { + "value": "#cdb9eb", + "type": "color" + }, + "h-vv-030": { + "value": "#b39ad7", + "type": "color" + }, + "h-vv-040": { + "value": "#987ac3", + "type": "color" + }, + "h-vv-050": { + "value": "#7e5baf", + "type": "color" + }, + "h-vv-060": { + "value": "#633b9b", + "type": "color" + }, + "h-vv-070": { + "value": "#4e2c7e", + "type": "color" + }, + "h-vv-080": { + "value": "#3a1e61", + "type": "color" + }, + "h-vv-090": { + "value": "#250f43", + "type": "color" + }, + "h-vv-100": { + "value": "#100026", + "type": "color" + } + } + }, + "vibrant": { + "blue": { + "v-bb-120": { + "value": "#59d6ff", + "type": "color" + }, + "v-bb-140": { + "value": "#3db8ff", + "type": "color" + }, + "v-bb-160": { + "value": "#009af2", + "type": "color" + }, + "v-bb-180": { + "value": "#009af2", + "type": "color" + } + }, + "green-blue": { + "v-gb-120": { + "value": "#59fffc", + "type": "color" + }, + "v-gb-140": { + "value": "#00f7f3", + "type": "color" + }, + "v-gb-160": { + "value": "#00e6e2", + "type": "color" + }, + "v-gb-180": { + "value": "#00cfca", + "type": "color" + } + }, + "green": { + "v-gg-120": { + "value": "#73ff84", + "type": "color" + }, + "v-gg-140": { + "value": "#3bed52", + "type": "color" + }, + "v-gg-160": { + "value": "#00b81b", + "type": "color" + }, + "v-gg-180": { + "value": "#00a118", + "type": "color" + } + }, + "yellow-green": { + "v-yg-120": { + "value": "#d7ff73", + "type": "color" + }, + "v-yg-140": { + "value": "#bbed3b", + "type": "color" + }, + "v-yg-160": { + "value": "#96cc00", + "type": "color" + }, + "v-yg-180": { + "value": "#7fab00", + "type": "color" + } + }, + "yellow": { + "v-yy-120": { + "value": "#fff766", + "type": "color" + }, + "v-yy-140": { + "value": "#ffee33", + "type": "color" + }, + "v-yy-160": { + "value": "#f5d000", + "type": "color" + }, + "v-yy-180": { + "value": "#ebba17", + "type": "color" + } + }, + "orange-yellow": { + "v-oy-120": { + "value": "#ffb54d", + "type": "color" + }, + "v-oy-140": { + "value": "#ff9500", + "type": "color" + }, + "v-oy-160": { + "value": "#e68600", + "type": "color" + }, + "v-oy-180": { + "value": "#d17300", + "type": "color" + } + }, + "red-orange": { + "v-ro-120": { + "value": "#ff824d", + "type": "color" + }, + "v-ro-140": { + "value": "#ff4d00", + "type": "color" + }, + "v-ro-160": { + "value": "#de4300", + "type": "color" + }, + "v-ro-180": { + "value": "#c93b00", + "type": "color" + } + }, + "red": { + "v-rr-120": { + "value": "#ff624d", + "type": "color" + }, + "v-rr-140": { + "value": "#ff0015", + "type": "color" + }, + "v-rr-160": { + "value": "#d90012", + "type": "color" + }, + "v-rr-180": { + "value": "#b3000f", + "type": "color" + } + }, + "pink": { + "v-pk-120": { + "value": "#ff66c2", + "type": "color" + }, + "v-pk-140": { + "value": "#ff19a4", + "type": "color" + }, + "v-pk-160": { + "value": "#d11486", + "type": "color" + }, + "v-pk-180": { + "value": "#c00073", + "type": "color" + } + }, + "violet-red": { + "v-vr-120": { + "value": "#ea80ff", + "type": "color" + }, + "v-vr-140": { + "value": "#dd33ff", + "type": "color" + }, + "v-vr-160": { + "value": "#ac08cc", + "type": "color" + }, + "v-vr-180": { + "value": "#83009e", + "type": "color" + } + }, + "violet": { + "v-vv-120": { + "value": "#b580ff", + "type": "color" + }, + "v-vv-140": { + "value": "#974dff", + "type": "color" + }, + "v-vv-160": { + "value": "#8129ff", + "type": "color" + }, + "v-vv-180": { + "value": "#6a0be6", + "type": "color" + } + } + }, + "dark": { + "green": { + "d-gg-410": { + "value": "#44ED51", + "type": "color" + }, + "d-gg-420": { + "value": "#36DA43", + "type": "color" + }, + "d-gg-430": { + "value": "#36DA43", + "type": "color" + } + }, + "yellow": { + "d-yy-410": { + "value": "#FFE24D", + "type": "color" + }, + "d-yy-420": { + "value": "#FFC900", + "type": "color" + }, + "d-yy-430": { + "value": "#F4B000", + "type": "color" + } + }, + "red": { + "d-rr-410": { + "value": "#FF7465", + "type": "color" + }, + "d-rr-420": { + "value": "#FE583E", + "type": "color" + }, + "d-rr-430": { + "value": "#F3381B", + "type": "color" + } + }, + "blue": { + "d-bb-410": { + "value": "#47BBFF", + "type": "color" + }, + "d-bb-420": { + "value": "#00A0FF", + "type": "color" + }, + "d-bb-430": { + "value": "#0087D7", + "type": "color" + } + } + } + } + }, + "sizing": { + "0": { + "value": "2px", + "type": "sizing" + }, + "1": { + "value": "4px", + "type": "sizing" + }, + "2": { + "value": "6px", + "type": "sizing" + }, + "3": { + "value": "8px", + "type": "sizing" + }, + "4": { + "value": "10px", + "type": "sizing" + }, + "5": { + "value": "12px", + "type": "sizing" + }, + "6": { + "value": "14px", + "type": "sizing" + }, + "7": { + "value": "16px", + "type": "sizing" + }, + "8": { + "value": "20px", + "type": "sizing" + }, + "9": { + "value": "24px", + "type": "sizing" + }, + "10": { + "value": "28px", + "type": "sizing" + }, + "11": { + "value": "32px", + "type": "sizing" + }, + "12": { + "value": "36px", + "type": "sizing" + }, + "13": { + "value": "40px", + "type": "sizing" + }, + "14": { + "value": "44px", + "type": "sizing" + }, + "15": { + "value": "48px", + "type": "sizing" + }, + "16": { + "value": "56px", + "type": "sizing" + }, + "17": { + "value": "64px", + "type": "sizing" + }, + "18": { + "value": "72px", + "type": "sizing" + }, + "19": { + "value": "80px", + "type": "sizing" + }, + "20": { + "value": "96px", + "type": "sizing" + }, + "21": { + "value": "112px", + "type": "sizing" + }, + "22": { + "value": "128px", + "type": "sizing" + }, + "23": { + "value": "144px", + "type": "sizing" + }, + "24": { + "value": "160px", + "type": "sizing" + }, + "25": { + "value": "192px", + "type": "sizing" + }, + "26": { + "value": "224px", + "type": "sizing" + }, + "27": { + "value": "256px", + "type": "sizing" + }, + "28": { + "value": "288px", + "type": "sizing" + }, + "none": { + "value": "0px", + "type": "sizing" + } + }, + "spacing": { + "0": { + "value": "2px", + "type": "spacing" + }, + "1": { + "value": "4px", + "type": "spacing" + }, + "2": { + "value": "6px", + "type": "spacing" + }, + "3": { + "value": "8px", + "type": "spacing" + }, + "4": { + "value": "10px", + "type": "spacing" + }, + "5": { + "value": "12px", + "type": "spacing" + }, + "6": { + "value": "14px", + "type": "spacing" + }, + "7": { + "value": "16px", + "type": "spacing" + }, + "8": { + "value": "20px", + "type": "spacing" + }, + "9": { + "value": "24px", + "type": "spacing" + }, + "10": { + "value": "28px", + "type": "spacing" + }, + "11": { + "value": "32px", + "type": "spacing" + }, + "12": { + "value": "36px", + "type": "spacing" + }, + "13": { + "value": "40px", + "type": "spacing" + }, + "14": { + "value": "44px", + "type": "spacing" + }, + "15": { + "value": "48px", + "type": "spacing" + }, + "16": { + "value": "56px", + "type": "spacing" + }, + "17": { + "value": "64px", + "type": "spacing" + }, + "18": { + "value": "72px", + "type": "spacing" + }, + "19": { + "value": "80px", + "type": "spacing" + }, + "20": { + "value": "96px", + "type": "spacing" + }, + "21": { + "value": "112px", + "type": "spacing" + }, + "22": { + "value": "128px", + "type": "spacing" + }, + "23": { + "value": "144px", + "type": "spacing" + }, + "24": { + "value": "160px", + "type": "spacing" + }, + "25": { + "value": "192px", + "type": "spacing" + }, + "26": { + "value": "224px", + "type": "spacing" + }, + "27": { + "value": "256px", + "type": "spacing" + }, + "28": { + "value": "288px", + "type": "spacing" + }, + "none": { + "value": "0px", + "type": "spacing" + } + }, + "breakpoint": { + "width": { + "xs": { + "value": "476px", + "type": "sizing", + "description": "min-width size" + }, + "sm": { + "value": "768px", + "type": "sizing", + "description": "min-width size" + }, + "md": { + "value": "1152px", + "type": "sizing", + "description": "min-width size" + }, + "lg": { + "value": "1440px", + "type": "sizing", + "description": "min-width size" + } + }, + "margin": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "gutter": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "content": { + "fluid": { + "value": "100%", + "type": "sizing", + "description": "for fluid grid widths" + }, + "fixed": { + "value": "1440px", + "type": "sizing", + "description": "only for lg breakpoint fixed grid width" + } + }, + "cols": { + "xs": { + "value": "6", + "type": "other", + "description": "columns" + }, + "sm": { + "value": "12", + "type": "other", + "description": "columns" + }, + "md": { + "value": "24", + "type": "other", + "description": "columns" + }, + "lg": { + "value": "24", + "type": "other", + "description": "columns" + } + } + }, + "z-index": { + "deep": { + "value": "-999999", + "type": "other" + }, + "default": { + "value": "1", + "type": "other" + }, + "sticky": { + "value": "300", + "type": "other" + }, + "header": { + "value": "400", + "type": "other" + }, + "toast": { + "value": "500", + "type": "other" + }, + "dropdown": { + "value": "600", + "type": "other" + }, + "overlay": { + "value": "700", + "type": "other" + }, + "modal": { + "value": "800", + "type": "other" + }, + "popup": { + "value": "900", + "type": "other" + } + }, + "box-shadow": { + "0": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + }, + "1": { + "value": [ + { + "x": "0", + "y": "2", + "blur": "8", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "4", + "blur": "16", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "2": { + "value": [ + { + "x": "0", + "y": "4", + "blur": "20", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "12", + "blur": "32", + "spread": "-2", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.10)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }, + "none": { + "value": { + "x": "0", + "y": "0", + "blur": "0", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + "type": "dropShadow" + }, + "type": "boxShadow" + } + } + } +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json new file mode 100644 index 00000000000..0c783c72a9a --- /dev/null +++ b/tokens/semantic.json @@ -0,0 +1,1673 @@ +{ + "semantic": { + "font": { + "default": { + "light": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "-3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "0h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.2", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.3", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.5", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.7", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.8", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.10", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8h": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.fixed.12", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "wrap": { + "light": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "regular": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.regular", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "medium": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.medium", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + }, + "bold": { + "0": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.3", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.4", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.5", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.6", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "4": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.7", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "5": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.8", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "6": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.9", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "7": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.10", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "8": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.tight", + "fontSize": "$core.font.font-size.11", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-3": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-2": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }, + "-1": { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.demi", + "lineHeight": "$core.font.line-height.relative.snug", + "fontSize": "$core.font.font-size.2", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + } + } + }, + "hierarchy": { + "display-1": { + "value": "$semantic.font.wrap.regular.8", + "type": "typography" + }, + "display-2": { + "value": "$semantic.font.wrap.regular.7", + "type": "typography" + }, + "heading-1": { + "value": "$semantic.font.wrap.regular.6", + "type": "typography" + }, + "heading-2": { + "value": "$semantic.font.wrap.regular.5", + "type": "typography" + }, + "heading-3": { + "value": "$semantic.font.wrap.regular.4", + "type": "typography" + }, + "heading-4": { + "value": "$semantic.font.wrap.regular.3", + "type": "typography" + }, + "heading-5": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + }, + "heading-6": { + "value": "$semantic.font.wrap.regular.1", + "type": "typography" + }, + "body-1": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + }, + "body-2": { + "value": "$semantic.font.wrap.regular.-1", + "type": "typography" + }, + "overline": { + "value": { + "fontFamilies": "$core.font.font-family.primary", + "fontWeights": "$core.font.font-weight.bold", + "fontSizes": "$core.font.font-size.2", + "lineHeights": "$core.font.line-height.fixed.1", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textCase": "$core.font.text-case.uppercase", + "textDecoration": "$core.font.text-decoration.none", + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.bold", + "lineHeight": "$core.font.line-height.fixed.1", + "fontSize": "$core.font.font-size.2" + }, + "type": "typography" + }, + "caption": { + "value": "$semantic.font.wrap.regular.-2", + "type": "typography" + } + } + }, + "border": { + "border-radius": { + "sharp": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "round": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "circular": { + "value": "$core.border.border-radius.half", + "type": "borderRadius" + }, + "pill": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } + } + }, + "ui": { + "border": { + "border-radius": { + "value": "$semantic.border.border-radius.sharp", + "type": "borderRadius" + } + }, + "color": { + "brand": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-060", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$core.color.neutral.blk-005", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-190", + "type": "color" + } + }, + "foreground": { + "1": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-200", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-010", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-210", + "type": "color" + } + }, + "current": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-010", + "type": "color" + }, + "dark": { + "value": "#214155", + "type": "color" + } + } + }, + "text": { + "1": { + "light": { + "value": "$core.color.neutral.blk-220", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-000", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-170", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-060", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-140", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-090", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-000", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + }, + "link": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + } + }, + "border": { + "1": { + "light": { + "value": "$core.color.neutral.blk-050", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-160", + "type": "color" + } + }, + "2": { + "light": { + "value": "$core.color.neutral.blk-040", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-170", + "type": "color" + } + }, + "3": { + "light": { + "value": "$core.color.neutral.blk-030", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-180", + "type": "color" + } + }, + "input": { + "light": { + "value": "$core.color.neutral.blk-100", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-130", + "type": "color" + } + } + }, + "info": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.blue.d-bb-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.blue.h-bb-090", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.blue.v-bb-160", + "type": "color" + } + } + }, + "success": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.green.d-gg-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.green.h-gg-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.green.v-gg-160", + "type": "color" + } + } + }, + "warning": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.yellow.d-yy-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.yellow.h-yy-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.yellow.v-yy-160", + "type": "color" + } + } + }, + "danger": { + "default": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-060", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.dark.red.d-rr-420", + "type": "color" + } + }, + "hover": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-070", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-140", + "type": "color" + } + }, + "press": { + "light": { + "value": "$core.color.palette.high-saturation.red.h-rr-080", + "type": "color" + }, + "dark": { + "value": "$core.color.palette.vibrant.red.v-rr-160", + "type": "color" + } + } + }, + "inverse": { + "light": { + "value": "$core.color.neutral.blk-190", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-005", + "type": "color" + } + } + } + } + } +} \ No newline at end of file From 0172d2371c1b680e9fe0bcf39e12244ca5427843 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 30 Jan 2023 18:55:31 +0200 Subject: [PATCH 109/696] Latest token updates --- tokens/$metadata.json | 4 ++-- tokens/$themes.json | 8 ++------ tokens/component/select.json | 10 ---------- 3 files changed, 4 insertions(+), 18 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 476a45001fa..032fa518c11 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -12,16 +12,16 @@ "component/input-message", "component/input-time", "component/date-picker", + "component/dropdown", "component/label", "component/loader", "component/radio", "component/rating", + "component/select", "component/tip", "component/tooltip", "component/switch", "component/[template-comp-name]", - "component/select", - "component/dropdown", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/$themes.json b/tokens/$themes.json index 8a953c75998..d8310b89852 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,9 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/dropdown": "disabled", - "component/select": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -19,9 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/dropdown": "disabled", - "component/select": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, diff --git a/tokens/component/select.json b/tokens/component/select.json index dcd684d9821..1ac3c15ea67 100644 --- a/tokens/component/select.json +++ b/tokens/component/select.json @@ -22,16 +22,6 @@ "type": "typography" } }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, "border": { "light": { "value": "$semantic.ui.color.border.1.light", From 780ccbde2aa18456e2edd09eb451d8e70b0d6b3f Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 30 Jan 2023 17:22:48 +0000 Subject: [PATCH 110/696] input date picker token set --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/component/input-date-picker.json | 177 ++++++++++++++++++++++++ 3 files changed, 188 insertions(+), 5 deletions(-) create mode 100644 tokens/component/input-date-picker.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 46b91acda78..cbdf7c5ba87 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -9,6 +9,7 @@ "component/checkbox", "component/chip", "component/color-picker", + "component/input-date-picker", "component/input-message", "component/input-time", "component/date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index 8df93443729..0995acf4f20 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/input-date-picker": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/input-date-picker": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-date-picker": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-date-picker": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -201,7 +205,8 @@ "component/accordion": "enabled", "component/tip": "enabled", "component/color-picker": "enabled", - "component/date-picker": "enabled" + "component/date-picker": "enabled", + "component/input-date-picker": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json new file mode 100644 index 00000000000..3a81f56ceb0 --- /dev/null +++ b/tokens/component/input-date-picker.json @@ -0,0 +1,177 @@ +{ + "input-date-picker": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From f11650a16bf99eeee172b60e8109244c802359a4 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 30 Jan 2023 20:04:50 +0200 Subject: [PATCH 111/696] Latest token update --- tokens/component/dropdown.json | 25 ------------------------- tokens/component/select.json | 25 ------------------------- 2 files changed, 50 deletions(-) diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index b4e2f0a5bb1..86bc4163498 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -147,31 +147,6 @@ "value": "$core.spacing.11", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } \ No newline at end of file diff --git a/tokens/component/select.json b/tokens/component/select.json index 1ac3c15ea67..c20000628f3 100644 --- a/tokens/component/select.json +++ b/tokens/component/select.json @@ -123,31 +123,6 @@ "value": "$core.spacing.11", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } \ No newline at end of file From f7d0617b7d5a2b74440dabe3ab25293d34a15c10 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 30 Jan 2023 10:24:02 -0800 Subject: [PATCH 112/696] fix(actions): remove buggy workflows --- .github/workflows/design-tokens-automerge.yml | 19 ----- .github/workflows/design-tokens-pr.yml | 61 ------------- .github/workflows/design-tokens-sync.yml | 85 ------------------- 3 files changed, 165 deletions(-) delete mode 100644 .github/workflows/design-tokens-automerge.yml delete mode 100644 .github/workflows/design-tokens-pr.yml delete mode 100644 .github/workflows/design-tokens-sync.yml diff --git a/.github/workflows/design-tokens-automerge.yml b/.github/workflows/design-tokens-automerge.yml deleted file mode 100644 index bb0517891c9..00000000000 --- a/.github/workflows/design-tokens-automerge.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: automerge -on: - workflow_run: - workflows: [Sync Designer Branches] - types: - - completed -jobs: - automerge: - runs-on: ubuntu-latest - steps: - - id: automerge - name: automerge - uses: "pascalgn/automerge-action@v0.15.5" - env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - MERGE_LABELS: "automated-tokens-pr" - MERGE_METHOD: "squash" - MERGE_COMMIT_MESSAGE: "chore(automatic): auto-merge from ${{github.base_ref}}" - MERGE_REQUIRED_APPROVALS: "0" diff --git a/.github/workflows/design-tokens-pr.yml b/.github/workflows/design-tokens-pr.yml deleted file mode 100644 index 41837160a99..00000000000 --- a/.github/workflows/design-tokens-pr.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: Automate PR for Designers Action -on: - push: - branches: - - designer/* - -jobs: - create-pull-request: - runs-on: ubuntu-latest - steps: - - name: Get the branch name - id: git-branch-name - uses: EthanSK/git-branch-name-action@v1 - - - name: Check if PR exists - id: check - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - prs=$(gh pr list \ - --repo "$GITHUB_REPOSITORY" \ - --json baseRefName,headRefName \ - --jq ' - map(select(.baseRefName == "main" and .headRefName == ${GIT_BRANCH_NAME})) - | length - ') - if ((prs > 0)); then - echo "skip=true" >> "$GITHUB_OUTPUT" - fi - - - name: Create pull request (if it doesn't already exist) - if: '!$GITHUB_OUTPUT' - uses: actions/github-script@v6 - with: - script: | - const owner = github.event.pull_request.head.repo.owner.login; - const repo = github.event.pull_request.head.repo - const result = await github.rest.pulls.create({ - title: 'feature(tokens): Autogenerated Design Token Updates', - owner, - repo, - head: '${{ github.ref_name }}', - base: 'main', - body: [ - 'Updates from: ${{ owner }}', - 'auto-generated: FigmaTokens PR', - '', - ].join('\n') - }); - - const labels = updatedIssueInformation.data.labels.map(label => label.name); - if(!labels.includes('automated pr')) { - labels.push('automated pr') - } - - await github.rest.issues.addLabels({ - owner, - repo, - issue_number: result.data.number, - labels - }); diff --git a/.github/workflows/design-tokens-sync.yml b/.github/workflows/design-tokens-sync.yml deleted file mode 100644 index 571107daa31..00000000000 --- a/.github/workflows/design-tokens-sync.yml +++ /dev/null @@ -1,85 +0,0 @@ -name: Sync designer branches with main -on: - pull_request: - branches: [main] - types: [closed] - -jobs: - update-designer-branches: - runs-on: ubuntu-latest - if: github.event.pull_request.merged == true - timeout-minutes: 2 - steps: - - name: Get Designer Branches - uses: actions/github-script@v6 - with: - script: | - const owner = github.event.pull_request.head.repo.owner.login; - const repo = github.event.pull_request.head.repo - const branches = await github.rest.repos.listBranches({ owner, repo }); - const designerBranches = branches.filter((b) => { - return b.name.includes('designer/') - }); - core.exportVariable("GIT_DESIGNER_BRANCHES", designerBranches); - - - name: Check if PR exists - id: check - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - for branch in "${GIT_DESIGNER_BRANCHES[@]}" - do - echo "[$branch]" - prs=$(gh pr list \ - --repo "$GITHUB_REPOSITORY" \ - --json baseRefName,headRefName \ - --jq ' - map(select(.baseRefName == "main" and .headRefName == ${branch})) - | length - ') - if ((prs > 0)); then - echo ${GIT_DESIGNER_BRANCHES[@]/$branch} - fi - done; - - name: Create Pull Requests - uses: actions/github-script@v6 - if: "${#GIT_DESIGNER_BRANCHES[@]}" -gt "0" - env: - MERGE_LABELS: 'automated-tokens-pr' - with: - script: | - const owner = github.event.pull_request.head.repo.owner.login; - const repo = github.event.pull_request.head.repo - const designerBranches = process.env.GIT_DESIGNER_BRANCHES; - - for (const branch of designerBranches) { - const newPR = await github.rest.pulls.create({ - title: 'chore(auto-merge): ${{ github.ref_name }} from main', - owner, - repo, - head: '${{ github.ref_name }}', - base: 'main', - body: [ - 'auto-generated: FigmaTokens PR', - '', - ].join('\n') - }); - - const updatedIssueInformation = await github.rest.issues({ - owner, - repo, - issue_number: newPR.issue_number - }); - - const labels = updatedIssueInformation.data.labels.map(label => label.name); - if(!labels.includes($MERGE_LABELS)) { - labels.push($MERGE_LABELS) - } - - await github.rest.issues.update({ - owner, - repo, - issue_number: newPR.issue_number, - labels, - }); - } From 43a621d2edcf57d003d2be6dd7e558d88462acd8 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 30 Jan 2023 20:47:55 +0200 Subject: [PATCH 113/696] Latest From 3143e476dd759992b2f1e41d6a4cc7988cf22126 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 30 Jan 2023 21:08:26 +0200 Subject: [PATCH 114/696] Update to the latest tokens --- tokens/$metadata.json | 9 +- tokens/$themes.json | 161 +-------------------- tokens/calcite/dark.json | 2 +- tokens/calcite/light.json | 2 +- tokens/component/[template-comp-name].json | 2 +- 5 files changed, 6 insertions(+), 170 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 2b042d9b1ca..032fa518c11 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -5,9 +5,6 @@ "component/accordion-item", "component/accordion", "component/alert", - "component/accordion-item", - "component/accordion", - "component/alert", "component/avatar", "component/checkbox", "component/chip", @@ -30,8 +27,6 @@ "calcite/dark", "brand/global", "brand/light", - "brand/dark", - "component/[template-comp-name]", - "component/accordion_backup" + "brand/dark" ] -} +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index aa674695e3d..d8310b89852 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -7,7 +7,6 @@ "semantic": "source", "brand/global": "enabled", "brand/light": "enabled" - "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -19,167 +18,9 @@ "semantic": "source", "brand/global": "enabled", "brand/dark": "enabled" - "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "calcite/dark": "enabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," - } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "calcite/light": "enabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", - "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", - "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", - "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", - "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", - "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", - "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", - "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", - "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", - "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", - "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", - "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", - "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", - "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," - } - }, { "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", "name": "Calcite Headless", @@ -892,4 +733,4 @@ "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," } } -] +] \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 8ade298f21a..c60b576bb0e 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -607,4 +607,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index b31a3227565..56c6afd8af9 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -635,4 +635,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 2d95491e98f..bf4896dbc5a 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file From 4ba4e2ff1f2e68ea6f4e8dceee38780ee866fe76 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 31 Jan 2023 08:44:02 +0000 Subject: [PATCH 115/696] input date tokens --- tokens/$themes.json | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 0995acf4f20..2ddae4f1224 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/input-date-picker": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/input-date-picker": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-date-picker": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-date-picker": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", From fbc8e8065a33ab3c04a0ef81d22a03859e1122dc Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 31 Jan 2023 17:36:43 +0000 Subject: [PATCH 116/696] input date picket spacing tokens --- tokens/component/input-date-picker.json | 74 +++++++++++++++---------- 1 file changed, 45 insertions(+), 29 deletions(-) diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json index 3a81f56ceb0..0639ddb6967 100644 --- a/tokens/component/input-date-picker.json +++ b/tokens/component/input-date-picker.json @@ -92,60 +92,62 @@ "type": "borderWidth" } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.7", "type": "spacing" } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } } }, "[specific-element]": { @@ -172,6 +174,20 @@ "type": "composition" } } + }, + "arrow-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } } } } \ No newline at end of file From f93ad1b07521dc77199a7c62c348f22f84c0664f Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 31 Jan 2023 18:07:06 +0000 Subject: [PATCH 117/696] date picker tokens --- tokens/component/input-date-picker.json | 106 ++++++++++++++++++------ 1 file changed, 82 insertions(+), 24 deletions(-) diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json index 0639ddb6967..b8e4e87168f 100644 --- a/tokens/component/input-date-picker.json +++ b/tokens/component/input-date-picker.json @@ -1,25 +1,65 @@ { "input-date-picker": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "placeholder": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" + "placeholder-value": { + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" + "read-only": { + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } } }, "icon": { @@ -34,16 +74,26 @@ }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "$semantic.ui.color.border.input.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "$semantic.ui.color.border.input.dark", "type": "color" } }, "background": { "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "arrow": { "light": { "value": "$semantic.ui.color.background.light", "type": "color" @@ -66,29 +116,29 @@ }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, @@ -188,6 +238,14 @@ "value": "$core.sizing.7", "type": "sizing" } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } } } } \ No newline at end of file From eba1eaef94a41a8dacd069c42c293a9784160f30 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 1 Feb 2023 10:02:23 +0000 Subject: [PATCH 118/696] input date picker tokens --- tokens/calcite/dark.json | 38 +++++++++++++++++++++---- tokens/calcite/light.json | 30 +++++++++++++++++++ tokens/component/input-date-picker.json | 32 +++++++-------------- 3 files changed, 72 insertions(+), 28 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index c60b576bb0e..8eead79a213 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -560,6 +560,12 @@ "value": "$date-picker.font.selected.date.dark", "type": "color" } + }, + "active": { + "date": { + "value": "$date-picker.font.active.date.dark", + "type": "color" + } } }, "icon": { @@ -595,13 +601,33 @@ } } }, - "$date-picker": { + "input-date-picker": { "font": { - "active": { - "date": { - "value": "$date-picker.font.active.date.dark", - "type": "color" - } + "placeholder-value": { + "value": "$input-date-picker.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-date-picker.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-date-picker.icon.dark", + "type": "color" + }, + "border": { + "value": "$input-date-picker.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-date-picker.background.default.dark", + "type": "color" + }, + "arrow": { + "value": "$input-date-picker.background.arrow.dark", + "type": "color" } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 56c6afd8af9..df9dedd2233 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -632,6 +632,36 @@ } } } + }, + "input-date-picker": { + "font": { + "placeholder-value": { + "value": "$input-date-picker.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-date-picker.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-date-picker.icon.light", + "type": "color" + }, + "border": { + "value": "$input-date-picker.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-date-picker.background.default.light", + "type": "color" + }, + "arrow": { + "value": "$input-date-picker.background.arrow.light", + "type": "color" + } + } } } } diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json index b8e4e87168f..73c232d7b04 100644 --- a/tokens/component/input-date-picker.json +++ b/tokens/component/input-date-picker.json @@ -1,7 +1,7 @@ { "input-date-picker": { "font": { - "placeholder": { + "placeholder-value": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -9,11 +9,9 @@ "dark": { "value": "$semantic.ui.color.text.1.dark", "type": "color" - } - }, - "placeholder-value": { + }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { @@ -21,7 +19,7 @@ "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.regular.0h", "type": "typography" } }, @@ -35,29 +33,29 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.regular.0h", "type": "typography" } }, "read-only": { "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.medium.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.medium.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.medium.0h", "type": "typography" } } @@ -104,16 +102,6 @@ } } }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, "border-radius": { "sm": { "value": "$core.border.border-radius.none", From d7ecd34e36ce1afee8a9db91d3353ccde60fe897 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 2 Feb 2023 20:33:20 +0000 Subject: [PATCH 119/696] input date picker color tokens --- tokens/calcite/dark.json | 4 ++++ tokens/calcite/light.json | 4 ++++ tokens/component/input-date-picker.json | 10 ++++++++++ 3 files changed, 18 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 8eead79a213..aa3d512314a 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -628,6 +628,10 @@ "arrow": { "value": "$input-date-picker.background.arrow.dark", "type": "color" + }, + "read-only": { + "value": "$input-date-picker.background.read-only.dark", + "type": "color" } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index df9dedd2233..c3dab683359 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -660,6 +660,10 @@ "arrow": { "value": "$input-date-picker.background.arrow.light", "type": "color" + }, + "read-only": { + "value": "$input-date-picker.background.read-only.light", + "type": "color" } } } diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json index 73c232d7b04..66df7cfcad6 100644 --- a/tokens/component/input-date-picker.json +++ b/tokens/component/input-date-picker.json @@ -100,6 +100,16 @@ "value": "$semantic.ui.color.background.dark", "type": "color" } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } } }, "border-radius": { From 3e088efdad2295ab607a4240d4449b985a36c44a Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 2 Feb 2023 22:27:54 +0000 Subject: [PATCH 120/696] datetime tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/component/input-datetime-local.json | 247 +++++++++++++++++++++ 3 files changed, 258 insertions(+), 5 deletions(-) create mode 100644 tokens/component/input-datetime-local.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index cbdf7c5ba87..c9ae885f3df 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -10,6 +10,7 @@ "component/chip", "component/color-picker", "component/input-date-picker", + "component/input-datetime-local", "component/input-message", "component/input-time", "component/date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index 2ddae4f1224..50b40fb0f2b 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/input-datetime-local": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/input-datetime-local": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-datetime-local": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-datetime-local": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -202,7 +206,8 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled" + "component/input-date-picker": "enabled", + "component/input-datetime-local": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/input-datetime-local.json b/tokens/component/input-datetime-local.json new file mode 100644 index 00000000000..c029cb85db8 --- /dev/null +++ b/tokens/component/input-datetime-local.json @@ -0,0 +1,247 @@ +{ + "input-datetime-local": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file From 1432c544bcb82ae0995591ef541d645bc7fb48bd Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 3 Feb 2023 14:09:37 +0000 Subject: [PATCH 121/696] Input datetime local tokens --- tokens/$themes.json | 15 +++----- tokens/calcite/light.json | 40 ++++++++++++++++++++++ tokens/component/input-datetime-local.json | 14 ++++++-- 3 files changed, 56 insertions(+), 13 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 50b40fb0f2b..2ddae4f1224 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/input-datetime-local": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/input-datetime-local": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-datetime-local": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-datetime-local": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -206,8 +202,7 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled", - "component/input-datetime-local": "disabled" + "component/input-date-picker": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index c3dab683359..f1d58fcd8a2 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -666,6 +666,46 @@ "type": "color" } } + }, + "input-datetime-local": { + "font": { + "placeholder-value": { + "value": "$input-datetime-local.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-datetime-local.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-datetime-local.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-datetime-local.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-datetime-local.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-datetime-local.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-datetime-local.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-datetime-local.border.invalid.light", + "type": "color" + } + } } } } diff --git a/tokens/component/input-datetime-local.json b/tokens/component/input-datetime-local.json index c029cb85db8..78d2248098f 100644 --- a/tokens/component/input-datetime-local.json +++ b/tokens/component/input-datetime-local.json @@ -45,7 +45,7 @@ "type": "typography" } }, - "read-only": { + "prefix-suffix": { "sm": { "value": "$semantic.font.default.medium.-2h", "type": "typography" @@ -57,6 +57,14 @@ "lg": { "value": "$semantic.font.default.medium.0h", "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" } } }, @@ -73,11 +81,11 @@ "border": { "invalid": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } }, From be0ca015539a502042a3393aa92cfc344fd86311 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 3 Feb 2023 14:13:09 +0000 Subject: [PATCH 122/696] input datetime tokens --- tokens/calcite/dark.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index aa3d512314a..4c1819717a1 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -634,6 +634,46 @@ "type": "color" } } + }, + "input-datetime-local": { + "font": { + "placeholder-value": { + "value": "$input-datetime-local.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-datetime-local.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-datetime-local.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-datetime-local.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-datetime-local.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-datetime-local.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-datetime-local.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-datetime-local.border.invalid.dark", + "type": "color" + } + } } } } From 658b3e1eb39a2cc471e28e300f677d36d2b2e330 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 6 Feb 2023 18:22:27 +0000 Subject: [PATCH 123/696] input email tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/calcite/dark.json | 40 ++++ tokens/calcite/light.json | 40 ++++ tokens/component/input-datetime-local.json | 2 +- tokens/component/input-email.json | 255 +++++++++++++++++++++ 6 files changed, 347 insertions(+), 6 deletions(-) create mode 100644 tokens/component/input-email.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index c9ae885f3df..2ae887bb3f0 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -11,6 +11,7 @@ "component/color-picker", "component/input-date-picker", "component/input-datetime-local", + "component/input-email", "component/input-message", "component/input-time", "component/date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index 2ddae4f1224..94abea9c94f 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/input-email": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/input-email": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-email": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-email": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -202,7 +206,8 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled" + "component/input-date-picker": "enabled", + "component/input-email": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 4c1819717a1..4e1aec5b9d0 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -674,6 +674,46 @@ "type": "color" } } + }, + "input-email": { + "font": { + "placeholder-value": { + "value": "$input-email.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-email.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-email.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-email.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-email.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-email.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-email.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-email.border.invalid.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index f1d58fcd8a2..e6237e37651 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -706,6 +706,46 @@ "type": "color" } } + }, + "input-email": { + "font": { + "placeholder-value": { + "value": "$input-email.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-email.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-email.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-email.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-email.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-email.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-email.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-email.border.invalid.light", + "type": "color" + } + } } } } diff --git a/tokens/component/input-datetime-local.json b/tokens/component/input-datetime-local.json index 78d2248098f..a92c890064b 100644 --- a/tokens/component/input-datetime-local.json +++ b/tokens/component/input-datetime-local.json @@ -1,5 +1,5 @@ { - "input-datetime-local": { + "input-email": { "font": { "placeholder-value": { "light": { diff --git a/tokens/component/input-email.json b/tokens/component/input-email.json new file mode 100644 index 00000000000..a92c890064b --- /dev/null +++ b/tokens/component/input-email.json @@ -0,0 +1,255 @@ +{ + "input-email": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file From ff3505ed34dc932a75d9cb2340578f4317ad6abc Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 8 Feb 2023 14:32:57 +0000 Subject: [PATCH 124/696] input tokens --- tokens/$metadata.json | 2 + tokens/$themes.json | 15 +- tokens/calcite/dark.json | 80 ++++++++++ tokens/calcite/light.json | 80 ++++++++++ tokens/component/input-file.json | 255 ++++++++++++++++++++++++++++++ tokens/component/input-month.json | 255 ++++++++++++++++++++++++++++++ 6 files changed, 682 insertions(+), 5 deletions(-) create mode 100644 tokens/component/input-file.json create mode 100644 tokens/component/input-month.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 2ae887bb3f0..e8b71661949 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -12,6 +12,8 @@ "component/input-date-picker", "component/input-datetime-local", "component/input-email", + "component/input-file", + "component/input-month", "component/input-message", "component/input-time", "component/date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index 94abea9c94f..2bf612a1b77 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -7,7 +7,8 @@ "semantic": "source", "brand/global": "enabled", "brand/light": "enabled", - "component/input-email": "disabled" + "component/input-file": "disabled", + "component/input-month": "disabled" }, "$figmaStyleReferences": {} }, @@ -19,7 +20,8 @@ "semantic": "source", "brand/global": "enabled", "brand/dark": "enabled", - "component/input-email": "disabled" + "component/input-file": "disabled", + "component/input-month": "disabled" }, "$figmaStyleReferences": {} }, @@ -38,7 +40,8 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/input-email": "disabled" + "component/input-file": "disabled", + "component/input-month": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -116,7 +119,8 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/input-email": "disabled" + "component/input-file": "disabled", + "component/input-month": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -207,7 +211,8 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", - "component/input-email": "disabled" + "component/input-file": "disabled", + "component/input-month": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 4e1aec5b9d0..e566d4e8831 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -714,6 +714,86 @@ "type": "color" } } + }, + "input-file": { + "font": { + "placeholder-value": { + "value": "$input-file.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-file.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-file.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-file.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-file.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-file.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-file.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-file.border.invalid.dark", + "type": "color" + } + } + }, + "input-month": { + "font": { + "placeholder-value": { + "value": "$input-month.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-month.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-month.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-month.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-month.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-month.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-month.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-month.border.invalid.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index e6237e37651..9420b0f8afd 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -746,6 +746,86 @@ "type": "color" } } + }, + "input-file": { + "font": { + "placeholder-value": { + "value": "$input-file.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-file.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-file.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-file.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-file.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-file.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-file.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-file.border.invalid.light", + "type": "color" + } + } + }, + "input-month": { + "font": { + "placeholder-value": { + "value": "$input-month.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-month.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-month.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-month.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-month.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-month.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-month.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-month.border.invalid.light", + "type": "color" + } + } } } } diff --git a/tokens/component/input-file.json b/tokens/component/input-file.json new file mode 100644 index 00000000000..029cc222bf8 --- /dev/null +++ b/tokens/component/input-file.json @@ -0,0 +1,255 @@ +{ + "input-file": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-month.json b/tokens/component/input-month.json new file mode 100644 index 00000000000..01a418a4b07 --- /dev/null +++ b/tokens/component/input-month.json @@ -0,0 +1,255 @@ +{ + "input-month": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file From 0e1f9b08a15dc7577e6e33f2a7dd7dbd4a721112 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 8 Feb 2023 15:56:42 +0000 Subject: [PATCH 125/696] inputs tokens --- tokens/$themes.json | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 2bf612a1b77..2ddae4f1224 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,9 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/input-file": "disabled", - "component/input-month": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -19,9 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/input-file": "disabled", - "component/input-month": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -39,9 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-file": "disabled", - "component/input-month": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -118,9 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-file": "disabled", - "component/input-month": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -210,9 +202,7 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled", - "component/input-file": "disabled", - "component/input-month": "disabled" + "component/input-date-picker": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", From 45def29d3a21cdd018a70031cb059c4cd5acfc2a Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 8 Feb 2023 19:48:14 +0000 Subject: [PATCH 126/696] input number tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/calcite/dark.json | 40 +++++ tokens/calcite/light.json | 40 +++++ tokens/component/input-number.json | 255 +++++++++++++++++++++++++++++ 5 files changed, 346 insertions(+), 5 deletions(-) create mode 100644 tokens/component/input-number.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index e8b71661949..c7682dfa4d7 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -14,6 +14,7 @@ "component/input-email", "component/input-file", "component/input-month", + "component/input-number", "component/input-message", "component/input-time", "component/date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index 2ddae4f1224..0d975ac123c 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/input-number": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/input-number": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-number": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-number": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -202,7 +206,8 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled" + "component/input-date-picker": "enabled", + "component/input-number": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index e566d4e8831..d24c546450b 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -794,6 +794,46 @@ "type": "color" } } + }, + "input-number": { + "font": { + "placeholder-value": { + "value": "$input-number.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-number.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-number.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-number.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-number.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-number.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-number.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-number.border.invalid.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 9420b0f8afd..96b8cd43e73 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -826,6 +826,46 @@ "type": "color" } } + }, + "input-number": { + "font": { + "placeholder-value": { + "value": "$input-number.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-number.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-number.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-number.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-number.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-number.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-number.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-number.border.invalid.light", + "type": "color" + } + } } } } diff --git a/tokens/component/input-number.json b/tokens/component/input-number.json new file mode 100644 index 00000000000..9b65b35a39c --- /dev/null +++ b/tokens/component/input-number.json @@ -0,0 +1,255 @@ +{ + "input-number": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file From db9ab71f00b7a72f5b21ba69ff2cf1dcf0171c89 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 8 Feb 2023 19:49:30 +0000 Subject: [PATCH 127/696] input number tokens --- tokens/$themes.json | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 0d975ac123c..2ddae4f1224 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/input-number": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/input-number": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-number": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-number": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -206,8 +202,7 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled", - "component/input-number": "disabled" + "component/input-date-picker": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", From d61abff8eac3bd8a011e5c5391aa7f368db7e31a Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 9 Feb 2023 12:33:32 +0000 Subject: [PATCH 128/696] input datetime token correction --- tokens/component/input-datetime-local.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/component/input-datetime-local.json b/tokens/component/input-datetime-local.json index a92c890064b..78d2248098f 100644 --- a/tokens/component/input-datetime-local.json +++ b/tokens/component/input-datetime-local.json @@ -1,5 +1,5 @@ { - "input-email": { + "input-datetime-local": { "font": { "placeholder-value": { "light": { From e19c4b5d7d2cb9d492808e5baf640558f6487c98 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 9 Feb 2023 13:59:08 +0000 Subject: [PATCH 129/696] input datetime corrections --- tokens/calcite/dark.json | 4 ++++ tokens/calcite/light.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index d24c546450b..223a22cccd0 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -644,6 +644,10 @@ "label": { "value": "$input-datetime-local.font.label.dark", "type": "color" + }, + "prefix-suffix": { + "value": "$input-datetime-local.font.prefix-suffix.dark", + "type": "color" } }, "icon": { diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 96b8cd43e73..aef42ec291f 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -676,6 +676,10 @@ "label": { "value": "$input-datetime-local.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-datetime-local.font.prefix-suffix.light", + "type": "color" } }, "icon": { From adafce103b47b11fa6e14ff065b7211ee27a0e1a Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 9 Feb 2023 17:18:00 +0000 Subject: [PATCH 130/696] input month correction --- tokens/calcite/dark.json | 12 ++++++++++++ tokens/calcite/light.json | 12 ++++++++++++ tokens/component/input-email.json | 14 ++++++++++++++ tokens/component/input-file.json | 14 ++++++++++++++ tokens/component/input-month.json | 14 ++++++++++++++ 5 files changed, 66 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 223a22cccd0..de3580026c6 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -688,6 +688,10 @@ "label": { "value": "$input-email.font.label.dark", "type": "color" + }, + "prefix-suffix": { + "value": "$input-email.font.prefix-suffix.dark", + "type": "color" } }, "icon": { @@ -728,6 +732,10 @@ "label": { "value": "$input-file.font.label.dark", "type": "color" + }, + "prefix-suffix": { + "value": "$input-file.font.prefix-suffix.dark", + "type": "color" } }, "icon": { @@ -768,6 +776,10 @@ "label": { "value": "$input-month.font.label.dark", "type": "color" + }, + "prefix-suffix": { + "value": "$input-month.font.prefix-suffix.dark", + "type": "color" } }, "icon": { diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index aef42ec291f..0479647db5f 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -720,6 +720,10 @@ "label": { "value": "$input-email.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-email.font.prefix-suffix.light", + "type": "color" } }, "icon": { @@ -760,6 +764,10 @@ "label": { "value": "$input-file.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-file.font.prefix-suffix.light", + "type": "color" } }, "icon": { @@ -800,6 +808,10 @@ "label": { "value": "$input-month.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-month.font.prefix-suffix.light", + "type": "color" } }, "icon": { diff --git a/tokens/component/input-email.json b/tokens/component/input-email.json index a92c890064b..8b318fe2ddd 100644 --- a/tokens/component/input-email.json +++ b/tokens/component/input-email.json @@ -66,6 +66,20 @@ "value": "$semantic.ui.color.text.2.dark", "type": "color" } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } } }, "icon": { diff --git a/tokens/component/input-file.json b/tokens/component/input-file.json index 029cc222bf8..8b48fab1068 100644 --- a/tokens/component/input-file.json +++ b/tokens/component/input-file.json @@ -66,6 +66,20 @@ "value": "$semantic.ui.color.text.2.dark", "type": "color" } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } } }, "icon": { diff --git a/tokens/component/input-month.json b/tokens/component/input-month.json index 01a418a4b07..f72e68c2e95 100644 --- a/tokens/component/input-month.json +++ b/tokens/component/input-month.json @@ -66,6 +66,20 @@ "value": "$semantic.ui.color.text.2.dark", "type": "color" } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } } }, "icon": { From 1d9a330bc261e098afc238a245669619837526bf Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 10 Feb 2023 17:39:05 +0000 Subject: [PATCH 131/696] input number fix --- tokens/component/input-number.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tokens/component/input-number.json b/tokens/component/input-number.json index 9b65b35a39c..4410d2c2561 100644 --- a/tokens/component/input-number.json +++ b/tokens/component/input-number.json @@ -66,6 +66,20 @@ "value": "$semantic.ui.color.text.2.dark", "type": "color" } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } } }, "icon": { From 3b3d475955367fad246a1d9993cf68c219413a14 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 13 Feb 2023 17:22:42 +0000 Subject: [PATCH 132/696] input password tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/calcite/light.json | 40 ++++ tokens/component/input-password.json | 269 +++++++++++++++++++++++++++ 4 files changed, 320 insertions(+), 5 deletions(-) create mode 100644 tokens/component/input-password.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index c7682dfa4d7..976e15c8b2a 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -15,6 +15,7 @@ "component/input-file", "component/input-month", "component/input-number", + "component/input-password", "component/input-message", "component/input-time", "component/date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index 2ddae4f1224..a37e70513e2 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/input-password": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/input-password": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-password": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-password": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -202,7 +206,8 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled" + "component/input-date-picker": "enabled", + "component/input-password": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 0479647db5f..242d83d602c 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -882,6 +882,46 @@ "type": "color" } } + }, + "input-password": { + "font": { + "placeholder-value": { + "value": "$input-password.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-password.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-password.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-password.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-password.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-password.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-password.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-password.border.invalid.light", + "type": "color" + } + } } } } diff --git a/tokens/component/input-password.json b/tokens/component/input-password.json new file mode 100644 index 00000000000..1fb152a2415 --- /dev/null +++ b/tokens/component/input-password.json @@ -0,0 +1,269 @@ +{ + "input-password": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file From ddbea2b2584a7447b330ed57cd956e8d2b29ec25 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 13 Feb 2023 17:32:32 +0000 Subject: [PATCH 133/696] input search tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 10 +- tokens/calcite/dark.json | 80 +++++++++ tokens/calcite/light.json | 40 +++++ tokens/component/input-search.json | 269 +++++++++++++++++++++++++++++ 5 files changed, 395 insertions(+), 5 deletions(-) create mode 100644 tokens/component/input-search.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 976e15c8b2a..92b841ac2a1 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -16,6 +16,7 @@ "component/input-month", "component/input-number", "component/input-password", + "component/input-search", "component/input-message", "component/input-time", "component/date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index a37e70513e2..c80a07d7535 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -7,7 +7,7 @@ "semantic": "source", "brand/global": "enabled", "brand/light": "enabled", - "component/input-password": "disabled" + "component/input-search": "disabled" }, "$figmaStyleReferences": {} }, @@ -19,7 +19,7 @@ "semantic": "source", "brand/global": "enabled", "brand/dark": "enabled", - "component/input-password": "disabled" + "component/input-search": "disabled" }, "$figmaStyleReferences": {} }, @@ -38,7 +38,7 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/input-password": "disabled" + "component/input-search": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -116,7 +116,7 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/input-password": "disabled" + "component/input-search": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -207,7 +207,7 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", - "component/input-password": "disabled" + "component/input-search": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index de3580026c6..3b0e7f7f5d9 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -850,6 +850,86 @@ "type": "color" } } + }, + "input-password": { + "font": { + "placeholder-value": { + "value": "$input-password.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-password.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-password.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-password.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-password.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-password.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-password.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-password.border.invalid.dark", + "type": "color" + } + } + }, + "input-search": { + "font": { + "placeholder-value": { + "value": "$input-search.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-search.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-search.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-search.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-search.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-search.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-search.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-search.border.invalid.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 242d83d602c..134b9f86417 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -922,6 +922,46 @@ "type": "color" } } + }, + "input-search": { + "font": { + "placeholder-value": { + "value": "$input-search.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-search.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-search.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-search.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-search.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-search.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-search.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-search.border.invalid.light", + "type": "color" + } + } } } } diff --git a/tokens/component/input-search.json b/tokens/component/input-search.json new file mode 100644 index 00000000000..ea96f88a12d --- /dev/null +++ b/tokens/component/input-search.json @@ -0,0 +1,269 @@ +{ + "input-search": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file From 79f9bf472e62a370530e00533760c52ad8874b9a Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 13 Feb 2023 18:28:51 +0000 Subject: [PATCH 134/696] input tokens --- tokens/$themes.json | 15 +++++---------- tokens/calcite/dark.json | 4 ++++ tokens/calcite/light.json | 4 ++++ 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index c80a07d7535..2ddae4f1224 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/input-search": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/input-search": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-search": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-search": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -206,8 +202,7 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled", - "component/input-search": "disabled" + "component/input-date-picker": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 3b0e7f7f5d9..f07de8d0142 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -820,6 +820,10 @@ "label": { "value": "$input-number.font.label.dark", "type": "color" + }, + "prefix-suffix": { + "value": "$input-number.font.prefix-suffix.dark", + "type": "color" } }, "icon": { diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 134b9f86417..f81edec99cf 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -852,6 +852,10 @@ "label": { "value": "$input-number.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-number.font.prefix-suffix.light", + "type": "color" } }, "icon": { From 63d12701ceec2c40a6804010f0d473c1450bfaad Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 13 Feb 2023 18:30:58 +0000 Subject: [PATCH 135/696] input number correction --- tokens/calcite/dark.json | 44 --------------------------------------- tokens/calcite/light.json | 4 ---- 2 files changed, 48 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index f07de8d0142..faa5053560f 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -820,10 +820,6 @@ "label": { "value": "$input-number.font.label.dark", "type": "color" - }, - "prefix-suffix": { - "value": "$input-number.font.prefix-suffix.dark", - "type": "color" } }, "icon": { @@ -894,46 +890,6 @@ "type": "color" } } - }, - "input-search": { - "font": { - "placeholder-value": { - "value": "$input-search.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-search.font.label.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-search.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-search.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-search.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-search.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-search.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-search.border.invalid.dark", - "type": "color" - } - } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index f81edec99cf..134b9f86417 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -852,10 +852,6 @@ "label": { "value": "$input-number.font.label.light", "type": "color" - }, - "prefix-suffix": { - "value": "$input-number.font.prefix-suffix.light", - "type": "color" } }, "icon": { From 8f25639ffcd5e3f273f31573576057e26e578921 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 22:28:07 -0800 Subject: [PATCH 136/696] Create trigger_webhook.yml Customize control of issue updates trigger through custom Github action rather than relying on Webhooks and Zapier --- .github/workflows/trigger_webhook.yml | 37 +++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/trigger_webhook.yml diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml new file mode 100644 index 00000000000..a48fb60c8ed --- /dev/null +++ b/.github/workflows/trigger_webhook.yml @@ -0,0 +1,37 @@ +name: automate_webhook + +on: + # Trigger the workflow when issues are updated + issues: + types: [opened, edited, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned] + +# Automatically cancel any prior runs of this automation +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + # allow time for multiple changes on an issue + allow_for_changes: + runs-on: ubuntu-latest + steps: + - name: Sleep for 10 seconds + run: sleep 10s + shell: bash + get_data: + needs: allow_for_changes + runs-on: ubuntu-latest + steps: + - name: Get Issue Data + id: git-issue-data + uses: actions/github-script@v6 + with: + script: | + return JSON.stringify(github.event.issue); + - name: Webhook + uses: distributhor/workflow-webhook@v2 + env: + webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} + webhook_secret: ${{ secrets.AIRTABLE_KEY }} + data: "${{steps.git-issue-data.outputs.result}}" + From 77f5b04097214d0c55d467e9cfab62f781ed3457 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 22:32:22 -0800 Subject: [PATCH 137/696] Update trigger_webhook.yml add debug step --- .github/workflows/trigger_webhook.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index a48fb60c8ed..800922e165a 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -27,11 +27,13 @@ jobs: uses: actions/github-script@v6 with: script: | - return JSON.stringify(github.event.issue); - - name: Webhook - uses: distributhor/workflow-webhook@v2 - env: - webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} - webhook_secret: ${{ secrets.AIRTABLE_KEY }} - data: "${{steps.git-issue-data.outputs.result}}" + return JSON.stringify(github.event); + - name: Debug + run: echo "${{steps.git-issue-data.outputs.result}}" +# - name: Webhook +# uses: distributhor/workflow-webhook@v2 +# env: +# webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} +# webhook_secret: ${{ secrets.AIRTABLE_KEY }} +# data: "${{steps.git-issue-data.outputs.result}}" From d468e4abec47cc14872bb07e924adcd4971bb75b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 22:37:58 -0800 Subject: [PATCH 138/696] Update trigger_webhook.yml debugger steps --- .github/workflows/trigger_webhook.yml | 31 ++++++++++++++------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 800922e165a..e7b908b15d9 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -12,24 +12,25 @@ concurrency: jobs: # allow time for multiple changes on an issue - allow_for_changes: - runs-on: ubuntu-latest - steps: - - name: Sleep for 10 seconds - run: sleep 10s - shell: bash +# allow_for_changes: +# runs-on: ubuntu-latest +# steps: +# - name: Sleep for 10 seconds +# run: sleep 10s +# shell: bash get_data: - needs: allow_for_changes +# needs: allow_for_changes runs-on: ubuntu-latest steps: - - name: Get Issue Data - id: git-issue-data - uses: actions/github-script@v6 - with: - script: | - return JSON.stringify(github.event); - - name: Debug - run: echo "${{steps.git-issue-data.outputs.result}}" + - name: Dump GitHub context + id: github_context_step + run: echo '${{ toJSON(github) }}' +# - name: Get Issue Data +# id: git-issue-data +# uses: actions/github-script@v6 +# with: +# script: | +# return JSON.stringify(github.event); # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From 425eb6b2307b5817a12f84cadeeaf9a72deb2a70 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 22:43:01 -0800 Subject: [PATCH 139/696] Update trigger_webhook.yml debug locate issue data --- .github/workflows/trigger_webhook.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index e7b908b15d9..de228d80ae9 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -22,9 +22,12 @@ jobs: # needs: allow_for_changes runs-on: ubuntu-latest steps: + - name: Grab Issue context + id: github_issue_context + run: export ISSUE=toJSON(github.event.issue) - name: Dump GitHub context id: github_context_step - run: echo '${{ toJSON(github) }}' + run: echo '${{ $ISSUE }}' # - name: Get Issue Data # id: git-issue-data # uses: actions/github-script@v6 From 190e43782b9a4be5aae4db14593da05f79fbd02b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 22:46:19 -0800 Subject: [PATCH 140/696] Update trigger_webhook.yml fixing bug in echo --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index de228d80ae9..d89fd8401d6 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -27,7 +27,7 @@ jobs: run: export ISSUE=toJSON(github.event.issue) - name: Dump GitHub context id: github_context_step - run: echo '${{ $ISSUE }}' + run: echo $ISSUE # - name: Get Issue Data # id: git-issue-data # uses: actions/github-script@v6 From 6273486fd8312d3b87633dc13857d3f6f5506692 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 22:50:10 -0800 Subject: [PATCH 141/696] Update trigger_webhook.yml try to stringify --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index d89fd8401d6..25e61bb48c9 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -27,7 +27,7 @@ jobs: run: export ISSUE=toJSON(github.event.issue) - name: Dump GitHub context id: github_context_step - run: echo $ISSUE + run: echo "${{ ISSUE }}" # - name: Get Issue Data # id: git-issue-data # uses: actions/github-script@v6 From ef75f23aeedc56bb36241e2f85e6190a8b6d6360 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 22:53:08 -0800 Subject: [PATCH 142/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 25e61bb48c9..a9a0efb4cf6 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -22,18 +22,21 @@ jobs: # needs: allow_for_changes runs-on: ubuntu-latest steps: - - name: Grab Issue context - id: github_issue_context - run: export ISSUE=toJSON(github.event.issue) - - name: Dump GitHub context +# - name: Grab Issue context +# id: github_issue_context +# run: export ISSUE=toJSON(github.event.issue) +# - name: Dump GitHub context +# id: github_context_step +# run: echo "${{ ISSUE }}" + - name: Get Issue Data + id: git-issue-data + uses: actions/github-script@v6 + with: + script: | + return JSON.stringify(github.event.issue); + - name: Dump context id: github_context_step - run: echo "${{ ISSUE }}" -# - name: Get Issue Data -# id: git-issue-data -# uses: actions/github-script@v6 -# with: -# script: | -# return JSON.stringify(github.event); + run: echo "${{ steps.git-issue-data.outputs.result }}" # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From a346f7d5244bd4c7cb37970eeb6146ea44e9553c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 22:58:30 -0800 Subject: [PATCH 143/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 33 ++++++++++++--------------- 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index a9a0efb4cf6..e7440871b6f 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -24,23 +24,20 @@ jobs: steps: # - name: Grab Issue context # id: github_issue_context -# run: export ISSUE=toJSON(github.event.issue) -# - name: Dump GitHub context +# # run: export ISSUE=toJSON(github.event.issue) +# - name: Get Issue Data +# id: git-issue-data +# uses: actions/github-script@v6 +# with: +# script: | +# return JSON.stringify(github.event.issue); +# - name: Dump context # id: github_context_step -# run: echo "${{ ISSUE }}" - - name: Get Issue Data - id: git-issue-data - uses: actions/github-script@v6 - with: - script: | - return JSON.stringify(github.event.issue); - - name: Dump context - id: github_context_step - run: echo "${{ steps.git-issue-data.outputs.result }}" -# - name: Webhook -# uses: distributhor/workflow-webhook@v2 -# env: -# webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} -# webhook_secret: ${{ secrets.AIRTABLE_KEY }} -# data: "${{steps.git-issue-data.outputs.result}}" +# run: echo "${{ steps.git-issue-data.outputs.result }}" + - name: Webhook + uses: distributhor/workflow-webhook@v2 + env: + webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} + webhook_secret: ${{ secrets.AIRTABLE_KEY }} + data: "${{github.event.issue}}" From 32fc58159b2e730dfa2e25ce7c921ecf9304ecdd Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:02:15 -0800 Subject: [PATCH 144/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index e7440871b6f..7b4edb948fa 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -22,22 +22,22 @@ jobs: # needs: allow_for_changes runs-on: ubuntu-latest steps: -# - name: Grab Issue context -# id: github_issue_context -# # run: export ISSUE=toJSON(github.event.issue) + - name: Grab Issue context + id: github_issue_context + run: export ISSUE='${{toJSON(github.event.issue)}}' # - name: Get Issue Data # id: git-issue-data # uses: actions/github-script@v6 # with: # script: | # return JSON.stringify(github.event.issue); -# - name: Dump context -# id: github_context_step -# run: echo "${{ steps.git-issue-data.outputs.result }}" - - name: Webhook - uses: distributhor/workflow-webhook@v2 - env: - webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} - webhook_secret: ${{ secrets.AIRTABLE_KEY }} - data: "${{github.event.issue}}" + - name: Dump context + id: github_context_step + run: echo $ISSUE +# - name: Webhook +# uses: distributhor/workflow-webhook@v2 +# env: +# webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} +# webhook_secret: ${{ secrets.AIRTABLE_KEY }} +# data: "${{github.event.issue}}" From 2bf01ed8758f259b1cbeb11ed85c8aad8bb455dc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:09:33 -0800 Subject: [PATCH 145/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 32 +++++++++++++++++---------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 7b4edb948fa..0a13a71a1e2 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -11,29 +11,37 @@ concurrency: cancel-in-progress: true jobs: - # allow time for multiple changes on an issue +# allow time for multiple changes on an issue # allow_for_changes: # runs-on: ubuntu-latest # steps: # - name: Sleep for 10 seconds # run: sleep 10s # shell: bash - get_data: + + setup_data: + runs-on: ubuntu-latest # needs: allow_for_changes + outputs: + issue: ${{ steps.set-data.outputs.issue }} + steps: + - id: set-data + run: echo "::set-output name=issue::${{toJSON(github.event.issue)}}" +# job2: +# needs: job1 +# runs-on: ubuntu-latest +# strategy: +# matrix: ${{fromJson(needs.job1.outputs.matrix)}} +# steps: +# - run: build + + get_data: + needs: setup_data runs-on: ubuntu-latest steps: - - name: Grab Issue context - id: github_issue_context - run: export ISSUE='${{toJSON(github.event.issue)}}' -# - name: Get Issue Data -# id: git-issue-data -# uses: actions/github-script@v6 -# with: -# script: | -# return JSON.stringify(github.event.issue); - name: Dump context id: github_context_step - run: echo $ISSUE + run: echo ${{fromJson(needs.setup_data.outputs.issue)}} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From 561027bc703e8811a9e93b7e0cb44ff0a9762272 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:13:19 -0800 Subject: [PATCH 146/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 0a13a71a1e2..20f6f747322 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -19,29 +19,14 @@ jobs: # run: sleep 10s # shell: bash - setup_data: - runs-on: ubuntu-latest -# needs: allow_for_changes - outputs: - issue: ${{ steps.set-data.outputs.issue }} - steps: - - id: set-data - run: echo "::set-output name=issue::${{toJSON(github.event.issue)}}" -# job2: -# needs: job1 -# runs-on: ubuntu-latest -# strategy: -# matrix: ${{fromJson(needs.job1.outputs.matrix)}} -# steps: -# - run: build - get_data: - needs: setup_data + env: + ISSUE: '${{toJSON(github.event.issue)}}' runs-on: ubuntu-latest steps: - name: Dump context id: github_context_step - run: echo ${{fromJson(needs.setup_data.outputs.issue)}} + run: echo ${{env.ISSUE}} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From 431e7ff26212d0075649ab64c47f8b8dec2be4d9 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:19:44 -0800 Subject: [PATCH 147/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 20f6f747322..fea31e95fa2 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -21,12 +21,12 @@ jobs: get_data: env: - ISSUE: '${{toJSON(github.event.issue)}}' + ISSUE: '${{github.event.issue.assignees}}' runs-on: ubuntu-latest steps: - name: Dump context id: github_context_step - run: echo ${{env.ISSUE}} + run: echo '${{toJSON(env.ISSUE)}}' # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From 76aa150b052dfdfe11c84226f1b5339090e8b337 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:22:12 -0800 Subject: [PATCH 148/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index fea31e95fa2..6850297b94c 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -26,7 +26,8 @@ jobs: steps: - name: Dump context id: github_context_step - run: echo '${{toJSON(env.ISSUE)}}' +# run: echo '${{github.event.issue}}' + run: echo 'Hello' # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From eab065ba926ea38a88ac0d9c39d59ec032ba77bc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:24:18 -0800 Subject: [PATCH 149/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 28 +++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 6850297b94c..659e222f47b 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -11,6 +11,15 @@ concurrency: cancel-in-progress: true jobs: + get_data: + runs-on: ubuntu-latest + env: + ISSUE: '${{toJSON(github.event.issue)}}' + steps: + - name: Dump context + run: echo 'Hello' + +# jobs: # allow time for multiple changes on an issue # allow_for_changes: # runs-on: ubuntu-latest @@ -18,16 +27,15 @@ jobs: # - name: Sleep for 10 seconds # run: sleep 10s # shell: bash - - get_data: - env: - ISSUE: '${{github.event.issue.assignees}}' - runs-on: ubuntu-latest - steps: - - name: Dump context - id: github_context_step -# run: echo '${{github.event.issue}}' - run: echo 'Hello' +# get_data: +# env: +# ISSUE: '${{github.event.issue.assignees}}' +# runs-on: ubuntu-latest +# steps: +# - name: Dump context +# id: github_context_step +# # run: echo '${{github.event.issue}}' +# run: echo 'Hello' # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From b20a617faf8a95196b8dd66b33b36d784e57d5b1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:25:38 -0800 Subject: [PATCH 150/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 659e222f47b..cd9a932eada 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -17,7 +17,7 @@ jobs: ISSUE: '${{toJSON(github.event.issue)}}' steps: - name: Dump context - run: echo 'Hello' + run: echo ${{env.ISSUE}} # jobs: # allow time for multiple changes on an issue From 09d3fce5ec3a0cdeee88e4f30604352258c1edfa Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:26:39 -0800 Subject: [PATCH 151/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index cd9a932eada..883fb1b9653 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -17,7 +17,7 @@ jobs: ISSUE: '${{toJSON(github.event.issue)}}' steps: - name: Dump context - run: echo ${{env.ISSUE}} + run: echo ${{fromJSON(env.ISSUE)}} # jobs: # allow time for multiple changes on an issue From 647d856e1272422856d4fa612d9b889f47479793 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:28:54 -0800 Subject: [PATCH 152/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 883fb1b9653..a96fb846dd3 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -16,8 +16,12 @@ jobs: env: ISSUE: '${{toJSON(github.event.issue)}}' steps: - - name: Dump context - run: echo ${{fromJSON(env.ISSUE)}} + - name: Webhook + uses: distributhor/workflow-webhook@v2 + env: + webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} + webhook_secret: ${{ secrets.AIRTABLE_KEY }} + data: "${{env.ISSUE}}" # jobs: # allow time for multiple changes on an issue @@ -36,10 +40,5 @@ jobs: # id: github_context_step # # run: echo '${{github.event.issue}}' # run: echo 'Hello' -# - name: Webhook -# uses: distributhor/workflow-webhook@v2 -# env: -# webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} -# webhook_secret: ${{ secrets.AIRTABLE_KEY }} -# data: "${{github.event.issue}}" + From 9f306e262728d21ee8b7f4a955b5ff49af879322 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:42:15 -0800 Subject: [PATCH 153/696] Update trigger_webhook.yml try curl --- .github/workflows/trigger_webhook.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index a96fb846dd3..379f8a5f201 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -16,12 +16,18 @@ jobs: env: ISSUE: '${{toJSON(github.event.issue)}}' steps: - - name: Webhook - uses: distributhor/workflow-webhook@v2 - env: - webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} - webhook_secret: ${{ secrets.AIRTABLE_KEY }} - data: "${{env.ISSUE}}" + - name: Webhook with curl + run: | + curl \ + -X GET "${{ secrets.AIRTABLE_WEBHOOK }}" \ + -d "${{env.ISSUE}}" \ + -H "Content-Type: application/json" +# - name: Webhook +# uses: distributhor/workflow-webhook@v2 +# env: +# webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} +# webhook_secret: ${{ secrets.AIRTABLE_KEY }} +# data: "${{env.ISSUE}}" # jobs: # allow time for multiple changes on an issue From e39b21abc5ff9ff00aea1a3a78f4c2318427b8c5 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:45:51 -0800 Subject: [PATCH 154/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 379f8a5f201..adc88aa5685 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -7,7 +7,7 @@ on: # Automatically cancel any prior runs of this automation concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.event.issue.number }}-${{ github.ref }} cancel-in-progress: true jobs: @@ -19,9 +19,9 @@ jobs: - name: Webhook with curl run: | curl \ - -X GET "${{ secrets.AIRTABLE_WEBHOOK }}" \ + -H "Secret: ${{ secrets.AIRTABLE_KEY }}"\ -d "${{env.ISSUE}}" \ - -H "Content-Type: application/json" + ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From d68eaacfc29a28f96fbd5c8dede31d271e92cc2e Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:48:15 -0800 Subject: [PATCH 155/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index adc88aa5685..be5f42fe573 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -20,7 +20,7 @@ jobs: run: | curl \ -H "Secret: ${{ secrets.AIRTABLE_KEY }}"\ - -d "${{env.ISSUE}}" \ + -d "${{fromJSON(env.ISSUE)}}" \ ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 From 015e79540a9d6da10ba6fadd59174950fc274223 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:49:39 -0800 Subject: [PATCH 156/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index be5f42fe573..48726daeb85 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -20,7 +20,7 @@ jobs: run: | curl \ -H "Secret: ${{ secrets.AIRTABLE_KEY }}"\ - -d "${{fromJSON(env.ISSUE)}}" \ + -d ${{ env.ISSUE }} \ ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 From 659fbe17c2b35d61f7362b3881ffd5d179be61cc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:51:15 -0800 Subject: [PATCH 157/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 48726daeb85..adc88aa5685 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -20,7 +20,7 @@ jobs: run: | curl \ -H "Secret: ${{ secrets.AIRTABLE_KEY }}"\ - -d ${{ env.ISSUE }} \ + -d "${{env.ISSUE}}" \ ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 From 99887f95d1c4b7a83ec485d4ce8885fc051e4556 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:52:00 -0800 Subject: [PATCH 158/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index adc88aa5685..fe4f0cfd719 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -19,8 +19,8 @@ jobs: - name: Webhook with curl run: | curl \ - -H "Secret: ${{ secrets.AIRTABLE_KEY }}"\ - -d "${{env.ISSUE}}" \ + -d "Secret: ${{ secrets.AIRTABLE_KEY }}"\ + -d "${{toJSON(github.event.issue)}}" \ ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 From 87a0ca722a6f50ad3f5eaa1535992fc05206f732 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:53:22 -0800 Subject: [PATCH 159/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index fe4f0cfd719..c60cc952f94 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -20,7 +20,7 @@ jobs: run: | curl \ -d "Secret: ${{ secrets.AIRTABLE_KEY }}"\ - -d "${{toJSON(github.event.issue)}}" \ + -d "${{ github.event.issue }}" \ ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 From 48e622ff03268ae3bea4f29fe84fe094d3b28bf0 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:55:57 -0800 Subject: [PATCH 160/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index c60cc952f94..d8085e2ab05 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -20,7 +20,7 @@ jobs: run: | curl \ -d "Secret: ${{ secrets.AIRTABLE_KEY }}"\ - -d "${{ github.event.issue }}" \ + -d "${{env.ISSUE}}" \ ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 From f30cc2458ffb7169274272a53fd21d5b6d5e1d18 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 13 Feb 2023 23:57:26 -0800 Subject: [PATCH 161/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index d8085e2ab05..d0d18b5c4f7 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -20,7 +20,7 @@ jobs: run: | curl \ -d "Secret: ${{ secrets.AIRTABLE_KEY }}"\ - -d "${{env.ISSUE}}" \ + -d ${{env.ISSUE}} \ ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 From 78b898451bfdd53136f65cca2f7006d0af9f4311 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:01:49 -0800 Subject: [PATCH 162/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index d0d18b5c4f7..881db5148b2 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -16,12 +16,22 @@ jobs: env: ISSUE: '${{toJSON(github.event.issue)}}' steps: - - name: Webhook with curl - run: | - curl \ - -d "Secret: ${{ secrets.AIRTABLE_KEY }}"\ - -d ${{env.ISSUE}} \ - ${{ secrets.AIRTABLE_WEBHOOK }} + - name: Webhook + uses: actions/github-script@v6 + id: my-script + with: + result-encoding: string + script: | + const test = env.ISSUE; + return fetch(secrets.AIRTABLE_WEBHOOK, { + body: "{ hello: 1}", + method: "GET" + }) +# run: | +# curl \ +# -d "Secret: ${{ secrets.AIRTABLE_KEY }}"\ +# -d ${{env.ISSUE}} \ +# ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From 0784ea85e11dc8dd86f698ff16b01351814348d1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:04:15 -0800 Subject: [PATCH 163/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 881db5148b2..57fe76e20f4 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -22,9 +22,8 @@ jobs: with: result-encoding: string script: | - const test = env.ISSUE; return fetch(secrets.AIRTABLE_WEBHOOK, { - body: "{ hello: 1}", + body: JSON.stringify(context), method: "GET" }) # run: | From 3dd6b845c5ae7d56dab39e0d8a38a80e0c05f6fd Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:09:14 -0800 Subject: [PATCH 164/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 57fe76e20f4..297f8c20583 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -17,20 +17,10 @@ jobs: ISSUE: '${{toJSON(github.event.issue)}}' steps: - name: Webhook - uses: actions/github-script@v6 - id: my-script - with: - result-encoding: string - script: | - return fetch(secrets.AIRTABLE_WEBHOOK, { - body: JSON.stringify(context), - method: "GET" - }) -# run: | -# curl \ -# -d "Secret: ${{ secrets.AIRTABLE_KEY }}"\ -# -d ${{env.ISSUE}} \ -# ${{ secrets.AIRTABLE_WEBHOOK }} + run: | + curl $options \ + -H "Content-Type: application/json" \ + --data "$env.ISSUE" $secrets.AIRTABLE_WEBHOOK # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From 83e700fdf2ebc099dfd44f840d3366f239fc280b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:09:38 -0800 Subject: [PATCH 165/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 297f8c20583..9f33a16dabc 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Webhook run: | - curl $options \ + curl \ -H "Content-Type: application/json" \ --data "$env.ISSUE" $secrets.AIRTABLE_WEBHOOK # - name: Webhook From 87975dfae4eb4b805b34aea8a34f7c6a52da06bd Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:12:27 -0800 Subject: [PATCH 166/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 9f33a16dabc..5cb2612c5be 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -20,7 +20,7 @@ jobs: run: | curl \ -H "Content-Type: application/json" \ - --data "$env.ISSUE" $secrets.AIRTABLE_WEBHOOK + --data "${{env.ISSUE}}" ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From 9f3224df5159afee6243d7eeb3738b4ba6ccf68e Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:14:30 -0800 Subject: [PATCH 167/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 5cb2612c5be..157cea9169e 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -20,7 +20,7 @@ jobs: run: | curl \ -H "Content-Type: application/json" \ - --data "${{env.ISSUE}}" ${{ secrets.AIRTABLE_WEBHOOK }} + --data "{'hello': 'test'}" ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From 9ea04698794f9e86708d2d3ad90ace3aa3c9e7ae Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:15:53 -0800 Subject: [PATCH 168/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 157cea9169e..731edf6886c 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -20,7 +20,7 @@ jobs: run: | curl \ -H "Content-Type: application/json" \ - --data "{'hello': 'test'}" ${{ secrets.AIRTABLE_WEBHOOK }} + --data '${{ env.ISSUE }}' ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From feaabcb1ff98115813c8dcb5bdb9dac306be2ff6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:18:50 -0800 Subject: [PATCH 169/696] Update trigger_webhook.yml add back sleep --- .github/workflows/trigger_webhook.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 731edf6886c..28858f8e02e 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -11,6 +11,12 @@ concurrency: cancel-in-progress: true jobs: + allow_for_changes: + runs-on: ubuntu-latest + steps: + - name: Sleep for 3 seconds + run: sleep 3s + shell: bash get_data: runs-on: ubuntu-latest env: @@ -20,7 +26,8 @@ jobs: run: | curl \ -H "Content-Type: application/json" \ - --data '${{ env.ISSUE }}' ${{ secrets.AIRTABLE_WEBHOOK }} + --data '${{ env.ISSUE }}' + --data '${{ secrets.AIRTABLE_KEY }}' ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: @@ -30,12 +37,7 @@ jobs: # jobs: # allow time for multiple changes on an issue -# allow_for_changes: -# runs-on: ubuntu-latest -# steps: -# - name: Sleep for 10 seconds -# run: sleep 10s -# shell: bash + # get_data: # env: # ISSUE: '${{github.event.issue.assignees}}' From 0e1931bcd8be8f8e51c6f4da8b7f55ac5cfd4368 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:20:09 -0800 Subject: [PATCH 170/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 28858f8e02e..90f69b1a94b 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -26,7 +26,7 @@ jobs: run: | curl \ -H "Content-Type: application/json" \ - --data '${{ env.ISSUE }}' + --data '${{ env.ISSUE }}' \ --data '${{ secrets.AIRTABLE_KEY }}' ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 From 2a3473876bcd10efcb2abe65a05b4da09d2c9a87 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:24:38 -0800 Subject: [PATCH 171/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 90f69b1a94b..2d29fec81d1 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -14,20 +14,27 @@ jobs: allow_for_changes: runs-on: ubuntu-latest steps: - - name: Sleep for 3 seconds - run: sleep 3s + - name: Sleep for .5 seconds + run: sleep .5s shell: bash get_data: runs-on: ubuntu-latest env: ISSUE: '${{toJSON(github.event.issue)}}' steps: - - name: Webhook - run: | - curl \ - -H "Content-Type: application/json" \ - --data '${{ env.ISSUE }}' \ - --data '${{ secrets.AIRTABLE_KEY }}' ${{ secrets.AIRTABLE_WEBHOOK }} + - name: Set Data + id: set-data + uses: actions/github-script@v6 + with: + script: | + console.log(context); + +# - name: Webhook +# run: | +# curl \ +# -H "Content-Type: application/json" \ +# --data '${{ env.ISSUE }}' \ +# --data '${{ secrets.AIRTABLE_KEY }}' ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From aebb72dd40188a8d4d67c1bef53b85df6b39b42a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:33:39 -0800 Subject: [PATCH 172/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 49 ++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 9 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 2d29fec81d1..87dd2df7f6b 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -19,22 +19,53 @@ jobs: shell: bash get_data: runs-on: ubuntu-latest - env: - ISSUE: '${{toJSON(github.event.issue)}}' steps: - name: Set Data id: set-data uses: actions/github-script@v6 with: + result-encoding: string script: | - console.log(context); + const { + action, + issue: { + title, + body, + assignees, + closed_at, + created_at, + id, + labels, + milestone, + number, + state, + updated_at + } + } = context; -# - name: Webhook -# run: | -# curl \ -# -H "Content-Type: application/json" \ -# --data '${{ env.ISSUE }}' \ -# --data '${{ secrets.AIRTABLE_KEY }}' ${{ secrets.AIRTABLE_WEBHOOK }} + return JSON.stringify({ + action, + title, + body, + assignees, + closed_at, + created_at, + id, + labels, + milestone, + number, + state, + updated_at, + secret: secrets.AIRTABLE_KEY, + }); + + - name: Webhook + run: | + curl \ + -H "Content-Type: application/json" \ + --data "${{steps.set-result.outputs.result}}" ${{ secrets.AIRTABLE_WEBHOOK }} +# --data '${{ env.ISSUE }}' \ +# --data '${{ secrets.AIRTABLE_KEY }}' # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From f062837cf6ee9822b8f82a55ecaf1d21a3116b1b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:38:22 -0800 Subject: [PATCH 173/696] Update trigger_webhook.yml basic auth ? --- .github/workflows/trigger_webhook.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 87dd2df7f6b..ab874bc069b 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -23,9 +23,12 @@ jobs: - name: Set Data id: set-data uses: actions/github-script@v6 + env: + SECRET: ${{ secrets.AIRTABLE_KEY }} with: result-encoding: string script: | + const { SECRET } = process.env; const { action, issue: { @@ -56,7 +59,7 @@ jobs: number, state, updated_at, - secret: secrets.AIRTABLE_KEY, + secret: SECRET, }); - name: Webhook From 2a62094293b14c6a0c0d1bb159c0e739b51e6235 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:42:20 -0800 Subject: [PATCH 174/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 35 +++------------------------ 1 file changed, 4 insertions(+), 31 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index ab874bc069b..bfc286d9a21 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -28,40 +28,13 @@ jobs: with: result-encoding: string script: | - const { SECRET } = process.env; const { action, - issue: { - title, - body, - assignees, - closed_at, - created_at, - id, - labels, - milestone, - number, - state, - updated_at - } + issue: { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } } = context; - - return JSON.stringify({ - action, - title, - body, - assignees, - closed_at, - created_at, - id, - labels, - milestone, - number, - state, - updated_at, - secret: SECRET, - }); - + const data = { action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; + console.log(data); + return data - name: Webhook run: | curl \ From c6709b29cc8abb65287cea3d2f57aae3c41bb64a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:44:13 -0800 Subject: [PATCH 175/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index bfc286d9a21..16095a2a96a 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -30,8 +30,9 @@ jobs: script: | const { action, - issue: { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } + issue, } = context; + const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = issue; const data = { action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; console.log(data); return data From 4a9b519b8d1d3857d4cc70197a7776e32798e8c8 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:47:08 -0800 Subject: [PATCH 176/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 16095a2a96a..3d24ea2f885 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -26,16 +26,11 @@ jobs: env: SECRET: ${{ secrets.AIRTABLE_KEY }} with: - result-encoding: string script: | - const { - action, - issue, - } = context; - const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = issue; - const data = { action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; - console.log(data); - return data + const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = context.issue; + const newData = { action: context.action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; + console.log(context.issue); + return newData - name: Webhook run: | curl \ From d0e41d72e9560ea04042f497222ffbd8b16b4828 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:49:22 -0800 Subject: [PATCH 177/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 3d24ea2f885..fc5436515f2 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -30,12 +30,12 @@ jobs: const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = context.issue; const newData = { action: context.action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; console.log(context.issue); - return newData - - name: Webhook - run: | - curl \ - -H "Content-Type: application/json" \ - --data "${{steps.set-result.outputs.result}}" ${{ secrets.AIRTABLE_WEBHOOK }} +# return newData +# - name: Webhook +# run: | +# curl \ +# -H "Content-Type: application/json" \ +# --data ${{steps.set-data.outputs.result}} ${{ secrets.AIRTABLE_WEBHOOK }} # --data '${{ env.ISSUE }}' \ # --data '${{ secrets.AIRTABLE_KEY }}' # - name: Webhook From 7ecb7419c7c31c40094440d1ee6152c21109224f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:52:03 -0800 Subject: [PATCH 178/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index fc5436515f2..879743a43f5 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -25,11 +25,12 @@ jobs: uses: actions/github-script@v6 env: SECRET: ${{ secrets.AIRTABLE_KEY }} + ISSUE: ${{ github.event.issue }} with: script: | - const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = context.issue; + const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = process.env.ISSUE; const newData = { action: context.action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; - console.log(context.issue); + console.log(process.env); # return newData # - name: Webhook # run: | From 5de99a2865fc155e4235cb0451839a0f4a36d42c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:53:16 -0800 Subject: [PATCH 179/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 879743a43f5..ef544e56d9a 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -25,11 +25,11 @@ jobs: uses: actions/github-script@v6 env: SECRET: ${{ secrets.AIRTABLE_KEY }} - ISSUE: ${{ github.event.issue }} + ISSUE: ${{ toJSON(github.event.issue) }} with: script: | - const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = process.env.ISSUE; - const newData = { action: context.action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; + // const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = process.env.ISSUE; + // const newData = { action: context.action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; console.log(process.env); # return newData # - name: Webhook From 23fa8b8f38c4852caaee56c9348a8cbc3b76c3b7 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:54:35 -0800 Subject: [PATCH 180/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index ef544e56d9a..fa782c6894d 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -28,9 +28,9 @@ jobs: ISSUE: ${{ toJSON(github.event.issue) }} with: script: | - // const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = process.env.ISSUE; - // const newData = { action: context.action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; - console.log(process.env); + const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = JSON.parse(process.env.ISSUE); + const newData = { action: context.action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; + console.log(newData); # return newData # - name: Webhook # run: | From 721cb0c8679d61efa0f6c56d63d36b06dd68762c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 00:56:42 -0800 Subject: [PATCH 181/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index fa782c6894d..1c39595c1f6 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -30,15 +30,12 @@ jobs: script: | const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = JSON.parse(process.env.ISSUE); const newData = { action: context.action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; - console.log(newData); -# return newData -# - name: Webhook -# run: | -# curl \ -# -H "Content-Type: application/json" \ -# --data ${{steps.set-data.outputs.result}} ${{ secrets.AIRTABLE_WEBHOOK }} -# --data '${{ env.ISSUE }}' \ -# --data '${{ secrets.AIRTABLE_KEY }}' + return newData + - name: Webhook + run: | + curl \ + -H "Content-Type: application/json" \ + --data ${{ toJSON(steps.set-data.outputs.result) }} ${{ secrets.AIRTABLE_WEBHOOK }} # - name: Webhook # uses: distributhor/workflow-webhook@v2 # env: From 749ea91412297482e0e9c39de815ef5dffa46b20 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 01:07:42 -0800 Subject: [PATCH 182/696] Update trigger_webhook.yml normalize data --- .github/workflows/trigger_webhook.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 1c39595c1f6..efa280e9032 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -29,7 +29,27 @@ jobs: with: script: | const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = JSON.parse(process.env.ISSUE); - const newData = { action: context.action, title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at, secret: process.env.SECRET }; + const newData = { + action: context.action, + title, + body, + assignees: assignees.map(a => a.login).join(','), + closed_at: closed_at.toString(), + created_at: created_at.toString(), + id: id.toString(), + labels: labels.map(l => l.name).join(','), + milestone: { + description: milestone.description, + due_on: milestone.due_on, + number: milestone.number.toString(), + state: milestone.state, + title: milestone.title + }, + number: number.toString(), + state, + updated_at: updated_at.toString(), + secret: process.env.SECRET + }; return newData - name: Webhook run: | From 9f088de914080bba2092b64522863d624c27d30b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 01:09:56 -0800 Subject: [PATCH 183/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index efa280e9032..9fe911f456d 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -34,9 +34,9 @@ jobs: title, body, assignees: assignees.map(a => a.login).join(','), - closed_at: closed_at.toString(), - created_at: created_at.toString(), - id: id.toString(), + closed_at, + created_at, + id, labels: labels.map(l => l.name).join(','), milestone: { description: milestone.description, @@ -45,9 +45,9 @@ jobs: state: milestone.state, title: milestone.title }, - number: number.toString(), + number: number, state, - updated_at: updated_at.toString(), + updated_at, secret: process.env.SECRET }; return newData From 3e9f3dfb612a1371f9cf3dd98067b8cbfacd973f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 01:14:21 -0800 Subject: [PATCH 184/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 9fe911f456d..94d5f164a2f 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -33,21 +33,21 @@ jobs: action: context.action, title, body, - assignees: assignees.map(a => a.login).join(','), - closed_at, - created_at, - id, - labels: labels.map(l => l.name).join(','), - milestone: { + assignees: assignees ? assignees.map(a => a.login).join(',') : '', + closed_at: closed_at || '', + created_at: created_at || '', + id: id && id.toString(), + labels: labels ? labels.map(l => l.name).join(','): '', + milestone: milestone ? { description: milestone.description, due_on: milestone.due_on, number: milestone.number.toString(), state: milestone.state, title: milestone.title - }, - number: number, - state, - updated_at, + } : {}, + number: number && number.toString(), + state: state || '', + updated_at: updated_at ? updated_at.toString() : '', secret: process.env.SECRET }; return newData From f2533e3bc8310f184215510195edfa11e2c1425c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 01:19:38 -0800 Subject: [PATCH 185/696] Update trigger_webhook.yml add repo --- .github/workflows/trigger_webhook.yml | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index 94d5f164a2f..a180e615ede 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -48,7 +48,8 @@ jobs: number: number && number.toString(), state: state || '', updated_at: updated_at ? updated_at.toString() : '', - secret: process.env.SECRET + secret: process.env.SECRET, + repo: context.repo }; return newData - name: Webhook @@ -56,24 +57,4 @@ jobs: curl \ -H "Content-Type: application/json" \ --data ${{ toJSON(steps.set-data.outputs.result) }} ${{ secrets.AIRTABLE_WEBHOOK }} -# - name: Webhook -# uses: distributhor/workflow-webhook@v2 -# env: -# webhook_url: ${{ secrets.AIRTABLE_WEBHOOK }} -# webhook_secret: ${{ secrets.AIRTABLE_KEY }} -# data: "${{env.ISSUE}}" - -# jobs: -# allow time for multiple changes on an issue - -# get_data: -# env: -# ISSUE: '${{github.event.issue.assignees}}' -# runs-on: ubuntu-latest -# steps: -# - name: Dump context -# id: github_context_step -# # run: echo '${{github.event.issue}}' -# run: echo 'Hello' - From 6a3406bea345a187d6427b257852583ddffa045a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 01:21:36 -0800 Subject: [PATCH 186/696] Update trigger_webhook.yml --- .github/workflows/trigger_webhook.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/trigger_webhook.yml index a180e615ede..cd0bb83ab12 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/trigger_webhook.yml @@ -38,13 +38,13 @@ jobs: created_at: created_at || '', id: id && id.toString(), labels: labels ? labels.map(l => l.name).join(','): '', - milestone: milestone ? { - description: milestone.description, - due_on: milestone.due_on, - number: milestone.number.toString(), - state: milestone.state, - title: milestone.title - } : {}, + milestone: { + description: milestone ? milestone.description : '', + due_on: milestone ? milestone.due_on : '', + number: milestone ? milestone.number.toString() : '', + state: milestone ? milestone.state : '', + title: milestone ? milestone.title : '' + }, number: number && number.toString(), state: state || '', updated_at: updated_at ? updated_at.toString() : '', From bc5b2573fa3252a84608a6b2498dd1cdb1025237 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 08:43:12 -0800 Subject: [PATCH 187/696] Update and rename trigger_webhook.yml to sync_to_airtable.yml --- .github/workflows/{trigger_webhook.yml => sync_to_airtable.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{trigger_webhook.yml => sync_to_airtable.yml} (98%) diff --git a/.github/workflows/trigger_webhook.yml b/.github/workflows/sync_to_airtable.yml similarity index 98% rename from .github/workflows/trigger_webhook.yml rename to .github/workflows/sync_to_airtable.yml index cd0bb83ab12..545333cae75 100644 --- a/.github/workflows/trigger_webhook.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -1,4 +1,4 @@ -name: automate_webhook +name: sync_to_airtable on: # Trigger the workflow when issues are updated From 596de8d7bb09c3e0f0cf36c780f22ae290a7cc5a Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 14 Feb 2023 18:43:46 +0200 Subject: [PATCH 188/696] Latest --- tokens/$metadata.json | 11 +- tokens/$themes.json | 330 ++++++++--------- tokens/calcite/dark.json | 298 +++++++++++++++- tokens/calcite/light.json | 334 ++++++++++++++++++ .../{dropdown.json => combobox.json} | 2 +- tokens/component/date-picker.json | 30 ++ tokens/component/input-date-picker.json | 249 +++++++++++++ tokens/component/input-datetime-local.json | 255 +++++++++++++ tokens/component/input-email.json | 269 ++++++++++++++ tokens/component/input-file.json | 269 ++++++++++++++ tokens/component/input-month.json | 269 ++++++++++++++ tokens/component/input-number.json | 269 ++++++++++++++ tokens/component/input-password.json | 269 ++++++++++++++ tokens/component/input-search.json | 269 ++++++++++++++ tokens/component/select.json | 128 ------- 15 files changed, 2949 insertions(+), 302 deletions(-) rename tokens/component/{dropdown.json => combobox.json} (99%) create mode 100644 tokens/component/input-date-picker.json create mode 100644 tokens/component/input-datetime-local.json create mode 100644 tokens/component/input-email.json create mode 100644 tokens/component/input-file.json create mode 100644 tokens/component/input-month.json create mode 100644 tokens/component/input-number.json create mode 100644 tokens/component/input-password.json create mode 100644 tokens/component/input-search.json delete mode 100644 tokens/component/select.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 032fa518c11..59eba507774 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -8,16 +8,23 @@ "component/avatar", "component/checkbox", "component/chip", + "component/combobox", "component/color-picker", + "component/input-date-picker", + "component/input-datetime-local", + "component/input-email", + "component/input-file", + "component/input-month", + "component/input-number", + "component/input-password", + "component/input-search", "component/input-message", "component/input-time", "component/date-picker", - "component/dropdown", "component/label", "component/loader", "component/radio", "component/rating", - "component/select", "component/tip", "component/tooltip", "component/switch", diff --git a/tokens/$themes.json b/tokens/$themes.json index d8310b89852..01e3cd8ad59 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/combobox": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,10 +18,170 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/combobox": "disabled" }, "$figmaStyleReferences": {} }, + { + "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", + "name": "Calcite - Dark", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/dark": "enabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/combobox": "source" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", + "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", + "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", + "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", + "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", + "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", + "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", + "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", + "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", + "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", + "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + } + }, + { + "id": "ed0c822a9f81dad2733717990c607c1527803a14", + "name": "Calcite - Light", + "selectedTokenSets": { + "core": "source", + "semantic": "source", + "calcite/light": "enabled", + "component/label": "source", + "component/avatar": "source", + "component/checkbox": "source", + "component/chip": "source", + "component/loader": "source", + "component/radio": "source", + "component/rating": "source", + "component/tooltip": "source", + "component/combobox": "source" + }, + "$figmaStyleReferences": { + "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", + "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", + "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", + "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", + "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", + "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", + "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", + "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", + "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", + "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", + "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + } + }, { "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", "name": "Calcite Headless", @@ -45,8 +206,8 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/dropdown": "enabled", - "component/select": "enabled" + "component/input-date-picker": "enabled", + "component/combobox": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -571,166 +732,5 @@ "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } - }, - { - "id": "ed0c822a9f81dad2733717990c607c1527803a14", - "name": "Calcite - Light", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "calcite/light": "enabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/dropdown": "source", - "component/select": "source" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", - "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", - "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", - "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", - "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", - "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", - "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", - "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", - "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", - "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", - "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", - "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", - "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", - "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," - } - }, - { - "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", - "name": "Calcite - Dark", - "selectedTokenSets": { - "core": "source", - "semantic": "source", - "calcite/dark": "enabled", - "component/label": "source", - "component/avatar": "source", - "component/checkbox": "source", - "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", - "component/dropdown": "source", - "component/select": "source" - }, - "$figmaStyleReferences": { - "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", - "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", - "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", - "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", - "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", - "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", - "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", - "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", - "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", - "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", - "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", - "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", - "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", - "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," - } } ] \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index c60b576bb0e..faa5053560f 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -560,6 +560,12 @@ "value": "$date-picker.font.selected.date.dark", "type": "color" } + }, + "active": { + "date": { + "value": "$date-picker.font.active.date.dark", + "type": "color" + } } }, "icon": { @@ -595,13 +601,293 @@ } } }, - "$date-picker": { + "input-date-picker": { "font": { - "active": { - "date": { - "value": "$date-picker.font.active.date.dark", - "type": "color" - } + "placeholder-value": { + "value": "$input-date-picker.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-date-picker.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-date-picker.icon.dark", + "type": "color" + }, + "border": { + "value": "$input-date-picker.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-date-picker.background.default.dark", + "type": "color" + }, + "arrow": { + "value": "$input-date-picker.background.arrow.dark", + "type": "color" + }, + "read-only": { + "value": "$input-date-picker.background.read-only.dark", + "type": "color" + } + } + }, + "input-datetime-local": { + "font": { + "placeholder-value": { + "value": "$input-datetime-local.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-datetime-local.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-datetime-local.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-datetime-local.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-datetime-local.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-datetime-local.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-datetime-local.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-datetime-local.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-datetime-local.border.invalid.dark", + "type": "color" + } + } + }, + "input-email": { + "font": { + "placeholder-value": { + "value": "$input-email.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-email.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-email.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-email.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-email.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-email.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-email.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-email.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-email.border.invalid.dark", + "type": "color" + } + } + }, + "input-file": { + "font": { + "placeholder-value": { + "value": "$input-file.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-file.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-file.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-file.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-file.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-file.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-file.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-file.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-file.border.invalid.dark", + "type": "color" + } + } + }, + "input-month": { + "font": { + "placeholder-value": { + "value": "$input-month.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-month.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-month.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-month.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-month.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-month.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-month.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-month.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-month.border.invalid.dark", + "type": "color" + } + } + }, + "input-number": { + "font": { + "placeholder-value": { + "value": "$input-number.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-number.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-number.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-number.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-number.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-number.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-number.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-number.border.invalid.dark", + "type": "color" + } + } + }, + "input-password": { + "font": { + "placeholder-value": { + "value": "$input-password.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-password.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-password.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-password.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-password.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-password.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-password.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-password.border.invalid.dark", + "type": "color" } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 56c6afd8af9..f81edec99cf 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -632,6 +632,340 @@ } } } + }, + "input-date-picker": { + "font": { + "placeholder-value": { + "value": "$input-date-picker.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-date-picker.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-date-picker.icon.light", + "type": "color" + }, + "border": { + "value": "$input-date-picker.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-date-picker.background.default.light", + "type": "color" + }, + "arrow": { + "value": "$input-date-picker.background.arrow.light", + "type": "color" + }, + "read-only": { + "value": "$input-date-picker.background.read-only.light", + "type": "color" + } + } + }, + "input-datetime-local": { + "font": { + "placeholder-value": { + "value": "$input-datetime-local.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-datetime-local.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-datetime-local.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-datetime-local.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-datetime-local.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-datetime-local.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-datetime-local.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-datetime-local.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-datetime-local.border.invalid.light", + "type": "color" + } + } + }, + "input-email": { + "font": { + "placeholder-value": { + "value": "$input-email.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-email.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-email.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-email.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-email.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-email.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-email.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-email.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-email.border.invalid.light", + "type": "color" + } + } + }, + "input-file": { + "font": { + "placeholder-value": { + "value": "$input-file.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-file.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-file.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-file.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-file.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-file.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-file.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-file.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-file.border.invalid.light", + "type": "color" + } + } + }, + "input-month": { + "font": { + "placeholder-value": { + "value": "$input-month.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-month.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-month.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-month.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-month.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-month.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-month.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-month.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-month.border.invalid.light", + "type": "color" + } + } + }, + "input-number": { + "font": { + "placeholder-value": { + "value": "$input-number.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-number.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-number.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-number.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-number.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-number.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-number.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-number.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-number.border.invalid.light", + "type": "color" + } + } + }, + "input-password": { + "font": { + "placeholder-value": { + "value": "$input-password.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-password.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-password.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-password.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-password.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-password.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-password.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-password.border.invalid.light", + "type": "color" + } + } + }, + "input-search": { + "font": { + "placeholder-value": { + "value": "$input-search.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-search.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-search.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-search.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-search.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-search.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-search.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-search.border.invalid.light", + "type": "color" + } + } } } } diff --git a/tokens/component/dropdown.json b/tokens/component/combobox.json similarity index 99% rename from tokens/component/dropdown.json rename to tokens/component/combobox.json index 86bc4163498..8d724bffabd 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/combobox.json @@ -1,5 +1,5 @@ { - "dropdown": { + "combobox": { "font": { "light": { "value": "$semantic.ui.color.text.3.light", diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 5f1ce617101..122de315f3a 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -258,6 +258,36 @@ "type": "color" } } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.0", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.0", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + } } }, "[specific-element]": { diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json new file mode 100644 index 00000000000..66df7cfcad6 --- /dev/null +++ b/tokens/component/input-date-picker.json @@ -0,0 +1,249 @@ +{ + "input-date-picker": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "arrow": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "arrow-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-datetime-local.json b/tokens/component/input-datetime-local.json new file mode 100644 index 00000000000..78d2248098f --- /dev/null +++ b/tokens/component/input-datetime-local.json @@ -0,0 +1,255 @@ +{ + "input-datetime-local": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-email.json b/tokens/component/input-email.json new file mode 100644 index 00000000000..8b318fe2ddd --- /dev/null +++ b/tokens/component/input-email.json @@ -0,0 +1,269 @@ +{ + "input-email": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-file.json b/tokens/component/input-file.json new file mode 100644 index 00000000000..8b48fab1068 --- /dev/null +++ b/tokens/component/input-file.json @@ -0,0 +1,269 @@ +{ + "input-file": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-month.json b/tokens/component/input-month.json new file mode 100644 index 00000000000..f72e68c2e95 --- /dev/null +++ b/tokens/component/input-month.json @@ -0,0 +1,269 @@ +{ + "input-month": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-number.json b/tokens/component/input-number.json new file mode 100644 index 00000000000..4410d2c2561 --- /dev/null +++ b/tokens/component/input-number.json @@ -0,0 +1,269 @@ +{ + "input-number": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-password.json b/tokens/component/input-password.json new file mode 100644 index 00000000000..1fb152a2415 --- /dev/null +++ b/tokens/component/input-password.json @@ -0,0 +1,269 @@ +{ + "input-password": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-search.json b/tokens/component/input-search.json new file mode 100644 index 00000000000..ea96f88a12d --- /dev/null +++ b/tokens/component/input-search.json @@ -0,0 +1,269 @@ +{ + "input-search": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/select.json b/tokens/component/select.json deleted file mode 100644 index c20000628f3..00000000000 --- a/tokens/component/select.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "select": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file From 7d4518c29446f02a332a87cc47d02a0129c863e3 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 14 Feb 2023 18:45:29 +0200 Subject: [PATCH 189/696] Latest --- tokens/$themes.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 01e3cd8ad59..49265716b63 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/combobox": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/combobox": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, From 587af4ca0ca9e636078e57069545f4935fbc636e Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 13:06:08 -0800 Subject: [PATCH 190/696] Set consistency for sync_to_airtable normalize with calcite-components --- .github/workflows/sync_to_airtable.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 545333cae75..907e7af9bfa 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -1,20 +1,22 @@ -name: sync_to_airtable +name: Sync to Airtable on: - # Trigger the workflow when issues are updated issues: types: [opened, edited, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned] -# Automatically cancel any prior runs of this automation +# Every time an issue is edited in any way, it triggers this action. +# However, if this action is already running, we only want the latest run to complete. +# The [concurrency:group] prevents duplicate runs of the Action on the same github issue, +# while allowing concurrent runs triggered from different issues. concurrency: - group: ${{ github.workflow }}-${{ github.event.issue.number }}-${{ github.ref }} - cancel-in-progress: true + group: ${{ github.workflow }}-${{ github.event.issue.number }}-${{ github.ref }} + cancel-in-progress: true jobs: allow_for_changes: runs-on: ubuntu-latest steps: - - name: Sleep for .5 seconds + - name: Sleep to allow time for multiple updates run: sleep .5s shell: bash get_data: @@ -29,7 +31,7 @@ jobs: with: script: | const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = JSON.parse(process.env.ISSUE); - const newData = { + return { action: context.action, title, body, @@ -37,7 +39,7 @@ jobs: closed_at: closed_at || '', created_at: created_at || '', id: id && id.toString(), - labels: labels ? labels.map(l => l.name).join(','): '', + labels: labels ? labels.map(l => l.name).join(',') : '', milestone: { description: milestone ? milestone.description : '', due_on: milestone ? milestone.due_on : '', @@ -51,10 +53,8 @@ jobs: secret: process.env.SECRET, repo: context.repo }; - return newData - name: Webhook run: | curl \ -H "Content-Type: application/json" \ --data ${{ toJSON(steps.set-data.outputs.result) }} ${{ secrets.AIRTABLE_WEBHOOK }} - From c000ee13972ea0432b3027703f306e88addd1b42 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 19:21:44 -0800 Subject: [PATCH 191/696] Update sync_to_airtable.yml --- .github/workflows/sync_to_airtable.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 907e7af9bfa..717a7a92d41 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -31,10 +31,12 @@ jobs: with: script: | const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = JSON.parse(process.env.ISSUE); - return { + const bodyData = JSON.stringify(body).replace('`', '\`').replace('<', '\<').replace('>', \>); + + const returnData = { action: context.action, title, - body, + body: bodyData, assignees: assignees ? assignees.map(a => a.login).join(',') : '', closed_at: closed_at || '', created_at: created_at || '', @@ -53,6 +55,8 @@ jobs: secret: process.env.SECRET, repo: context.repo }; + + return returnData - name: Webhook run: | curl \ From 7680b8dada01544bda910d42bfe08cefa4ae850f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 19:25:43 -0800 Subject: [PATCH 192/696] ci(actions): encode result to string --- .github/workflows/sync_to_airtable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 717a7a92d41..819fa887985 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -29,14 +29,14 @@ jobs: SECRET: ${{ secrets.AIRTABLE_KEY }} ISSUE: ${{ toJSON(github.event.issue) }} with: + result-encoding: string script: | const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = JSON.parse(process.env.ISSUE); - const bodyData = JSON.stringify(body).replace('`', '\`').replace('<', '\<').replace('>', \>); - + const returnData = { action: context.action, title, - body: bodyData, + body: body, assignees: assignees ? assignees.map(a => a.login).join(',') : '', closed_at: closed_at || '', created_at: created_at || '', From 9b20dca2ca25eec8c3c419112cdfeccb83ac58dc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 19:27:15 -0800 Subject: [PATCH 193/696] ci(action): change stringify --- .github/workflows/sync_to_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 819fa887985..75a796d2ade 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -56,9 +56,9 @@ jobs: repo: context.repo }; - return returnData + return JSON.stringify(returnData) - name: Webhook run: | curl \ -H "Content-Type: application/json" \ - --data ${{ toJSON(steps.set-data.outputs.result) }} ${{ secrets.AIRTABLE_WEBHOOK }} + --data ${{ steps.set-data.outputs.result }} ${{ secrets.AIRTABLE_WEBHOOK }} From 078b60c0b4b516f3ba1a848e72c8486ee6a95df1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 19:29:56 -0800 Subject: [PATCH 194/696] ci(action): data format --- .github/workflows/sync_to_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 75a796d2ade..3a698e5a8a6 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -61,4 +61,4 @@ jobs: run: | curl \ -H "Content-Type: application/json" \ - --data ${{ steps.set-data.outputs.result }} ${{ secrets.AIRTABLE_WEBHOOK }} + --data ${{ fromJSON(steps.set-data.outputs.result) }} ${{ secrets.AIRTABLE_WEBHOOK }} From f7bd3f6bcfcc0815a052d9b0209ba40665893898 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 19:31:42 -0800 Subject: [PATCH 195/696] ci(action): revert to something I think works --- .github/workflows/sync_to_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 3a698e5a8a6..a601c3f43fc 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -56,7 +56,7 @@ jobs: repo: context.repo }; - return JSON.stringify(returnData) + return returnData - name: Webhook run: | curl \ From 28b96261fbdb78616c73d371e5ffed5a995ad1f9 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 19:34:25 -0800 Subject: [PATCH 196/696] ci(actions): revert to working version --- .github/workflows/sync_to_airtable.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index a601c3f43fc..907e7af9bfa 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -29,14 +29,12 @@ jobs: SECRET: ${{ secrets.AIRTABLE_KEY }} ISSUE: ${{ toJSON(github.event.issue) }} with: - result-encoding: string script: | const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = JSON.parse(process.env.ISSUE); - - const returnData = { + return { action: context.action, title, - body: body, + body, assignees: assignees ? assignees.map(a => a.login).join(',') : '', closed_at: closed_at || '', created_at: created_at || '', @@ -55,10 +53,8 @@ jobs: secret: process.env.SECRET, repo: context.repo }; - - return returnData - name: Webhook run: | curl \ -H "Content-Type: application/json" \ - --data ${{ fromJSON(steps.set-data.outputs.result) }} ${{ secrets.AIRTABLE_WEBHOOK }} + --data ${{ toJSON(steps.set-data.outputs.result) }} ${{ secrets.AIRTABLE_WEBHOOK }} From 3e0a8758d19de78192a80a47944c84fe83146f17 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 20:09:23 -0800 Subject: [PATCH 197/696] ci(action): try just replacing < and > --- .github/workflows/sync_to_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 907e7af9bfa..893eb9cd541 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -34,7 +34,7 @@ jobs: return { action: context.action, title, - body, + body: body.replace('<', '\<').replace('>', '\>'), assignees: assignees ? assignees.map(a => a.login).join(',') : '', closed_at: closed_at || '', created_at: created_at || '', From 28d5e73c0a6cfe1019e9d95aa5c959005d8ee4d1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 20:16:54 -0800 Subject: [PATCH 198/696] ci(action): try fetch instead --- .github/workflows/sync_to_airtable.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 893eb9cd541..b8155b24942 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -28,10 +28,11 @@ jobs: env: SECRET: ${{ secrets.AIRTABLE_KEY }} ISSUE: ${{ toJSON(github.event.issue) }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = JSON.parse(process.env.ISSUE); - return { + const data = { action: context.action, title, body: body.replace('<', '\<').replace('>', '\>'), @@ -53,8 +54,15 @@ jobs: secret: process.env.SECRET, repo: context.repo }; - - name: Webhook + const stringifyData = JSON.stringify(data); + return fetch(process.env.WEBHOOK, { + body: "{"content\\": \\"Posted Via Command line\\"}", + headers: { + Accept: "application/json", + "Content-Type": "application/json" + }, + method: "POST" + }).then((result) => result).catch((error) => error) + - name: Log Result run: | - curl \ - -H "Content-Type: application/json" \ - --data ${{ toJSON(steps.set-data.outputs.result) }} ${{ secrets.AIRTABLE_WEBHOOK }} + echo "${{steps.set-data.outputs.result}}" From a804e2676651394fc77561399c987ad5151d2433 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 20:18:30 -0800 Subject: [PATCH 199/696] ci(action): replace ` --- .github/workflows/sync_to_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index b8155b24942..3187efe7f88 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -35,7 +35,7 @@ jobs: const data = { action: context.action, title, - body: body.replace('<', '\<').replace('>', '\>'), + body: body.replace('`', '\`').replace('<', '\<').replace('>', '\>'), assignees: assignees ? assignees.map(a => a.login).join(',') : '', closed_at: closed_at || '', created_at: created_at || '', From 84fd86803ad1aab1a98e7d43a5ac85196c5cf54c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 20:20:00 -0800 Subject: [PATCH 200/696] ci(action): see what data is --- .github/workflows/sync_to_airtable.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 3187efe7f88..454e8eab76a 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -54,14 +54,15 @@ jobs: secret: process.env.SECRET, repo: context.repo }; - const stringifyData = JSON.stringify(data); - return fetch(process.env.WEBHOOK, { - body: "{"content\\": \\"Posted Via Command line\\"}", - headers: { - Accept: "application/json", - "Content-Type": "application/json" - }, - method: "POST" + return data; + // const stringifyData = JSON.stringify(data); + // return fetch(process.env.WEBHOOK, { + // body: "{"content\\": \\"Posted Via Command line\\"}", + // headers: { + // Accept: "application/json", + // "Content-Type": "application/json" + // }, + // method: "POST" }).then((result) => result).catch((error) => error) - name: Log Result run: | From 35b3051511260ca3ca524af02e42e4bea02c7c22 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 20:24:05 -0800 Subject: [PATCH 201/696] ci(actions): better understand output --- .github/workflows/sync_to_airtable.yml | 35 ++------------------------ 1 file changed, 2 insertions(+), 33 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 454e8eab76a..a10e714fae0 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -31,39 +31,8 @@ jobs: WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = JSON.parse(process.env.ISSUE); - const data = { - action: context.action, - title, - body: body.replace('`', '\`').replace('<', '\<').replace('>', '\>'), - assignees: assignees ? assignees.map(a => a.login).join(',') : '', - closed_at: closed_at || '', - created_at: created_at || '', - id: id && id.toString(), - labels: labels ? labels.map(l => l.name).join(',') : '', - milestone: { - description: milestone ? milestone.description : '', - due_on: milestone ? milestone.due_on : '', - number: milestone ? milestone.number.toString() : '', - state: milestone ? milestone.state : '', - title: milestone ? milestone.title : '' - }, - number: number && number.toString(), - state: state || '', - updated_at: updated_at ? updated_at.toString() : '', - secret: process.env.SECRET, - repo: context.repo - }; - return data; - // const stringifyData = JSON.stringify(data); - // return fetch(process.env.WEBHOOK, { - // body: "{"content\\": \\"Posted Via Command line\\"}", - // headers: { - // Accept: "application/json", - // "Content-Type": "application/json" - // }, - // method: "POST" - }).then((result) => result).catch((error) => error) + const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = process.env.ISSUE; + return body; - name: Log Result run: | echo "${{steps.set-data.outputs.result}}" From 2c11ff521905d83b8a1a6108708bee02d2c13107 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 14 Feb 2023 20:29:27 -0800 Subject: [PATCH 202/696] ci(action): try to change the shape --- .github/workflows/sync_to_airtable.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index a10e714fae0..94aea39b8d9 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -32,7 +32,9 @@ jobs: with: script: | const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = process.env.ISSUE; - return body; + const test = JSON.parse(body) + return test; + result-encoding: string - name: Log Result run: | echo "${{steps.set-data.outputs.result}}" From 576a62fbbb03035977798c24c76d3d26dcd33127 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 20 Feb 2023 10:29:48 +0000 Subject: [PATCH 203/696] prefix tokens --- tokens/calcite/light.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 134b9f86417..f81edec99cf 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -852,6 +852,10 @@ "label": { "value": "$input-number.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-number.font.prefix-suffix.light", + "type": "color" } }, "icon": { From 2b75963c2ed6d61dba044c27c2249ee21cbf28b2 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 20 Feb 2023 17:52:16 +0000 Subject: [PATCH 204/696] password token --- tokens/calcite/dark.json | 4 ++++ tokens/calcite/light.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index faa5053560f..4c94b8dc9ad 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -860,6 +860,10 @@ "label": { "value": "$input-password.font.label.dark", "type": "color" + }, + "prefix-suffix": { + "value": "$input-password.font.prefix-suffix.dark", + "type": "color" } }, "icon": { diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index f81edec99cf..1d1041ea6e9 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -896,6 +896,10 @@ "label": { "value": "$input-password.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-password.font.prefix-suffix.light", + "type": "color" } }, "icon": { From c5f9bc8516c77b9040016b45f8406c9b2268d936 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 20 Feb 2023 19:00:08 +0000 Subject: [PATCH 205/696] search tokens --- tokens/calcite/dark.json | 44 +++++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 4 ++++ 2 files changed, 48 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 4c94b8dc9ad..f149aefab78 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -894,6 +894,50 @@ "type": "color" } } + }, + "input-search": { + "font": { + "placeholder-value": { + "value": "$input-search.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-search.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-search.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-search.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-search.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-search.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-search.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-search.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-search.border.invalid.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 1d1041ea6e9..e237785602b 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -940,6 +940,10 @@ "label": { "value": "$input-search.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-search.font.prefix-suffix.light", + "type": "color" } }, "icon": { From 1a30e80a82734604b23264cd8e20c2a0bf110f73 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 21 Feb 2023 08:07:05 +0000 Subject: [PATCH 206/696] Input week tokens --- tokens/$metadata.json | 2 + tokens/$themes.json | 20 +- tokens/calcite/dark.json | 88 +++++++++ tokens/calcite/light.json | 88 +++++++++ tokens/component/input-telephone.json | 269 ++++++++++++++++++++++++++ tokens/component/input-text.json | 269 ++++++++++++++++++++++++++ 6 files changed, 731 insertions(+), 5 deletions(-) create mode 100644 tokens/component/input-telephone.json create mode 100644 tokens/component/input-text.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 92b841ac2a1..863caa8d083 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -17,6 +17,8 @@ "component/input-number", "component/input-password", "component/input-search", + "component/input-telephone", + "component/input-text", "component/input-message", "component/input-time", "component/date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index 2ddae4f1224..756fba0ab89 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,9 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/input-telephone": "disabled", + "component/input-text": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +19,9 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/input-telephone": "disabled", + "component/input-text": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +39,9 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-telephone": "disabled", + "component/input-text": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +118,9 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/input-telephone": "disabled", + "component/input-text": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -202,7 +210,9 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled" + "component/input-date-picker": "enabled", + "component/input-telephone": "disabled", + "component/input-text": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index f149aefab78..ef36651300a 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -938,6 +938,94 @@ "type": "color" } } + }, + "input-telephone": { + "font": { + "placeholder-value": { + "value": "$input-telephone.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-telephone.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-telephone.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-telephone.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-telephone.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-telephone.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-telephone.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-telephone.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-telephone.border.invalid.dark", + "type": "color" + } + } + }, + "input-text": { + "font": { + "placeholder-value": { + "value": "$input-text.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-text.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-text.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-text.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-text.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-text.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-text.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-text.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-text.border.invalid.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index e237785602b..dd947085301 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -974,6 +974,94 @@ "type": "color" } } + }, + "input-telephone": { + "font": { + "placeholder-value": { + "value": "$input-telephone.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-telephone.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-telephone.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-telephone.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-telephone.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-telephone.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-telephone.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-telephone.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-telephone.border.invalid.light", + "type": "color" + } + } + }, + "input-text": { + "font": { + "placeholder-value": { + "value": "$input-text.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-text.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-text.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-text.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-text.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-text.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-text.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-text.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-text.border.invalid.light", + "type": "color" + } + } } } } diff --git a/tokens/component/input-telephone.json b/tokens/component/input-telephone.json new file mode 100644 index 00000000000..3116ce7c069 --- /dev/null +++ b/tokens/component/input-telephone.json @@ -0,0 +1,269 @@ +{ + "input-telephone": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-text.json b/tokens/component/input-text.json new file mode 100644 index 00000000000..3116ce7c069 --- /dev/null +++ b/tokens/component/input-text.json @@ -0,0 +1,269 @@ +{ + "input-telephone": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file From be6f9397df6da99767dbfe39c8f898b15099f912 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 21 Feb 2023 08:30:25 +0000 Subject: [PATCH 207/696] textarea tokens --- tokens/$metadata.json | 4 +- tokens/$themes.json | 20 +-- tokens/calcite/dark.json | 76 +++++++++ tokens/calcite/light.json | 80 +++++++++ tokens/component/input-week.json | 269 +++++++++++++++++++++++++++++++ tokens/component/textarea.json | 211 ++++++++++++++++++++++++ 6 files changed, 644 insertions(+), 16 deletions(-) create mode 100644 tokens/component/input-week.json create mode 100644 tokens/component/textarea.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 863caa8d083..5facce91917 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -18,9 +18,11 @@ "component/input-password", "component/input-search", "component/input-telephone", - "component/input-text", "component/input-message", "component/input-time", + "component/input-text", + "component/input-week", + "component/textarea", "component/date-picker", "component/label", "component/loader", diff --git a/tokens/$themes.json b/tokens/$themes.json index 756fba0ab89..2ddae4f1224 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,9 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/input-telephone": "disabled", - "component/input-text": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -19,9 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/input-telephone": "disabled", - "component/input-text": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -39,9 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-telephone": "disabled", - "component/input-text": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -118,9 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/input-telephone": "disabled", - "component/input-text": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -210,9 +202,7 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled", - "component/input-telephone": "disabled", - "component/input-text": "disabled" + "component/input-date-picker": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index ef36651300a..b03d852257c 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1026,6 +1026,82 @@ "type": "color" } } + }, + "input-week": { + "font": { + "placeholder-value": { + "value": "$input-week.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-week.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-week.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-week.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-week.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-week.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-week.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-week.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-week.border.invalid.dark", + "type": "color" + } + } + }, + "textarea": { + "font": { + "placeholder-value": { + "value": "$textarea.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$textarea.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$textarea.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$textarea.background.default.dark", + "type": "color" + }, + "read-only": { + "value": "$textarea.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "{textarea.border.dark}", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index dd947085301..ed5236617e7 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1062,6 +1062,86 @@ "type": "color" } } + }, + "input-week": { + "font": { + "placeholder-value": { + "value": "$input-week.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-week.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-week.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-week.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-week.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-week.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-week.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-week.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-week.border.invalid.light", + "type": "color" + } + } + }, + "textarea": { + "font": { + "placeholder-value": { + "value": "$textarea.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$textarea.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$textarea.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$textarea.background.default.light", + "type": "color" + }, + "read-only": { + "value": "$textarea.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "{textarea.border.light}", + "type": "color" + }, + "invalid": { + "value": "$textarea.border.invalid.light", + "type": "color" + } + } } } } diff --git a/tokens/component/input-week.json b/tokens/component/input-week.json new file mode 100644 index 00000000000..10e3d2af452 --- /dev/null +++ b/tokens/component/input-week.json @@ -0,0 +1,269 @@ +{ + "input-week": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json new file mode 100644 index 00000000000..a3cfdf6e688 --- /dev/null +++ b/tokens/component/textarea.json @@ -0,0 +1,211 @@ +{ + "textarea": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file From aa85eda4b658959ae49fe17094561c35eacc9b2e Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 21 Feb 2023 13:27:08 +0000 Subject: [PATCH 208/696] tabs tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 14 ++- tokens/component/tab-tile.json | 177 +++++++++++++++++++++++++++++++++ 3 files changed, 191 insertions(+), 1 deletion(-) create mode 100644 tokens/component/tab-tile.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 5facce91917..b2380d59587 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -28,6 +28,7 @@ "component/loader", "component/radio", "component/rating", + "component/tab-tile", "component/tip", "component/tooltip", "component/switch", diff --git a/tokens/$themes.json b/tokens/$themes.json index 2ddae4f1224..72beff261ae 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -202,7 +202,19 @@ "component/tip": "enabled", "component/color-picker": "enabled", "component/date-picker": "enabled", - "component/input-date-picker": "enabled" + "component/input-date-picker": "enabled", + "component/tab-tile": "enabled", + "component/input-datetime-local": "enabled", + "component/input-email": "enabled", + "component/input-file": "enabled", + "component/input-month": "enabled", + "component/input-number": "enabled", + "component/input-password": "enabled", + "component/input-search": "enabled", + "component/input-telephone": "enabled", + "component/input-text": "enabled", + "component/input-week": "enabled", + "component/textarea": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/tab-tile.json b/tokens/component/tab-tile.json new file mode 100644 index 00000000000..7fcb8d33cdf --- /dev/null +++ b/tokens/component/tab-tile.json @@ -0,0 +1,177 @@ +{ + "tab-tile": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From 993c8473d3504c0323305fc2c37e75f3f34f4325 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 21 Feb 2023 19:24:43 +0000 Subject: [PATCH 209/696] textarea token --- tokens/component/textarea.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json index a3cfdf6e688..ad48b92b096 100644 --- a/tokens/component/textarea.json +++ b/tokens/component/textarea.json @@ -58,6 +58,28 @@ "value": "$semantic.font.default.medium.0h", "type": "typography" } + }, + "chat-limit": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } } }, "icon": { From 56cae60e4a47c1608a54a29d540d847af0b8de59 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 21 Feb 2023 11:40:02 -0800 Subject: [PATCH 210/696] ci(actions): add file to listen for webhooks --- .github/workflows/sync_from_airtable.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/sync_from_airtable.yml diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml new file mode 100644 index 00000000000..d5f0ddd5788 --- /dev/null +++ b/.github/workflows/sync_from_airtable.yml @@ -0,0 +1,19 @@ +name: Sync from Airtable + +on: + # publish blog using webhook + repository_dispatch: + types: [update_issue] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ github.event }}" From 0c372e991be418b232d8849c5c3816b99c1ae0bc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 21 Feb 2023 11:53:34 -0800 Subject: [PATCH 211/696] ci(actions): get client payload from airtable --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index d5f0ddd5788..2bedb81b08e 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -16,4 +16,4 @@ jobs: steps: # Runs a single command using the runners shell - name: Send greeting - run: echo "Hello ${{ github.event }}" + run: echo "Hello ${{ toJSON(github.event.client_payload) }}" From ef177b0a89d20e297f4d3b9c584da5f66b80705a Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 21 Feb 2023 19:53:52 +0000 Subject: [PATCH 212/696] Textarea tokens --- tokens/calcite/dark.json | 4 ++++ tokens/calcite/light.json | 8 ++++---- tokens/component/textarea.json | 10 +--------- 3 files changed, 9 insertions(+), 13 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index b03d852257c..258f8ab6454 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1080,6 +1080,10 @@ "label": { "value": "$textarea.font.label.dark", "type": "color" + }, + "chat-limit": { + "value": "$textarea.font.chat-limit.dark", + "type": "color" } }, "icon": { diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index ed5236617e7..71bf534f0bf 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1116,6 +1116,10 @@ "label": { "value": "$textarea.font.label.light", "type": "color" + }, + "chat-limit": { + "value": "$textarea.font.chat-limit.light", + "type": "color" } }, "icon": { @@ -1136,10 +1140,6 @@ "default": { "value": "{textarea.border.light}", "type": "color" - }, - "invalid": { - "value": "$textarea.border.invalid.light", - "type": "color" } } } diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json index ad48b92b096..ce0619db8fe 100644 --- a/tokens/component/textarea.json +++ b/tokens/component/textarea.json @@ -162,7 +162,7 @@ "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" } }, @@ -220,14 +220,6 @@ "type": "composition" } } - }, - "opacity": { - "placeholder": { - "light": { - "value": "{core.opacity.50}", - "type": "opacity" - } - } } } } \ No newline at end of file From 78d75ff19be0357f81a1503facc00370fbca17d5 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 21 Feb 2023 11:58:53 -0800 Subject: [PATCH 213/696] ci(actions): retrieve payload --- .github/workflows/sync_from_airtable.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 2bedb81b08e..427411b7772 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -5,15 +5,12 @@ on: repository_dispatch: types: [update_issue] -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "greet" - greet: - # The type of runner that the job will run on + test1: + name: Test1 (conditional run) runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Runs a single command using the runners shell - - name: Send greeting - run: echo "Hello ${{ toJSON(github.event.client_payload) }}" + - run: 'echo "field: ${{ github.event.client_payload.payload[issue Number] }}"' + - run: 'echo "payload: ${{ toJson(github.event.client_payload) }}"' +# - run: echo baz +# if: github.event.client_payload.payload.version == 'production' From b49ae3e656d171a69c455cd204a4f84892e1577e Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 21 Feb 2023 12:00:31 -0800 Subject: [PATCH 214/696] ci(action): WIP - get airtable data --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 427411b7772..ad54bde823a 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -10,7 +10,7 @@ jobs: name: Test1 (conditional run) runs-on: ubuntu-latest steps: - - run: 'echo "field: ${{ github.event.client_payload.payload[issue Number] }}"' +# - run: 'echo "field: ${{ github.event.client_payload.payload[issue Number] }}"' - run: 'echo "payload: ${{ toJson(github.event.client_payload) }}"' # - run: echo baz # if: github.event.client_payload.payload.version == 'production' From 8a572693c96994f71b44cc2a96f8085d2d441a25 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 21 Feb 2023 12:07:35 -0800 Subject: [PATCH 215/696] ci(actions): WIP - sync from airtable --- .github/workflows/sync_from_airtable.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index ad54bde823a..c80ff528afd 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -10,7 +10,10 @@ jobs: name: Test1 (conditional run) runs-on: ubuntu-latest steps: + - name: Dump GitHub context + id: github_context_step + run: echo '${{ toJSON(github) }}' # - run: 'echo "field: ${{ github.event.client_payload.payload[issue Number] }}"' - - run: 'echo "payload: ${{ toJson(github.event.client_payload) }}"' +# - run: 'echo "payload: ${{ toJson(github.event.client_payload) }}"' # - run: echo baz # if: github.event.client_payload.payload.version == 'production' From 14e9c19757cbf30f56128c878af7a568a87ab458 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Tue, 21 Feb 2023 20:53:25 +0000 Subject: [PATCH 216/696] tabs title tokens --- tokens/$metadata.json | 2 +- tokens/$themes.json | 4 +- .../{tab-tile.json => tab-title.json} | 120 ++++++++++++------ 3 files changed, 81 insertions(+), 45 deletions(-) rename tokens/component/{tab-tile.json => tab-title.json} (60%) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index b2380d59587..d6fd0d23f50 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -28,7 +28,7 @@ "component/loader", "component/radio", "component/rating", - "component/tab-tile", + "component/tab-title", "component/tip", "component/tooltip", "component/switch", diff --git a/tokens/$themes.json b/tokens/$themes.json index 72beff261ae..20f3ecc0c58 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -203,7 +203,6 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", - "component/tab-tile": "enabled", "component/input-datetime-local": "enabled", "component/input-email": "enabled", "component/input-file": "enabled", @@ -214,7 +213,8 @@ "component/input-telephone": "enabled", "component/input-text": "enabled", "component/input-week": "enabled", - "component/textarea": "enabled" + "component/textarea": "enabled", + "component/tab-title": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/tab-tile.json b/tokens/component/tab-title.json similarity index 60% rename from tokens/component/tab-tile.json rename to tokens/component/tab-title.json index 7fcb8d33cdf..9259d955974 100644 --- a/tokens/component/tab-tile.json +++ b/tokens/component/tab-title.json @@ -1,13 +1,15 @@ { "tab-tile": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, "sm": { "value": "$semantic.font.default.bold.-3h", @@ -20,16 +22,38 @@ "lg": { "value": "$semantic.font.default.bold.0h", "type": "typography" + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "active": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } } }, "border": { @@ -40,6 +64,16 @@ "dark": { "value": "$semantic.ui.color.border.1.dark", "type": "color" + }, + "active": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } } }, "background": { @@ -92,60 +126,62 @@ "type": "borderWidth" } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.3", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.3", "type": "spacing" } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "left-right": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } } }, "[specific-element]": { From 1069e655eabf2ee62c2e6a94ae2ad52877f2c22b Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 22 Feb 2023 16:04:25 +0000 Subject: [PATCH 217/696] tabs tokens --- tokens/component/tab-title.json | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 9259d955974..54dec138bcc 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -25,11 +25,11 @@ }, "active": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } } @@ -47,33 +47,23 @@ }, "active": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } } }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "$semantic.ui.color.border.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "$semantic.ui.color.border.3.dark", "type": "color" - }, - "active": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } } }, "background": { From 4db4609e37d6c19b2032fcfbe47f058bf191646e Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 22 Feb 2023 16:27:28 +0000 Subject: [PATCH 218/696] tabs tokens --- tokens/component/tab-title.json | 84 ++++++++++++++++++++------------- 1 file changed, 51 insertions(+), 33 deletions(-) diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 54dec138bcc..0166d9376eb 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -12,15 +12,15 @@ } }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.regular.0h", "type": "typography" }, "active": { @@ -56,64 +56,70 @@ } } }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "background": { - "default": { + "bordered": { + "border": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.border.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.border.3.dark", "type": "color" } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" + }, + "active": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } } }, "icon-size": { @@ -198,6 +204,18 @@ "type": "composition" } } + }, + "border": { + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } } } } \ No newline at end of file From 1e5698f6b8928d377d2c7c1faa1a471e32add193 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 22 Feb 2023 16:44:08 +0000 Subject: [PATCH 219/696] tabs tokens --- tokens/calcite/dark.json | 42 ++++++++++++++++++++++++++++++++- tokens/calcite/light.json | 40 +++++++++++++++++++++++++++++++ tokens/component/tab-title.json | 2 +- 3 files changed, 82 insertions(+), 2 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 258f8ab6454..76e187ae720 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1102,7 +1102,47 @@ }, "border": { "default": { - "value": "{textarea.border.dark}", + "value": "$textarea.border.dark", + "type": "color" + } + } + }, + "tab-title": { + "font": { + "default": { + "value": "$tab-title.font.default.dark", + "type": "color" + }, + "active": { + "value": "$tab-title.font.active.dark", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$tab-title.icon.default.dark", + "type": "color" + }, + "active": { + "value": "$tab-title.icon.active.dark", + "type": "color" + } + }, + "bordered": { + "border": { + "value": "$tab-title.bordered.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$tab-title.bordered.background.default.dark", + "type": "color" + } + } + }, + "border": { + "active": { + "value": "$tab-title.border.active.dark", "type": "color" } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 71bf534f0bf..6491050b1b3 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1142,6 +1142,46 @@ "type": "color" } } + }, + "tab-title": { + "font": { + "default": { + "value": "$tab-title.font.default.light", + "type": "color" + }, + "active": { + "value": "$tab-title.font.active.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$tab-title.icon.default.light", + "type": "color" + }, + "active": { + "value": "$tab-title.icon.active.light", + "type": "color" + } + }, + "bordered": { + "border": { + "value": "$tab-title.bordered.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$tab-title.bordered.background.default.light", + "type": "color" + } + } + }, + "border": { + "active": { + "value": "$tab-title.border.active.light", + "type": "color" + } + } } } } diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 0166d9376eb..c88585a749b 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -1,5 +1,5 @@ { - "tab-tile": { + "tab-title": { "font": { "default": { "light": { From 45a2a294d868a05cbd99c6bb8d89f22815f4abb2 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 22 Feb 2023 17:42:35 +0000 Subject: [PATCH 220/696] tabs token --- tokens/component/tab-title.json | 84 +++++++++++++++++++++++---------- 1 file changed, 58 insertions(+), 26 deletions(-) diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index c88585a749b..db87f6f3f8f 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -78,6 +78,36 @@ "type": "color" } } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } } }, "border-radius": { @@ -150,33 +180,35 @@ "type": "spacing" } }, - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" + "default": { + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } } } }, From 4df6d9cf81be42cc46c5eb09f6a98ee43ce7a7be Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 22 Feb 2023 15:31:31 -0800 Subject: [PATCH 221/696] ci(action): change dispatch name --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index c80ff528afd..6c00b55f91f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -3,7 +3,7 @@ name: Sync from Airtable on: # publish blog using webhook repository_dispatch: - types: [update_issue] + types: [airtable-update] jobs: test1: @@ -12,7 +12,7 @@ jobs: steps: - name: Dump GitHub context id: github_context_step - run: echo '${{ toJSON(github) }}' + run: echo '${{ toJSON(github.event.client_payload) }}' # - run: 'echo "field: ${{ github.event.client_payload.payload[issue Number] }}"' # - run: 'echo "payload: ${{ toJson(github.event.client_payload) }}"' # - run: echo baz From 532250d861c8c9c0fb267efce642d925561f5652 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 23 Feb 2023 11:59:34 +0000 Subject: [PATCH 222/696] tabs tokens --- tokens/component/tab-title.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index db87f6f3f8f..c8ee07aa356 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -82,7 +82,7 @@ "space-around": { "left-right": { "sm": { - "value": "$core.spacing.1", + "value": "$core.spacing.5", "type": "spacing" }, "md": { @@ -96,7 +96,7 @@ }, "top-bottom": { "sm": { - "value": "$core.spacing.5", + "value": "$core.spacing.1", "type": "spacing" }, "md": { From b726ad511dbc6d40b30b7c2ed690996d26e52892 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 14:32:52 +0100 Subject: [PATCH 223/696] Latest updates and fixes --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++- tokens/component/button.json | 239 +++++++++++++++++++++++++++++++++++ tokens/semantic.json | 10 ++ 4 files changed, 260 insertions(+), 5 deletions(-) create mode 100644 tokens/component/button.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 59eba507774..771785fbe1b 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -29,6 +29,7 @@ "component/tooltip", "component/switch", "component/[template-comp-name]", + "component/button", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/$themes.json b/tokens/$themes.json index 49265716b63..0dfa0831eda 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/button": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/button": "disabled" }, "$figmaStyleReferences": {} }, @@ -36,7 +38,8 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/combobox": "source" + "component/combobox": "source", + "component/button": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -114,7 +117,8 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/combobox": "source" + "component/combobox": "source", + "component/button": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -205,7 +209,8 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", - "component/combobox": "enabled" + "component/combobox": "enabled", + "component/button": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/button.json b/tokens/component/button.json new file mode 100644 index 00000000000..7d532a8aa09 --- /dev/null +++ b/tokens/component/button.json @@ -0,0 +1,239 @@ +{ + "button": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "background": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 0c783c72a9a..6f678e878b4 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1424,6 +1424,16 @@ "type": "color" } }, + "3": { + "light": { + "value": "$core.color.neutral.blk-020", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + }, "current": { "light": { "value": "$core.color.palette.high-saturation.blue.h-bb-010", From 27190fae23891392ea20c9ff2433fb8ec0131f73 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 14:49:18 +0100 Subject: [PATCH 224/696] Updates --- tokens/$themes.json | 6 ++---- tokens/component/button.json | 34 ++++++++++++++++++++++++++++------ 2 files changed, 30 insertions(+), 10 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 0dfa0831eda..a795ca2d11e 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/button": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/button": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, diff --git a/tokens/component/button.json b/tokens/component/button.json index 7d532a8aa09..f3b7c47a10c 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -23,13 +23,35 @@ } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "inverse": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } }, "border": { From e6e7e5aaecbdc175d54cf4ab784dd1a2f59046f5 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 15:09:54 +0100 Subject: [PATCH 225/696] Latest update --- tokens/$metadata.json | 2 +- tokens/component/button.json | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 771785fbe1b..d8831dde23c 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -6,6 +6,7 @@ "component/accordion", "component/alert", "component/avatar", + "component/button", "component/checkbox", "component/chip", "component/combobox", @@ -29,7 +30,6 @@ "component/tooltip", "component/switch", "component/[template-comp-name]", - "component/button", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/component/button.json b/tokens/component/button.json index f3b7c47a10c..3f8c66d3535 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -43,6 +43,16 @@ "type": "color" } }, + "neutral": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, "red": { "light": { "value": "$semantic.ui.color.danger.default.light", @@ -164,7 +174,7 @@ }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { From cf18806a8a767ce01d115d6d25fb6fb98090442e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 15:29:35 +0100 Subject: [PATCH 226/696] Latest update --- tokens/component/button.json | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/tokens/component/button.json b/tokens/component/button.json index 3f8c66d3535..b9003ecaa1f 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -1,13 +1,15 @@ { "button": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "blue": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } }, "sm": { "value": "$semantic.font.default.bold.-3h", From f5eb88d8be9ab63f4ab17cf1ce3314b1c6183ba8 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 15:53:38 +0100 Subject: [PATCH 227/696] Latest --- tokens/component/button.json | 170 +++++++++++++++++++++++++++++++++-- 1 file changed, 164 insertions(+), 6 deletions(-) diff --git a/tokens/component/button.json b/tokens/component/button.json index b9003ecaa1f..e40ba9cba85 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -2,13 +2,45 @@ "button": { "font": { "blue": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "sm": { @@ -22,6 +54,132 @@ "lg": { "value": "$semantic.font.default.bold.0h", "type": "typography" + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "red": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } } }, "icon": { From e01160405ba11aaa313cfc7d0521450322003cd5 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 16:02:14 +0100 Subject: [PATCH 228/696] Latest updates --- tokens/$metadata.json | 2 + tokens/$themes.json | 20 ++- tokens/component/dropdown.json | 177 ++++++++++++++++++++++++ tokens/component/segmented-control.json | 177 ++++++++++++++++++++++++ 4 files changed, 371 insertions(+), 5 deletions(-) create mode 100644 tokens/component/dropdown.json create mode 100644 tokens/component/segmented-control.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index d8831dde23c..7f8eaaa42b1 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -10,6 +10,7 @@ "component/checkbox", "component/chip", "component/combobox", + "component/dropdown", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -28,6 +29,7 @@ "component/rating", "component/tip", "component/tooltip", + "component/segmented-control", "component/switch", "component/[template-comp-name]", "component/accordion_backup", diff --git a/tokens/$themes.json b/tokens/$themes.json index a795ca2d11e..dd92f14cff5 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,9 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/dropdown": "disabled", + "component/segmented-control": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +19,9 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/dropdown": "disabled", + "component/segmented-control": "disabled" }, "$figmaStyleReferences": {} }, @@ -37,7 +41,9 @@ "component/rating": "source", "component/tooltip": "source", "component/combobox": "source", - "component/button": "source" + "component/button": "source", + "component/dropdown": "source", + "component/segmented-control": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -116,7 +122,9 @@ "component/rating": "source", "component/tooltip": "source", "component/combobox": "source", - "component/button": "source" + "component/button": "source", + "component/dropdown": "source", + "component/segmented-control": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -208,7 +216,9 @@ "component/date-picker": "enabled", "component/input-date-picker": "enabled", "component/combobox": "enabled", - "component/button": "enabled" + "component/button": "enabled", + "component/dropdown": "enabled", + "component/segmented-control": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json new file mode 100644 index 00000000000..b4e2f0a5bb1 --- /dev/null +++ b/tokens/component/dropdown.json @@ -0,0 +1,177 @@ +{ + "dropdown": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json new file mode 100644 index 00000000000..97e66a43d91 --- /dev/null +++ b/tokens/component/segmented-control.json @@ -0,0 +1,177 @@ +{ + "segmented-control": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From 43b61d750fd932a62fc6fdfedf02e05891c55c9c Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 16:03:59 +0100 Subject: [PATCH 229/696] Updates --- tokens/$themes.json | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index dd92f14cff5..7be3ca29f69 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,9 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/dropdown": "disabled", - "component/segmented-control": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -19,9 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/dropdown": "disabled", - "component/segmented-control": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -42,8 +38,7 @@ "component/tooltip": "source", "component/combobox": "source", "component/button": "source", - "component/dropdown": "source", - "component/segmented-control": "disabled" + "component/dropdown": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -123,8 +118,7 @@ "component/tooltip": "source", "component/combobox": "source", "component/button": "source", - "component/dropdown": "source", - "component/segmented-control": "disabled" + "component/dropdown": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -217,8 +211,7 @@ "component/input-date-picker": "enabled", "component/combobox": "enabled", "component/button": "enabled", - "component/dropdown": "enabled", - "component/segmented-control": "disabled" + "component/dropdown": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", From ff0e3f02268b05eefaf6a8bafe2a23f56d817ea6 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 16:57:50 +0100 Subject: [PATCH 230/696] Updates --- tokens/$themes.json | 11 ++- tokens/component/button.json | 183 +++++++++++++++++++++++------------ 2 files changed, 131 insertions(+), 63 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 7be3ca29f69..7a45abe16a8 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -38,7 +38,9 @@ "component/tooltip": "source", "component/combobox": "source", "component/button": "source", - "component/dropdown": "source" + "component/dropdown": "source", + "component/color-picker": "source", + "component/input-datetime-local": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -118,7 +120,9 @@ "component/tooltip": "source", "component/combobox": "source", "component/button": "source", - "component/dropdown": "source" + "component/dropdown": "source", + "component/color-picker": "source", + "component/input-datetime-local": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -211,7 +215,8 @@ "component/input-date-picker": "enabled", "component/combobox": "enabled", "component/button": "enabled", - "component/dropdown": "enabled" + "component/dropdown": "enabled", + "component/input-datetime-local": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/button.json b/tokens/component/button.json index e40ba9cba85..26cba2d53a3 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -184,43 +184,141 @@ }, "icon": { "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "inverse": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } } }, "neutral": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } } }, "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } } }, @@ -308,16 +406,6 @@ } } }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, "border-radius": { "sm": { "value": "$core.border.border-radius.4", @@ -401,31 +489,6 @@ "value": "$core.spacing.11", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } \ No newline at end of file From 226f456a9c751d66ee788e3e7472491ae43de3c5 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 17:08:43 +0100 Subject: [PATCH 231/696] latest updates --- tokens/component/button.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/tokens/component/button.json b/tokens/component/button.json index 26cba2d53a3..899858420f8 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -311,6 +311,36 @@ }, "red": { "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" From 3bcdea6f1bf9d25b8913bec38f4fae78133a09d6 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 17:34:21 +0100 Subject: [PATCH 232/696] Latest updates --- tokens/$metadata.json | 3 + tokens/$themes.json | 19 +- .../component/[template-comp-name]_Copy.json | 177 ++++++++++++++++++ tokens/component/link.json | 44 +++++ tokens/component/pagination.json | 177 ++++++++++++++++++ 5 files changed, 415 insertions(+), 5 deletions(-) create mode 100644 tokens/component/[template-comp-name]_Copy.json create mode 100644 tokens/component/link.json create mode 100644 tokens/component/pagination.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 7f8eaaa42b1..644a0af980c 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -24,6 +24,7 @@ "component/input-time", "component/date-picker", "component/label", + "component/link", "component/loader", "component/radio", "component/rating", @@ -32,6 +33,8 @@ "component/segmented-control", "component/switch", "component/[template-comp-name]", + "component/[template-comp-name]_Copy", + "component/pagination", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/$themes.json b/tokens/$themes.json index 7a45abe16a8..1edba055c81 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,10 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/pagination": "disabled", + "component/[template-comp-name]_Copy": "disabled", + "component/link": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +20,10 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/pagination": "disabled", + "component/[template-comp-name]_Copy": "disabled", + "component/link": "disabled" }, "$figmaStyleReferences": {} }, @@ -40,7 +46,8 @@ "component/button": "source", "component/dropdown": "source", "component/color-picker": "source", - "component/input-datetime-local": "source" + "component/input-datetime-local": "source", + "component/link": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -122,7 +129,8 @@ "component/button": "source", "component/dropdown": "source", "component/color-picker": "source", - "component/input-datetime-local": "source" + "component/input-datetime-local": "source", + "component/link": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -216,7 +224,8 @@ "component/combobox": "enabled", "component/button": "enabled", "component/dropdown": "enabled", - "component/input-datetime-local": "enabled" + "component/input-datetime-local": "enabled", + "component/link": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/[template-comp-name]_Copy.json b/tokens/component/[template-comp-name]_Copy.json new file mode 100644 index 00000000000..bf4896dbc5a --- /dev/null +++ b/tokens/component/[template-comp-name]_Copy.json @@ -0,0 +1,177 @@ +{ + "[comp-name]": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json new file mode 100644 index 00000000000..4bd7249b874 --- /dev/null +++ b/tokens/component/link.json @@ -0,0 +1,44 @@ +{ + "link": { + "font": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + }, + "regular": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "bottom": { + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json new file mode 100644 index 00000000000..bf4896dbc5a --- /dev/null +++ b/tokens/component/pagination.json @@ -0,0 +1,177 @@ +{ + "[comp-name]": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From d609db2317799ee4f9d1f81c6b55e51fe268517e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 17:44:23 +0100 Subject: [PATCH 233/696] Latest updates --- tokens/$metadata.json | 2 +- tokens/$themes.json | 17 +- .../component/[template-comp-name]_Copy.json | 177 ------ tokens/component/fab.json | 524 ++++++++++++++++++ 4 files changed, 533 insertions(+), 187 deletions(-) delete mode 100644 tokens/component/[template-comp-name]_Copy.json create mode 100644 tokens/component/fab.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 644a0af980c..2cfe639eb4c 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -7,6 +7,7 @@ "component/alert", "component/avatar", "component/button", + "component/fab", "component/checkbox", "component/chip", "component/combobox", @@ -33,7 +34,6 @@ "component/segmented-control", "component/switch", "component/[template-comp-name]", - "component/[template-comp-name]_Copy", "component/pagination", "component/accordion_backup", "calcite/light", diff --git a/tokens/$themes.json b/tokens/$themes.json index 1edba055c81..ca11678f451 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -7,9 +7,7 @@ "semantic": "source", "brand/global": "enabled", "brand/light": "enabled", - "component/pagination": "disabled", - "component/[template-comp-name]_Copy": "disabled", - "component/link": "disabled" + "component/fab": "disabled" }, "$figmaStyleReferences": {} }, @@ -21,9 +19,7 @@ "semantic": "source", "brand/global": "enabled", "brand/dark": "enabled", - "component/pagination": "disabled", - "component/[template-comp-name]_Copy": "disabled", - "component/link": "disabled" + "component/fab": "disabled" }, "$figmaStyleReferences": {} }, @@ -47,7 +43,8 @@ "component/dropdown": "source", "component/color-picker": "source", "component/input-datetime-local": "source", - "component/link": "source" + "component/link": "source", + "component/fab": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -130,7 +127,8 @@ "component/dropdown": "source", "component/color-picker": "source", "component/input-datetime-local": "source", - "component/link": "source" + "component/link": "source", + "component/fab": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -225,7 +223,8 @@ "component/button": "enabled", "component/dropdown": "enabled", "component/input-datetime-local": "enabled", - "component/link": "enabled" + "component/link": "enabled", + "component/fab": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/[template-comp-name]_Copy.json b/tokens/component/[template-comp-name]_Copy.json deleted file mode 100644 index bf4896dbc5a..00000000000 --- a/tokens/component/[template-comp-name]_Copy.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "[comp-name]": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json new file mode 100644 index 00000000000..09ec24ddebf --- /dev/null +++ b/tokens/component/fab.json @@ -0,0 +1,524 @@ +{ + "fab": { + "font": { + "blue": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "red": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "icon": { + "blue": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "red": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "border": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "background": { + "blue": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file From 268bbfc00b4daf780c387689de5fa11e74a0e27e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 17:51:03 +0100 Subject: [PATCH 234/696] Latest updates --- tokens/$themes.json | 6 ++---- tokens/component/button.json | 4 ++-- tokens/component/fab.json | 4 ++-- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index ca11678f451..03f29ec3dbf 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/fab": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/fab": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, diff --git a/tokens/component/button.json b/tokens/component/button.json index 899858420f8..7db1de574b3 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -417,11 +417,11 @@ }, "neutral": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } }, diff --git a/tokens/component/fab.json b/tokens/component/fab.json index 09ec24ddebf..3365e0348cf 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -417,11 +417,11 @@ }, "neutral": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } }, From 1ca70d1d1e5c850498d4d9c9b1915e5babd8133d Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 18:05:57 +0100 Subject: [PATCH 235/696] Latest updates --- tokens/$metadata.json | 3 +- tokens/$themes.json | 23 ++++- tokens/component/pagination.json | 2 +- tokens/component/stepper.json | 152 +++++++++++++++++++++++++++++++ 4 files changed, 173 insertions(+), 7 deletions(-) create mode 100644 tokens/component/stepper.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 2cfe639eb4c..e9a448a805f 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -31,10 +31,11 @@ "component/rating", "component/tip", "component/tooltip", + "component/pagination", "component/segmented-control", + "component/stepper", "component/switch", "component/[template-comp-name]", - "component/pagination", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/$themes.json b/tokens/$themes.json index 03f29ec3dbf..dfc0997bd49 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/stepper": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/stepper": "disabled" }, "$figmaStyleReferences": {} }, @@ -42,7 +44,11 @@ "component/color-picker": "source", "component/input-datetime-local": "source", "component/link": "source", - "component/fab": "source" + "component/fab": "source", + "component/stepper": "source", + "component/pagination": "source", + "component/segmented-control": "source", + "component/switch": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -126,7 +132,11 @@ "component/color-picker": "source", "component/input-datetime-local": "source", "component/link": "source", - "component/fab": "source" + "component/fab": "source", + "component/stepper": "source", + "component/pagination": "source", + "component/segmented-control": "source", + "component/switch": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -222,7 +232,10 @@ "component/dropdown": "enabled", "component/input-datetime-local": "enabled", "component/link": "enabled", - "component/fab": "enabled" + "component/fab": "enabled", + "component/stepper": "enabled", + "component/pagination": "enabled", + "component/segmented-control": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json index bf4896dbc5a..8525fb9be8a 100644 --- a/tokens/component/pagination.json +++ b/tokens/component/pagination.json @@ -1,5 +1,5 @@ { - "[comp-name]": { + "pagination": { "font": { "light": { "value": "$semantic.ui.color.text.3.light", diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json new file mode 100644 index 00000000000..76ca139ef90 --- /dev/null +++ b/tokens/component/stepper.json @@ -0,0 +1,152 @@ +{ + "stepper": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file From 9c9b6451db7e00006964de8437e957cf10c9c43b Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Feb 2023 18:11:48 +0100 Subject: [PATCH 236/696] Latest updates --- tokens/$themes.json | 6 ++---- tokens/component/segmented-control.json | 25 ------------------------- 2 files changed, 2 insertions(+), 29 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index dfc0997bd49..676403165c2 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/stepper": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/stepper": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json index 97e66a43d91..3b917a88ce7 100644 --- a/tokens/component/segmented-control.json +++ b/tokens/component/segmented-control.json @@ -147,31 +147,6 @@ "value": "$core.spacing.11", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } \ No newline at end of file From 2e5af703cada3d578cb70a572989e1e5b64a9e59 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 23 Feb 2023 18:51:17 +0000 Subject: [PATCH 237/696] tabs tokens --- tokens/component/tab-title.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index c8ee07aa356..1696efd71e3 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -90,7 +90,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "$core.spacing.1", "type": "spacing" } }, From 36fc5f2d2494e83a372680df3d3f1a979d1daaf1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 19:35:12 -0800 Subject: [PATCH 238/696] ci(actions): delete concurency This is causing problems for others. Canceled runs are sending failed notifications. --- .github/workflows/sync_to_airtable.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 94aea39b8d9..28cf4980394 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -4,14 +4,6 @@ on: issues: types: [opened, edited, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned] -# Every time an issue is edited in any way, it triggers this action. -# However, if this action is already running, we only want the latest run to complete. -# The [concurrency:group] prevents duplicate runs of the Action on the same github issue, -# while allowing concurrent runs triggered from different issues. -concurrency: - group: ${{ github.workflow }}-${{ github.event.issue.number }}-${{ github.ref }} - cancel-in-progress: true - jobs: allow_for_changes: runs-on: ubuntu-latest From 79aa81b2c21356c686f54f7a4af0ad1f82dc12b1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 19:55:05 -0800 Subject: [PATCH 239/696] ci(actions): split out github issue actions --- .github/workflows/sync_to_airtable.yml | 64 ++++++++++++++++++++++++-- 1 file changed, 59 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 28cf4980394..dc572edacbb 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -5,12 +5,66 @@ on: types: [opened, edited, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned] jobs: - allow_for_changes: + send_opened: + if: | + github.event.action == 'test' runs-on: ubuntu-latest steps: - - name: Sleep to allow time for multiple updates - run: sleep .5s - shell: bash + - run: echo "send opened" + send_edited: + if: | + github.event.action == 'test' + runs-on: ubuntu-latest + steps: + - run: echo "send edited" + send_closed: + if: | + github.event.action == 'test' + runs-on: ubuntu-latest + steps: + - run: echo "send closed" + send_reopened: + if: | + github.event.action == 'test' + runs-on: ubuntu-latest + steps: + - run: echo "send reopened" + send_assigned: + if: | + github.event.action == 'test' + runs-on: ubuntu-latest + steps: + - run: echo "send assigned" + send_unassigned: + if: | + github.event.action == 'test' + runs-on: ubuntu-latest + steps: + - run: echo "send unassigned" + send_labeled: + if: | + github.event.action == 'test' + runs-on: ubuntu-latest + steps: + - run: echo "send labeled" + send_unlabeled: + if: | + github.event.action == 'test' + runs-on: ubuntu-latest + steps: + - run: echo "send unlabeled" + send_milestoned: + if: | + github.event.action == 'test' + runs-on: ubuntu-latest + steps: + - run: echo "send milestoned" + send_demilestoned: + if: | + github.event.action == 'test' + runs-on: ubuntu-latest + steps: + - run: echo "send demilestoned" get_data: runs-on: ubuntu-latest steps: @@ -29,4 +83,4 @@ jobs: result-encoding: string - name: Log Result run: | - echo "${{steps.set-data.outputs.result}}" + echo "${{steps.set-data.outputs.result}}" | echo "${{ github.event }}" From 88e38b984de32afcf773ab7d718eb7fd79e22c09 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 20:05:34 -0800 Subject: [PATCH 240/696] ci(actions): fix json --- .github/workflows/sync_to_airtable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index dc572edacbb..1e45cb26c15 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -77,10 +77,10 @@ jobs: WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { title, body, assignees, closed_at, created_at, id, labels, milestone, number, state, updated_at } = process.env.ISSUE; - const test = JSON.parse(body) - return test; + const issue = process.env.ISSUE; + return issue; result-encoding: string - name: Log Result run: | - echo "${{steps.set-data.outputs.result}}" | echo "${{ github.event }}" + echo "${{ github.event }}" +# echo "${{steps.set-data.outputs.result}}" | echo "" From c14ca27d815ee85061b7699dbfbacecdf383a7bf Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 20:08:30 -0800 Subject: [PATCH 241/696] ci(action): add toJSON --- .github/workflows/sync_to_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 1e45cb26c15..0cc2d7864bf 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -82,5 +82,5 @@ jobs: result-encoding: string - name: Log Result run: | - echo "${{ github.event }}" + echo "${{ toJSON(github.event) }}" # echo "${{steps.set-data.outputs.result}}" | echo "" From 3d0107138e45eb3ebb75fab22033961caafbb19a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 20:38:12 -0800 Subject: [PATCH 242/696] ci(action): pass data --- .github/workflows/sync_to_airtable.yml | 74 ++++---------------------- 1 file changed, 11 insertions(+), 63 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 0cc2d7864bf..615858aae51 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -5,67 +5,7 @@ on: types: [opened, edited, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned] jobs: - send_opened: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send opened" - send_edited: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send edited" - send_closed: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send closed" - send_reopened: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send reopened" - send_assigned: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send assigned" - send_unassigned: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send unassigned" - send_labeled: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send labeled" - send_unlabeled: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send unlabeled" - send_milestoned: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send milestoned" - send_demilestoned: - if: | - github.event.action == 'test' - runs-on: ubuntu-latest - steps: - - run: echo "send demilestoned" - get_data: + send_data: runs-on: ubuntu-latest steps: - name: Set Data @@ -75,12 +15,20 @@ jobs: SECRET: ${{ secrets.AIRTABLE_KEY }} ISSUE: ${{ toJSON(github.event.issue) }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + ACTION: ${{ github.event.action }} + CHANGES: ${{ github.event.changes }} + SENDER: ${{ github.event.sender }} with: script: | const issue = process.env.ISSUE; - return issue; + return { + issue: process.env.ISSUE, + action: process.env.ACTION, + changes: process.env.CHANGES, + sender: process.env.SENDER + }; result-encoding: string - name: Log Result run: | - echo "${{ toJSON(github.event) }}" + echo "${{ toJSON(steps.set-data.outputs.result) }}" # echo "${{steps.set-data.outputs.result}}" | echo "" From 78f593404656a1a02dca0a9a0a06c27b6f8e38cb Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 20:40:47 -0800 Subject: [PATCH 243/696] ci(action): wip - set data --- .github/workflows/sync_to_airtable.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 615858aae51..4305d843320 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -20,15 +20,13 @@ jobs: SENDER: ${{ github.event.sender }} with: script: | - const issue = process.env.ISSUE; return { issue: process.env.ISSUE, action: process.env.ACTION, changes: process.env.CHANGES, sender: process.env.SENDER }; - result-encoding: string - name: Log Result run: | - echo "${{ toJSON(steps.set-data.outputs.result) }}" + echo "${{ toJSON(steps.set-data.outputs) }}" # echo "${{steps.set-data.outputs.result}}" | echo "" From 023f08b94156cc86d72cd8855239a0cddf8ed6f1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 20:44:10 -0800 Subject: [PATCH 244/696] ci(action): wip --- .github/workflows/sync_to_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 4305d843320..9c7b59e97ec 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -13,11 +13,11 @@ jobs: uses: actions/github-script@v6 env: SECRET: ${{ secrets.AIRTABLE_KEY }} - ISSUE: ${{ toJSON(github.event.issue) }} + ISSUE: ${{ github.event.issue }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} ACTION: ${{ github.event.action }} CHANGES: ${{ github.event.changes }} - SENDER: ${{ github.event.sender }} + SENDER: ${{ github.event }} with: script: | return { From 48b3af3de466fa2e0d1567c99b8449c845c8e400 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 20:45:45 -0800 Subject: [PATCH 245/696] ci(action): wip --- .github/workflows/sync_to_airtable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 9c7b59e97ec..330edef3dec 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -13,11 +13,11 @@ jobs: uses: actions/github-script@v6 env: SECRET: ${{ secrets.AIRTABLE_KEY }} - ISSUE: ${{ github.event.issue }} + ISSUE: ${{ toJSON(github.event.issue) }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - ACTION: ${{ github.event.action }} - CHANGES: ${{ github.event.changes }} - SENDER: ${{ github.event }} + ACTION: ${{ toJSON(github.event.action) }} + CHANGES: ${{ toJSON(github.event.changes) }} + SENDER: ${{ toJSON(github.event.sender) }} with: script: | return { From 8381f4f181e9d46bdae16b7c0bf9f1bd45423398 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 20:48:27 -0800 Subject: [PATCH 246/696] ci(actions): wip --- .github/workflows/sync_to_airtable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 330edef3dec..eee29591fa8 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -26,7 +26,8 @@ jobs: changes: process.env.CHANGES, sender: process.env.SENDER }; + result-encoding: string - name: Log Result run: | - echo "${{ toJSON(steps.set-data.outputs) }}" + echo "${{ steps.set-data.outputs.result }}" # echo "${{steps.set-data.outputs.result}}" | echo "" From 15306317ff917b315b266136110d853668146c8c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 20:51:02 -0800 Subject: [PATCH 247/696] ci(action): wip --- .github/workflows/sync_to_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index eee29591fa8..bfa911f129a 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -29,5 +29,5 @@ jobs: result-encoding: string - name: Log Result run: | - echo "${{ steps.set-data.outputs.result }}" -# echo "${{steps.set-data.outputs.result}}" | echo "" + echo "${{ toJSON(github.event) }}" +# echo "${{ steps.set-data.outputs.result }}" From 4d6e5355ec4a0d3229a10aac08912c0e327a856b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 21:50:52 -0800 Subject: [PATCH 248/696] ci(actions): wip --- .github/workflows/sync_to_airtable.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index bfa911f129a..c8710cf802d 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -13,21 +13,12 @@ jobs: uses: actions/github-script@v6 env: SECRET: ${{ secrets.AIRTABLE_KEY }} - ISSUE: ${{ toJSON(github.event.issue) }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - ACTION: ${{ toJSON(github.event.action) }} - CHANGES: ${{ toJSON(github.event.changes) }} - SENDER: ${{ toJSON(github.event.sender) }} with: script: | - return { - issue: process.env.ISSUE, - action: process.env.ACTION, - changes: process.env.CHANGES, - sender: process.env.SENDER - }; + const { issue, action, changes, sender } = github.event; + return issue; result-encoding: string - name: Log Result run: | - echo "${{ toJSON(github.event) }}" -# echo "${{ steps.set-data.outputs.result }}" + echo "${{ steps.set-data.outputs.result }}" From 018f0870402870cfe4312d6a35fd51ad41ed4b27 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Feb 2023 21:56:42 -0800 Subject: [PATCH 249/696] ci(action): wip --- .github/workflows/sync_to_airtable.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index c8710cf802d..8166807271e 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -14,11 +14,15 @@ jobs: env: SECRET: ${{ secrets.AIRTABLE_KEY }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + ACTION: ${{ toJSON(github.event.action) }} + CHANGES: ${{ toJSON(github.event.changes) }} + ISSUE: ${{ toJSON(github.event.issue) }} + SENDER: ${{ toJSON(github.event.sender) }} with: script: | - const { issue, action, changes, sender } = github.event; - return issue; + const { ACTION, CHANGES, ISSUE, SENDER } = process.env; + return SENDER; result-encoding: string - name: Log Result run: | - echo "${{ steps.set-data.outputs.result }}" + echo "${{ toJSON(steps.set-data.outputs.result) }}" From f01b0d8df8110816ccf0c7c0187df0c5a2d80c3c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 24 Feb 2023 08:16:57 -0800 Subject: [PATCH 250/696] ci(action): limit data sent per action to webhook --- .github/workflows/sync_to_airtable.yml | 268 ++++++++++++++++++++++++- 1 file changed, 258 insertions(+), 10 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 8166807271e..5ae8d2d0fcf 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -2,18 +2,267 @@ name: Sync to Airtable on: issues: - types: [opened, edited, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned] + types: [assigned, closed, demilestoned, edited, labeled, milestoned, opened, reopened, unassigned, unlabeled] jobs: + issue_assigned: + runs-on: ubuntu-latest + if: github.event.action == 'assigned' + steps: + - name: Set Data + id: set-assigned-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.issue.assignees) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); + issue_closed: + runs-on: ubuntu-latest + if: github.event.action == 'closed' + steps: + - name: Set Data + id: set-closed-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.issue.state) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); + issue_demilestoned: + runs-on: ubuntu-latest + if: github.event.action == 'demilestoned' + steps: + - name: Set Data + id: set-demilestoned-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.issue.milestone) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); + issue_edited: + runs-on: ubuntu-latest + if: github.event.action == 'edited' + steps: + - name: Set Data + id: set-edited-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.changes) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); + issue_labeled: + runs-on: ubuntu-latest + if: github.event.action == 'labeled' + steps: + - name: Set Data + id: set-labeled-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.issue.labels) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); + issue_milestoned: + runs-on: ubuntu-latest + if: github.event.action == 'milestoned' + steps: + - name: Set Data + id: set-milestoned-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.issue.milestone) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); + issue_opened: + runs-on: ubuntu-latest + if: github.event.action == 'opened' + steps: + - name: Set Data + id: set-opened-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.issue) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); + issue_reopened: + runs-on: ubuntu-latest + if: github.event.action == 'reopened' + steps: + - name: Set Data + id: set-reopened-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.issue) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); + issue_unassigned: + runs-on: ubuntu-latest + if: github.event.action == 'unassigned' + steps: + - name: Set Data + id: set-unassigned-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.issue.assignees) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); + issue_unlabeled: + runs-on: ubuntu-latest + if: github.event.action == 'unlabeled' + steps: + - name: Set Data + id: set-unlabeled-data + uses: actions/github-script@v6 + env: + ACTION: ${{ toJSON(github.event.action) }} + DATA: ${{ toJSON(github.event.issue.labels) }} + NUMBER: ${{ github.event.issue.number }} + SECRET: ${{ secrets.AIRTABLE_KEY }} + TITLE: ${{ github.event.issue.title }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; + const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + fetch(WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); send_data: + if: ${{ always() }} + needs: [ issue_assigned, issue_closed, issue_demilestoned, issue_edited, issue_labeled, issue_milestoned, issue_opened, issue_reopened, issue_unassigned, issue_unlabeled ] runs-on: ubuntu-latest steps: - - name: Set Data - id: set-data + - name: Record Data uses: actions/github-script@v6 env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} ACTION: ${{ toJSON(github.event.action) }} CHANGES: ${{ toJSON(github.event.changes) }} ISSUE: ${{ toJSON(github.event.issue) }} @@ -21,8 +270,7 @@ jobs: with: script: | const { ACTION, CHANGES, ISSUE, SENDER } = process.env; - return SENDER; - result-encoding: string - - name: Log Result - run: | - echo "${{ toJSON(steps.set-data.outputs.result) }}" + core.info('action: ', ACTION); + core.info('changes: ', CHANGES); + core.info('issue: ', ISSUE); + core.info('sender: ', SENDER); From c99337927c4a813ce8a2785bd830ba65356a4faf Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 24 Feb 2023 08:56:31 -0800 Subject: [PATCH 251/696] ci(action): wip payload --- .github/workflows/sync_to_airtable.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 5ae8d2d0fcf..90dfedb37c1 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -15,6 +15,7 @@ jobs: env: ACTION: ${{ toJSON(github.event.action) }} DATA: ${{ toJSON(github.event.issue.assignees) }} + ISSUE: ${{ toJSON(github.event.issue.assignees) }} NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} TITLE: ${{ github.event.issue.title }} @@ -97,7 +98,7 @@ jobs: with: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); + const body = JSON.stringify({ action: ACTION, data: context.payload, number: NUMBER, secret: SECRET, title: TITLE }); fetch(WEBHOOK, { body, headers: { @@ -269,8 +270,7 @@ jobs: SENDER: ${{ toJSON(github.event.sender) }} with: script: | - const { ACTION, CHANGES, ISSUE, SENDER } = process.env; - core.info('action: ', ACTION); - core.info('changes: ', CHANGES); - core.info('issue: ', ISSUE); - core.info('sender: ', SENDER); + core.info(`action: ${context.action}`); + core.info(`payload: ${context.payload}`); + core.info(`actor: ${context.actor}`); + core.info(`changes: ${process.env.CHANGES}`); From d22b6f404df51d96995aa0a2687ce748c654ccd8 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 24 Feb 2023 09:21:40 -0800 Subject: [PATCH 252/696] ci(action): pass edited context --- .github/workflows/sync_to_airtable.yml | 42 +++++++++++++++++--------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 90dfedb37c1..48b4d6676c1 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -24,7 +24,7 @@ jobs: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { + return fetch(WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -49,7 +49,7 @@ jobs: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { + return fetch(WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -74,7 +74,7 @@ jobs: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { + return fetch(WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -98,9 +98,22 @@ jobs: with: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: context.payload, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { - body, + const body = { + action: context.payload.action, + changes: JSON.stringify(context.payload.changes), + owner: context.payload.repository.owner.login + repo: context.payload.repository.name + number: context.payload.issue.number, + secret: SECRET + }; + const data = JSON.stringify(Object.keys(context.payload.changes).reduce((acc, key) => { + acc[key] = context.payload.issue[key] + return acc; + }, {})); + const title = context.payload.changes['title'] ? context.payload.changes['title'].from : context.payload.issue.title; + + return fetch(WEBHOOK, { + body: JSON.stringify({ ...body, data, title }), headers: { "Content-Type": "application/json" }, @@ -124,7 +137,7 @@ jobs: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { + return fetch(WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -149,7 +162,7 @@ jobs: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { + return fetch(WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -174,7 +187,7 @@ jobs: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { + return fetch(WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -199,7 +212,7 @@ jobs: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { + return fetch(WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -224,7 +237,7 @@ jobs: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { + return fetch(WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -249,7 +262,7 @@ jobs: script: | const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - fetch(WEBHOOK, { + return fetch(WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -270,7 +283,8 @@ jobs: SENDER: ${{ toJSON(github.event.sender) }} with: script: | - core.info(`action: ${context.action}`); - core.info(`payload: ${context.payload}`); + core.info(`action: ${JSON.stringify(context.action})`); + core.info(`payload: ${JSON.stringify(context.payload})`); core.info(`actor: ${context.actor}`); core.info(`changes: ${process.env.CHANGES}`); + return true; From 9d46a58e5cf87db2d9db5d2de2e9e7e8848515ef Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 24 Feb 2023 09:27:24 -0800 Subject: [PATCH 253/696] ci(action): wip --- .github/workflows/sync_to_airtable.yml | 29 +++++++++++++------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 48b4d6676c1..b25ed5fa2c1 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -97,23 +97,24 @@ jobs: WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = { + const body = JSON.stringify({ action: context.payload.action, changes: JSON.stringify(context.payload.changes), - owner: context.payload.repository.owner.login - repo: context.payload.repository.name + data: JSON.stringify(Object.keys(context.payload.changes).reduce((acc, key) => { + acc[key] = context.payload.issue[key] + return acc; + }, {})), + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, number: context.payload.issue.number, - secret: SECRET - }; - const data = JSON.stringify(Object.keys(context.payload.changes).reduce((acc, key) => { - acc[key] = context.payload.issue[key] - return acc; - }, {})); - const title = context.payload.changes['title'] ? context.payload.changes['title'].from : context.payload.issue.title; - - return fetch(WEBHOOK, { - body: JSON.stringify({ ...body, data, title }), + secret: process.env.SECRET, + title: context.payload.changes['title'] + ? context.payload.changes['title'].from + : context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { + body, headers: { "Content-Type": "application/json" }, From 540468e8c911c855fa2502b634caf1d77c10596c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 24 Feb 2023 09:30:35 -0800 Subject: [PATCH 254/696] ci(action): pass issue number as string --- .github/workflows/sync_to_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index b25ed5fa2c1..0abb424fb78 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -106,7 +106,7 @@ jobs: }, {})), owner: context.payload.repository.owner.login, repo: context.payload.repository.name, - number: context.payload.issue.number, + number: context.payload.issue.number.toString(), secret: process.env.SECRET, title: context.payload.changes['title'] ? context.payload.changes['title'].from From 2efe62209bea194a0f238f48f8c428438a52e98d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 24 Feb 2023 10:23:08 -0800 Subject: [PATCH 255/696] ci(actions): set passed data limit to only what is necessary --- .github/workflows/sync_to_airtable.yml | 171 +++++++++++++++---------- 1 file changed, 101 insertions(+), 70 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 0abb424fb78..307919829fa 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -13,18 +13,21 @@ jobs: id: set-assigned-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.issue.assignees) }} - ISSUE: ${{ toJSON(github.event.issue.assignees) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - return fetch(WEBHOOK, { + const body = JSON.stringify({ + action: context.payload.action, + data: context.payload.issue.assignees.map((assignee) => assignee.login), + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, + number: context.payload.issue.number.toString(), + secret: process.env.SECRET, + title: context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -39,17 +42,21 @@ jobs: id: set-closed-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.issue.state) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - return fetch(WEBHOOK, { + const body = JSON.stringify({ + action: context.payload.action, + data: context.payload.issue.state, + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, + number: context.payload.issue.number.toString(), + secret: process.env.SECRET, + title: context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -64,17 +71,21 @@ jobs: id: set-demilestoned-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.issue.milestone) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - return fetch(WEBHOOK, { + const body = JSON.stringify({ + action: context.payload.action, + data: JSON.stringify(context.payload.issue.milestone || null), + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, + number: context.payload.issue.number.toString(), + secret: process.env.SECRET, + title: context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -89,17 +100,13 @@ jobs: id: set-edited-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.changes) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | const body = JSON.stringify({ action: context.payload.action, - changes: JSON.stringify(context.payload.changes), + changes: JSON.stringify(context.payload.changes || null), data: JSON.stringify(Object.keys(context.payload.changes).reduce((acc, key) => { acc[key] = context.payload.issue[key] return acc; @@ -128,17 +135,21 @@ jobs: id: set-labeled-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.issue.labels) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - return fetch(WEBHOOK, { + const body = JSON.stringify({ + action: context.payload.action, + data: context.payload.issue.labels.map((label) => label.name), + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, + number: context.payload.issue.number.toString(), + secret: process.env.SECRET, + title: context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -153,17 +164,21 @@ jobs: id: set-milestoned-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.issue.milestone) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - return fetch(WEBHOOK, { + const body = JSON.stringify({ + action: context.payload.action, + data: JSON.stringify(context.payload.issue.milestone), + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, + number: context.payload.issue.number.toString(), + secret: process.env.SECRET, + title: context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -178,17 +193,21 @@ jobs: id: set-opened-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.issue) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - return fetch(WEBHOOK, { + const body = JSON.stringify({ + action: context.payload.action, + data: JSON.stringify(context.payload.issue), + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, + number: context.payload.issue.number.toString(), + secret: process.env.SECRET, + title: context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -203,17 +222,21 @@ jobs: id: set-reopened-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.issue) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - return fetch(WEBHOOK, { + const body = JSON.stringify({ + action: context.payload.action, + data: context.payload.issue.state, + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, + number: context.payload.issue.number.toString(), + secret: process.env.SECRET, + title: context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -228,17 +251,21 @@ jobs: id: set-unassigned-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.issue.assignees) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - return fetch(WEBHOOK, { + const body = JSON.stringify({ + action: context.payload.action, + data: context.payload.issue.assignees.length > 0 ? context.payload.issue.assignees.map((assignee) => assignee.login) : null, + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, + number: context.payload.issue.number.toString(), + secret: process.env.SECRET, + title: context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -253,17 +280,21 @@ jobs: id: set-unlabeled-data uses: actions/github-script@v6 env: - ACTION: ${{ toJSON(github.event.action) }} - DATA: ${{ toJSON(github.event.issue.labels) }} - NUMBER: ${{ github.event.issue.number }} SECRET: ${{ secrets.AIRTABLE_KEY }} - TITLE: ${{ github.event.issue.title }} WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { ACTION, DATA, NUMBER, SECRET, TITLE, WEBHOOK } = process.env; - const body = JSON.stringify({ action: ACTION, data: DATA, number: NUMBER, secret: SECRET, title: TITLE }); - return fetch(WEBHOOK, { + const body = JSON.stringify({ + action: context.payload.action, + data: context.payload.issue.labels.length > 0 ? context.payload.issue.labels.map((label) => label.name) : null, + owner: context.payload.repository.owner.login, + repo: context.payload.repository.name, + number: context.payload.issue.number.toString(), + secret: process.env.SECRET, + title: context.payload.issue.title, + }); + + return fetch(process.env.WEBHOOK, { body, headers: { "Content-Type": "application/json" @@ -285,7 +316,7 @@ jobs: with: script: | core.info(`action: ${JSON.stringify(context.action})`); - core.info(`payload: ${JSON.stringify(context.payload})`); + core.info(`payload: ${JSON.stringify(context.payload)}`); core.info(`actor: ${context.actor}`); core.info(`changes: ${process.env.CHANGES}`); return true; From f743e5f8b173eca3e85e5766d3ef62a59477ecca Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 24 Feb 2023 13:26:31 -0800 Subject: [PATCH 256/696] ci(action): log data --- .github/workflows/sync_to_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 307919829fa..18ec8979fc7 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -315,8 +315,8 @@ jobs: SENDER: ${{ toJSON(github.event.sender) }} with: script: | - core.info(`action: ${JSON.stringify(context.action})`); + core.info(`action: ${JSON.stringify(context.action)}`); core.info(`payload: ${JSON.stringify(context.payload)}`); core.info(`actor: ${context.actor}`); - core.info(`changes: ${process.env.CHANGES}`); + core.info(`changes: ${JSON.stringify(context.payload.changes)}`); return true; From 8a661324bad598c5d34470a88efe84a13e7ff07d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 24 Feb 2023 13:49:30 -0800 Subject: [PATCH 257/696] ci(actions): passing data --- .github/workflows/sync_to_airtable.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 18ec8979fc7..de548e5be83 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -19,7 +19,7 @@ jobs: script: | const body = JSON.stringify({ action: context.payload.action, - data: context.payload.issue.assignees.map((assignee) => assignee.login), + data: context.payload.issue.assignees, owner: context.payload.repository.owner.login, repo: context.payload.repository.name, number: context.payload.issue.number.toString(), @@ -141,7 +141,7 @@ jobs: script: | const body = JSON.stringify({ action: context.payload.action, - data: context.payload.issue.labels.map((label) => label.name), + data: context.payload.issue.labels, owner: context.payload.repository.owner.login, repo: context.payload.repository.name, number: context.payload.issue.number.toString(), @@ -257,7 +257,7 @@ jobs: script: | const body = JSON.stringify({ action: context.payload.action, - data: context.payload.issue.assignees.length > 0 ? context.payload.issue.assignees.map((assignee) => assignee.login) : null, + data: context.payload.issue.assignees, owner: context.payload.repository.owner.login, repo: context.payload.repository.name, number: context.payload.issue.number.toString(), @@ -286,7 +286,7 @@ jobs: script: | const body = JSON.stringify({ action: context.payload.action, - data: context.payload.issue.labels.length > 0 ? context.payload.issue.labels.map((label) => label.name) : null, + data: context.payload.issue.labels, owner: context.payload.repository.owner.login, repo: context.payload.repository.name, number: context.payload.issue.number.toString(), @@ -315,7 +315,7 @@ jobs: SENDER: ${{ toJSON(github.event.sender) }} with: script: | - core.info(`action: ${JSON.stringify(context.action)}`); + core.info(`action: ${JSON.stringify(context.payload.action)}`); core.info(`payload: ${JSON.stringify(context.payload)}`); core.info(`actor: ${context.actor}`); core.info(`changes: ${JSON.stringify(context.payload.changes)}`); From 538d99ef64aaab13a6c34733107671d3d2659a21 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 24 Feb 2023 14:40:19 -0800 Subject: [PATCH 258/696] ci(actions): open and close issues --- .github/workflows/sync_to_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index de548e5be83..315f7670791 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -48,7 +48,7 @@ jobs: script: | const body = JSON.stringify({ action: context.payload.action, - data: context.payload.issue.state, + data: context.payload.issue.closed_at, owner: context.payload.repository.owner.login, repo: context.payload.repository.name, number: context.payload.issue.number.toString(), @@ -228,7 +228,7 @@ jobs: script: | const body = JSON.stringify({ action: context.payload.action, - data: context.payload.issue.state, + data: JSON.stringify(context.payload.issue), owner: context.payload.repository.owner.login, repo: context.payload.repository.name, number: context.payload.issue.number.toString(), From 2f05b3ea47ef721b812c3a87ed9b2f7c51b656fa Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Sat, 25 Feb 2023 20:55:47 -0800 Subject: [PATCH 259/696] ci(action): simplify --- .github/workflows/sync_to_airtable.yml | 143 +------------------------ 1 file changed, 4 insertions(+), 139 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 315f7670791..00a771d46ee 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -7,7 +7,7 @@ on: jobs: issue_assigned: runs-on: ubuntu-latest - if: github.event.action == 'assigned' + if: github.event.action == 'assigned' || github.event.action == 'unassigned' steps: - name: Set Data id: set-assigned-data @@ -65,7 +65,7 @@ jobs: }); issue_demilestoned: runs-on: ubuntu-latest - if: github.event.action == 'demilestoned' + if: github.event.action == 'demilestoned' || github.event.action == 'milestoned' steps: - name: Set Data id: set-demilestoned-data @@ -129,7 +129,7 @@ jobs: }); issue_labeled: runs-on: ubuntu-latest - if: github.event.action == 'labeled' + if: github.event.action == 'labeled' || github.event.action == 'unlabeled' steps: - name: Set Data id: set-labeled-data @@ -149,35 +149,6 @@ jobs: title: context.payload.issue.title, }); - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - issue_milestoned: - runs-on: ubuntu-latest - if: github.event.action == 'milestoned' - steps: - - name: Set Data - id: set-milestoned-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - data: JSON.stringify(context.payload.issue.milestone), - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.issue.title, - }); - return fetch(process.env.WEBHOOK, { body, headers: { @@ -187,7 +158,7 @@ jobs: }); issue_opened: runs-on: ubuntu-latest - if: github.event.action == 'opened' + if: github.event.action == 'opened' || github.event.action == 'reopened' steps: - name: Set Data id: set-opened-data @@ -214,109 +185,3 @@ jobs: }, method: "POST" }); - issue_reopened: - runs-on: ubuntu-latest - if: github.event.action == 'reopened' - steps: - - name: Set Data - id: set-reopened-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - data: JSON.stringify(context.payload.issue), - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.issue.title, - }); - - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - issue_unassigned: - runs-on: ubuntu-latest - if: github.event.action == 'unassigned' - steps: - - name: Set Data - id: set-unassigned-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - data: context.payload.issue.assignees, - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.issue.title, - }); - - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - issue_unlabeled: - runs-on: ubuntu-latest - if: github.event.action == 'unlabeled' - steps: - - name: Set Data - id: set-unlabeled-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - data: context.payload.issue.labels, - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.issue.title, - }); - - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - send_data: - if: ${{ always() }} - needs: [ issue_assigned, issue_closed, issue_demilestoned, issue_edited, issue_labeled, issue_milestoned, issue_opened, issue_reopened, issue_unassigned, issue_unlabeled ] - runs-on: ubuntu-latest - steps: - - name: Record Data - uses: actions/github-script@v6 - env: - ACTION: ${{ toJSON(github.event.action) }} - CHANGES: ${{ toJSON(github.event.changes) }} - ISSUE: ${{ toJSON(github.event.issue) }} - SENDER: ${{ toJSON(github.event.sender) }} - with: - script: | - core.info(`action: ${JSON.stringify(context.payload.action)}`); - core.info(`payload: ${JSON.stringify(context.payload)}`); - core.info(`actor: ${context.actor}`); - core.info(`changes: ${JSON.stringify(context.payload.changes)}`); - return true; From 32dfcdfe8363d4e505697bcbcda8f3af85da0894 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Feb 2023 11:34:41 +0100 Subject: [PATCH 260/696] Latest updates --- tokens/component/segmented-control.json | 34 +++++++++++++------------ 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json index 3b917a88ce7..b661574f032 100644 --- a/tokens/component/segmented-control.json +++ b/tokens/component/segmented-control.json @@ -1,13 +1,15 @@ { "segmented-control": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, "sm": { "value": "$semantic.font.default.bold.-3h", @@ -20,16 +22,16 @@ "lg": { "value": "$semantic.font.default.bold.0h", "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "checked": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } } }, "border": { From 672976474f56b4c46f9b201ff28e7fcf31259ea9 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Feb 2023 15:06:23 +0100 Subject: [PATCH 261/696] Latest updates --- tokens/component/button.json | 248 ++++++++++++++++++++++++----------- 1 file changed, 172 insertions(+), 76 deletions(-) diff --git a/tokens/component/button.json b/tokens/component/button.json index 7db1de574b3..e0889889157 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -12,7 +12,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -22,7 +22,7 @@ "type": "color" } }, - "clear": { + "outline": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -44,7 +44,7 @@ } }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "md": { @@ -66,7 +66,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -76,7 +76,7 @@ "type": "color" } }, - "clear": { + "outline": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -108,7 +108,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -118,7 +118,7 @@ "type": "color" } }, - "clear": { + "outline": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -150,7 +150,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -160,7 +160,7 @@ "type": "color" } }, - "clear": { + "outline": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -194,7 +194,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -204,7 +204,7 @@ "type": "color" } }, - "clear": { + "outline": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -236,7 +236,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -246,7 +246,7 @@ "type": "color" } }, - "clear": { + "outline": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -278,7 +278,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -288,7 +288,7 @@ "type": "color" } }, - "clear": { + "outline": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -320,7 +320,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -330,7 +330,7 @@ "type": "color" } }, - "clear": { + "outline": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -354,99 +354,195 @@ }, "border": { "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } } }, "neutral": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } } }, "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } } }, "background": { "blue": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } } }, "neutral": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } } }, "red": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, @@ -456,11 +552,11 @@ "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, @@ -484,11 +580,11 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.7", "type": "sizing" } }, From 69481334cf1716cc8d2d0720fe6ba6088de5d0b4 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Feb 2023 15:14:35 +0100 Subject: [PATCH 262/696] Updates --- tokens/component/button.json | 68 +++++++----------------------------- 1 file changed, 13 insertions(+), 55 deletions(-) diff --git a/tokens/component/button.json b/tokens/component/button.json index e0889889157..5669c1ba910 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -1,7 +1,7 @@ { "button": { "font": { - "blue": { + "brand": { "solid": { "light": { "value": "$semantic.ui.color.text.inverse.light", @@ -139,7 +139,7 @@ } } }, - "red": { + "danger": { "solid": { "light": { "value": "$semantic.ui.color.text.inverse.light", @@ -183,7 +183,7 @@ } }, "icon": { - "blue": { + "brand": { "solid": { "light": { "value": "$semantic.ui.color.foreground.1.light", @@ -196,31 +196,31 @@ }, "outline-fill": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } } @@ -308,52 +308,10 @@ "type": "color" } } - }, - "red": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } } }, "border": { - "blue": { + "brand": { "solid": { "light": { "value": "$semantic.ui.color.brand.default.light", @@ -449,7 +407,7 @@ } } }, - "red": { + "danger": { "solid": { "light": { "value": "$semantic.ui.color.danger.default.light", @@ -483,7 +441,7 @@ } }, "background": { - "blue": { + "brand": { "solid": { "light": { "value": "$semantic.ui.color.brand.default.light", @@ -519,7 +477,7 @@ } } }, - "red": { + "danger": { "solid": { "light": { "value": "$semantic.ui.color.danger.default.light", From 379af65d520f7bf3fc92c43a14d9ff5c295edf07 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Feb 2023 15:26:29 +0100 Subject: [PATCH 263/696] Updates to button and fab --- tokens/component/fab.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tokens/component/fab.json b/tokens/component/fab.json index 3365e0348cf..1c3606de43d 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -1,7 +1,7 @@ { "fab": { "font": { - "blue": { + "brand": { "solid": { "light": { "value": "$semantic.ui.color.text.inverse.light", @@ -139,7 +139,7 @@ } } }, - "red": { + "danger": { "solid": { "light": { "value": "$semantic.ui.color.text.inverse.light", @@ -183,7 +183,7 @@ } }, "icon": { - "blue": { + "brand": { "solid": { "light": { "value": "$semantic.ui.color.foreground.1.light", @@ -309,7 +309,7 @@ } } }, - "red": { + "danger": { "solid": { "light": { "value": "$semantic.ui.color.foreground.1.light", @@ -353,7 +353,7 @@ } }, "border": { - "blue": { + "brand": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -383,7 +383,7 @@ "type": "color" } }, - "red": { + "danger": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -395,7 +395,7 @@ } }, "background": { - "blue": { + "brand": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -425,7 +425,7 @@ "type": "color" } }, - "red": { + "danger": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" From e227d091ead5b3b639230967313d7ecad4704d44 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Feb 2023 16:21:47 +0100 Subject: [PATCH 264/696] Updates to stepper item --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/component/[template-comp-name].json | 2 +- tokens/component/stepper-item.json | 234 +++++++++++++++++++++ 4 files changed, 246 insertions(+), 6 deletions(-) create mode 100644 tokens/component/stepper-item.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index e9a448a805f..31d4fba02bc 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -34,6 +34,7 @@ "component/pagination", "component/segmented-control", "component/stepper", + "component/stepper-item", "component/switch", "component/[template-comp-name]", "component/accordion_backup", diff --git a/tokens/$themes.json b/tokens/$themes.json index 676403165c2..c3642839732 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/stepper-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/stepper-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -46,7 +48,8 @@ "component/stepper": "source", "component/pagination": "source", "component/segmented-control": "source", - "component/switch": "source" + "component/switch": "source", + "component/stepper-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -134,7 +137,8 @@ "component/stepper": "source", "component/pagination": "source", "component/segmented-control": "source", - "component/switch": "source" + "component/switch": "source", + "component/stepper-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -233,7 +237,8 @@ "component/fab": "enabled", "component/stepper": "enabled", "component/pagination": "enabled", - "component/segmented-control": "enabled" + "component/segmented-control": "enabled", + "component/stepper-item": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index bf4896dbc5a..09df0d4a5e2 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -10,7 +10,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "md": { diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json new file mode 100644 index 00000000000..c6e31b6d2e1 --- /dev/null +++ b/tokens/component/stepper-item.json @@ -0,0 +1,234 @@ +{ + "stepper": { + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.1h", + "type": "typography" + } + }, + "description": { + "sm": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.1h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "content": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "number": { + "sm": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.1h", + "type": "typography" + }, + "default": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "error": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file From 5fa6d094dbdeb21ac17837213c45b29c29a44d5e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Feb 2023 16:34:40 +0100 Subject: [PATCH 265/696] Updates to stepper-item --- tokens/$themes.json | 6 ++---- tokens/component/stepper-item.json | 34 ++++++++++++++++++++++++------ 2 files changed, 30 insertions(+), 10 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index c3642839732..eef89d3617a 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/stepper-item": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/stepper-item": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index c6e31b6d2e1..fabee74e839 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -105,13 +105,35 @@ } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "error": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } }, "border": { From e003f5b0f86631f3a7016e413faee4d6ef819d91 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Feb 2023 16:53:34 +0100 Subject: [PATCH 266/696] Updates to stepper-item --- tokens/component/stepper-item.json | 42 +++++++++++++++--------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index fabee74e839..ef3bee70583 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -137,35 +137,35 @@ } }, "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.border.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" + "error": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } }, "border-radius": { From 5650f4003eb76ac412475f96bf0a3ac86a4be2a9 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Feb 2023 17:08:36 +0100 Subject: [PATCH 267/696] Stepper-items updates --- tokens/component/stepper-item.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index ef3bee70583..bb7e12a4929 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -251,6 +251,10 @@ "value": "$core.spacing.11", "type": "spacing" } + }, + "disabled": { + "value": "{core.opacity.50}", + "type": "opacity" } } } \ No newline at end of file From d9d46a133134ecddc96721726908cc7fedb678b9 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Feb 2023 17:17:35 +0100 Subject: [PATCH 268/696] Latest updates --- tokens/$metadata.json | 16 +- tokens/$themes.json | 48 +- tokens/calcite/dark.json | 256 ++++++++ tokens/calcite/light.json | 216 +++++++ tokens/component/[template-comp-name].json | 2 +- tokens/component/accordion_backup_Copy.json | 238 ++++++++ tokens/component/button.json | 578 ------------------ tokens/component/combobox.json | 152 ----- tokens/component/dropdown.json | 177 ------ tokens/component/fab.json | 524 ---------------- tokens/component/input-telephone.json | 269 ++++++++ tokens/component/input-text.json | 269 ++++++++ .../{stepper-item.json => input-week.json} | 245 ++++---- tokens/component/link.json | 44 -- tokens/component/pagination.json | 177 ------ tokens/component/segmented-control.json | 154 ----- tokens/component/stepper.json | 152 ----- tokens/component/tab-title.json | 253 ++++++++ tokens/component/tabs.json | 253 ++++++++ tokens/component/textarea.json | 225 +++++++ tokens/semantic.json | 10 - 21 files changed, 2127 insertions(+), 2131 deletions(-) create mode 100644 tokens/component/accordion_backup_Copy.json delete mode 100644 tokens/component/button.json delete mode 100644 tokens/component/combobox.json delete mode 100644 tokens/component/dropdown.json delete mode 100644 tokens/component/fab.json create mode 100644 tokens/component/input-telephone.json create mode 100644 tokens/component/input-text.json rename tokens/component/{stepper-item.json => input-week.json} (53%) delete mode 100644 tokens/component/link.json delete mode 100644 tokens/component/pagination.json delete mode 100644 tokens/component/segmented-control.json delete mode 100644 tokens/component/stepper.json create mode 100644 tokens/component/tab-title.json create mode 100644 tokens/component/tabs.json create mode 100644 tokens/component/textarea.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 31d4fba02bc..832eb0b8f9e 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -6,12 +6,8 @@ "component/accordion", "component/alert", "component/avatar", - "component/button", - "component/fab", "component/checkbox", "component/chip", - "component/combobox", - "component/dropdown", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -21,23 +17,25 @@ "component/input-number", "component/input-password", "component/input-search", + "component/input-telephone", "component/input-message", "component/input-time", + "component/input-text", + "component/input-week", + "component/textarea", "component/date-picker", "component/label", - "component/link", "component/loader", "component/radio", + "component/tab-title", + "component/tabs", "component/rating", "component/tip", "component/tooltip", - "component/pagination", - "component/segmented-control", - "component/stepper", - "component/stepper-item", "component/switch", "component/[template-comp-name]", "component/accordion_backup", + "component/accordion_backup_Copy", "calcite/light", "calcite/dark", "brand/global", diff --git a/tokens/$themes.json b/tokens/$themes.json index eef89d3617a..20f3ecc0c58 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -35,19 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/combobox": "source", - "component/button": "source", - "component/dropdown": "source", - "component/color-picker": "source", - "component/input-datetime-local": "source", - "component/link": "source", - "component/fab": "source", - "component/stepper": "source", - "component/pagination": "source", - "component/segmented-control": "source", - "component/switch": "source", - "component/stepper-item": "source" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -124,19 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/combobox": "source", - "component/button": "source", - "component/dropdown": "source", - "component/color-picker": "source", - "component/input-datetime-local": "source", - "component/link": "source", - "component/fab": "source", - "component/stepper": "source", - "component/pagination": "source", - "component/segmented-control": "source", - "component/switch": "source", - "component/stepper-item": "source" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -227,16 +203,18 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", - "component/combobox": "enabled", - "component/button": "enabled", - "component/dropdown": "enabled", "component/input-datetime-local": "enabled", - "component/link": "enabled", - "component/fab": "enabled", - "component/stepper": "enabled", - "component/pagination": "enabled", - "component/segmented-control": "enabled", - "component/stepper-item": "enabled" + "component/input-email": "enabled", + "component/input-file": "enabled", + "component/input-month": "enabled", + "component/input-number": "enabled", + "component/input-password": "enabled", + "component/input-search": "enabled", + "component/input-telephone": "enabled", + "component/input-text": "enabled", + "component/input-week": "enabled", + "component/textarea": "enabled", + "component/tab-title": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index faa5053560f..76e187ae720 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -860,6 +860,10 @@ "label": { "value": "$input-password.font.label.dark", "type": "color" + }, + "prefix-suffix": { + "value": "$input-password.font.prefix-suffix.dark", + "type": "color" } }, "icon": { @@ -890,6 +894,258 @@ "type": "color" } } + }, + "input-search": { + "font": { + "placeholder-value": { + "value": "$input-search.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-search.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-search.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-search.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-search.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-search.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-search.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-search.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-search.border.invalid.dark", + "type": "color" + } + } + }, + "input-telephone": { + "font": { + "placeholder-value": { + "value": "$input-telephone.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-telephone.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-telephone.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-telephone.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-telephone.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-telephone.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-telephone.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-telephone.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-telephone.border.invalid.dark", + "type": "color" + } + } + }, + "input-text": { + "font": { + "placeholder-value": { + "value": "$input-text.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-text.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-text.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-text.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-text.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-text.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-text.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-text.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-text.border.invalid.dark", + "type": "color" + } + } + }, + "input-week": { + "font": { + "placeholder-value": { + "value": "$input-week.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-week.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-week.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-week.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-week.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-week.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-week.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-week.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-week.border.invalid.dark", + "type": "color" + } + } + }, + "textarea": { + "font": { + "placeholder-value": { + "value": "$textarea.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$textarea.font.label.dark", + "type": "color" + }, + "chat-limit": { + "value": "$textarea.font.chat-limit.dark", + "type": "color" + } + }, + "icon": { + "value": "$textarea.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$textarea.background.default.dark", + "type": "color" + }, + "read-only": { + "value": "$textarea.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$textarea.border.dark", + "type": "color" + } + } + }, + "tab-title": { + "font": { + "default": { + "value": "$tab-title.font.default.dark", + "type": "color" + }, + "active": { + "value": "$tab-title.font.active.dark", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$tab-title.icon.default.dark", + "type": "color" + }, + "active": { + "value": "$tab-title.icon.active.dark", + "type": "color" + } + }, + "bordered": { + "border": { + "value": "$tab-title.bordered.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$tab-title.bordered.background.default.dark", + "type": "color" + } + } + }, + "border": { + "active": { + "value": "$tab-title.border.active.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index f81edec99cf..6491050b1b3 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -896,6 +896,10 @@ "label": { "value": "$input-password.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-password.font.prefix-suffix.light", + "type": "color" } }, "icon": { @@ -936,6 +940,10 @@ "label": { "value": "$input-search.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-search.font.prefix-suffix.light", + "type": "color" } }, "icon": { @@ -966,6 +974,214 @@ "type": "color" } } + }, + "input-telephone": { + "font": { + "placeholder-value": { + "value": "$input-telephone.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-telephone.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-telephone.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-telephone.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-telephone.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-telephone.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-telephone.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-telephone.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-telephone.border.invalid.light", + "type": "color" + } + } + }, + "input-text": { + "font": { + "placeholder-value": { + "value": "$input-text.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-text.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-text.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-text.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-text.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-text.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-text.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-text.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-text.border.invalid.light", + "type": "color" + } + } + }, + "input-week": { + "font": { + "placeholder-value": { + "value": "$input-week.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-week.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-week.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-week.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-week.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-week.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-week.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-week.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-week.border.invalid.light", + "type": "color" + } + } + }, + "textarea": { + "font": { + "placeholder-value": { + "value": "$textarea.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$textarea.font.label.light", + "type": "color" + }, + "chat-limit": { + "value": "$textarea.font.chat-limit.light", + "type": "color" + } + }, + "icon": { + "value": "$textarea.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$textarea.background.default.light", + "type": "color" + }, + "read-only": { + "value": "$textarea.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "{textarea.border.light}", + "type": "color" + } + } + }, + "tab-title": { + "font": { + "default": { + "value": "$tab-title.font.default.light", + "type": "color" + }, + "active": { + "value": "$tab-title.font.active.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$tab-title.icon.default.light", + "type": "color" + }, + "active": { + "value": "$tab-title.icon.active.light", + "type": "color" + } + }, + "bordered": { + "border": { + "value": "$tab-title.bordered.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$tab-title.bordered.background.default.light", + "type": "color" + } + } + }, + "border": { + "active": { + "value": "$tab-title.border.active.light", + "type": "color" + } + } } } } diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 09df0d4a5e2..bf4896dbc5a 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -10,7 +10,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "$semantic.font.default.bold.-3h", "type": "typography" }, "md": { diff --git a/tokens/component/accordion_backup_Copy.json b/tokens/component/accordion_backup_Copy.json new file mode 100644 index 00000000000..5a67f8416b4 --- /dev/null +++ b/tokens/component/accordion_backup_Copy.json @@ -0,0 +1,238 @@ +{ + "accordion": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/button.json b/tokens/component/button.json deleted file mode 100644 index 5669c1ba910..00000000000 --- a/tokens/component/button.json +++ /dev/null @@ -1,578 +0,0 @@ -{ - "button": { - "font": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "icon": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - } - }, - "border": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "background": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json deleted file mode 100644 index 8d724bffabd..00000000000 --- a/tokens/component/combobox.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "combobox": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json deleted file mode 100644 index b4e2f0a5bb1..00000000000 --- a/tokens/component/dropdown.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "dropdown": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json deleted file mode 100644 index 1c3606de43d..00000000000 --- a/tokens/component/fab.json +++ /dev/null @@ -1,524 +0,0 @@ -{ - "fab": { - "font": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "icon": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "border": { - "brand": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "danger": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "background": { - "brand": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "danger": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/input-telephone.json b/tokens/component/input-telephone.json new file mode 100644 index 00000000000..3116ce7c069 --- /dev/null +++ b/tokens/component/input-telephone.json @@ -0,0 +1,269 @@ +{ + "input-telephone": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-text.json b/tokens/component/input-text.json new file mode 100644 index 00000000000..3116ce7c069 --- /dev/null +++ b/tokens/component/input-text.json @@ -0,0 +1,269 @@ +{ + "input-telephone": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/stepper-item.json b/tokens/component/input-week.json similarity index 53% rename from tokens/component/stepper-item.json rename to tokens/component/input-week.json index bb7e12a4929..10e3d2af452 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/input-week.json @@ -1,51 +1,37 @@ { - "stepper": { + "input-week": { "font": { - "heading": { + "placeholder-value": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-1h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.0h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.1h", + "value": "$semantic.font.default.regular.0h", "type": "typography" } }, - "description": { - "sm": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.1h", - "type": "typography" - }, + "label": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" - } - }, - "content": { + }, "sm": { "value": "$semantic.font.default.regular.-2h", "type": "typography" @@ -59,202 +45,225 @@ "type": "typography" } }, - "number": { + "prefix-suffix": { "sm": { - "value": "$semantic.font.default.medium.-1h", + "value": "$semantic.font.default.medium.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.0h", + "value": "$semantic.font.default.medium.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.1h", + "value": "$semantic.font.default.medium.0h", "type": "typography" }, - "default": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "error": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "icon": { - "default": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "$semantic.ui.color.text.2.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "$semantic.ui.color.text.2.dark", "type": "color" } }, - "active": { + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } }, - "error": { + "default": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.border.input.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.border.input.dark", "type": "color" } } }, - "border": { + "background": { "default": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } }, - "active": { + "prefix-suffix": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "$semantic.ui.color.background.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$semantic.ui.color.background.dark", "type": "color" } }, - "error": { + "read-only": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.background.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.background.dark", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.7", "type": "spacing" } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } } }, - "disabled": { - "value": "{core.opacity.50}", - "type": "opacity" + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } } } } \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json deleted file mode 100644 index 4bd7249b874..00000000000 --- a/tokens/component/link.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "link": { - "font": { - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - }, - "regular": { - "value": "$semantic.font.wrap.regular.0", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "bottom": { - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json deleted file mode 100644 index 8525fb9be8a..00000000000 --- a/tokens/component/pagination.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "pagination": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json deleted file mode 100644 index b661574f032..00000000000 --- a/tokens/component/segmented-control.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "segmented-control": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "checked": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json deleted file mode 100644 index 76ca139ef90..00000000000 --- a/tokens/component/stepper.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "stepper": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json new file mode 100644 index 00000000000..6e0e9800f70 --- /dev/null +++ b/tokens/component/tab-title.json @@ -0,0 +1,253 @@ +{ + "tab-title": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "bordered": { + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "active": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "default": { + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "border": { + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json new file mode 100644 index 00000000000..78f91e3e9bc --- /dev/null +++ b/tokens/component/tabs.json @@ -0,0 +1,253 @@ +{ + "tabs": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "bordered": { + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "active": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "default": { + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "border": { + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json new file mode 100644 index 00000000000..ce0619db8fe --- /dev/null +++ b/tokens/component/textarea.json @@ -0,0 +1,225 @@ +{ + "textarea": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "chat-limit": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 6f678e878b4..0c783c72a9a 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1424,16 +1424,6 @@ "type": "color" } }, - "3": { - "light": { - "value": "$core.color.neutral.blk-020", - "type": "color" - }, - "dark": { - "value": "$core.color.neutral.blk-220", - "type": "color" - } - }, "current": { "light": { "value": "$core.color.palette.high-saturation.blue.h-bb-010", From e1ca7178aedd4e738a9b4465e4b0c1828ca091f0 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 08:44:47 -0800 Subject: [PATCH 269/696] ci(actions): pass assignee data as string --- .github/workflows/sync_to_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 00a771d46ee..c838e289697 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -19,7 +19,7 @@ jobs: script: | const body = JSON.stringify({ action: context.payload.action, - data: context.payload.issue.assignees, + data: JSON.stringify({ assignees: context.payload.issue.assignees }), owner: context.payload.repository.owner.login, repo: context.payload.repository.name, number: context.payload.issue.number.toString(), @@ -63,7 +63,7 @@ jobs: }, method: "POST" }); - issue_demilestoned: + issue_milestoned: runs-on: ubuntu-latest if: github.event.action == 'demilestoned' || github.event.action == 'milestoned' steps: From 4d9b6085845f79db5c58dcde23678523c8f15d3b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 09:39:53 -0800 Subject: [PATCH 270/696] ci(actions): pass label data as string --- .github/workflows/sync_to_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index c838e289697..0ec2a66fe58 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -141,7 +141,7 @@ jobs: script: | const body = JSON.stringify({ action: context.payload.action, - data: context.payload.issue.labels, + data: JSON.stringify({labels: context.payload.issue.labels}), owner: context.payload.repository.owner.login, repo: context.payload.repository.name, number: context.payload.issue.number.toString(), From bc0e0438e9be8ae50326eedd8c6bc9b9aabdbb81 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:07:24 -0800 Subject: [PATCH 271/696] ci(actions): accept actions from airtable --- .github/workflows/sync_from_airtable.yml | 100 +++++++++++++++++++++-- 1 file changed, 91 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 6c00b55f91f..7954853781a 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -5,15 +5,97 @@ on: repository_dispatch: types: [airtable-update] +env: + ACTION: github.event.client_payload.action + DATA: toJSON(github.event.client_payload.data) + NUMBER: github.event.client_payload.number + TITLE: github.event.client_payload.title + OWNER: 'Esri' + REPO: 'calcite-design-tokens' + jobs: - test1: - name: Test1 (conditional run) + existing_issue: + name: Find Existing Issue + runs-on: ubuntu-latest + outputs: + github_issue: ${{ steps.output-result.outputs.result }} + steps: + - uses: actions/github-script@v6 + id: find-existing-issue + with: + result-encoding: string + script: | + const {OWNER, REPO, NUMBER} = process.env; + return github.request('GET /repos/{OWNER}/{REPO}/issues/{NUMBER}', { + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + headers: { + 'X-GitHub-Api-Version': '2022-11-28' + } + }) + - name: Get result + id: output-result + run: echo "result=${{steps.find-existing-issue.outputs.result}}" >> $GITHUB_OUTPUT + + assigned_unassigned: + name: Assign or Unassign + needs: existing_issue + if: needs.existing-issue.outputs.github_issue && ACTION === 'assigned/unassigned' + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + console.log(process.env.ACTION) + labeled_unlabeled: + name: Label or UnLabel + needs: existing_issue + if: needs.existing-issue.outputs.github_issue && ACTION === 'labeled/unlabeled' + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + console.log(process.env.ACTION) + milestoned_demilestoned: + name: Milestone or DeMilestone + needs: existing_issue + if: needs.existing-issue.outputs.github_issue && ACTION === 'milestoned/demilestoned' + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + console.log(process.env.ACTION) + open_closed: + name: Opened, ReOpened, or Closed + needs: existing_issue + if: needs.existing-issue.outputs.github_issue && ACTION === 'open/closed' + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + console.log(process.env.ACTION) + edited: + name: Edited + needs: existing_issue + if: needs.existing-issue.outputs.github_issue && ACTION === 'edited' + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + console.log(process.env.ACTION) + new_issue: + name: Create New Issue + needs: existing_issue + if: needs.existing-issue.outputs.github_issue == undefined runs-on: ubuntu-latest steps: - - name: Dump GitHub context - id: github_context_step - run: echo '${{ toJSON(github.event.client_payload) }}' -# - run: 'echo "field: ${{ github.event.client_payload.payload[issue Number] }}"' -# - run: 'echo "payload: ${{ toJson(github.event.client_payload) }}"' -# - run: echo baz -# if: github.event.client_payload.payload.version == 'production' + - uses: actions/github-script@v6 + with: + script: | + console.log(process.env.ACTION) + From 07cc7065817ab92eb799b12ef4ffc94aca51f95a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:21:00 -0800 Subject: [PATCH 272/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 7954853781a..bc1d72aa4d0 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -41,7 +41,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: needs.existing-issue.outputs.github_issue && ACTION === 'assigned/unassigned' + if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'assigned/unassigned') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -51,7 +51,7 @@ jobs: labeled_unlabeled: name: Label or UnLabel needs: existing_issue - if: needs.existing-issue.outputs.github_issue && ACTION === 'labeled/unlabeled' + if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'labeled/unlabeled') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -61,7 +61,7 @@ jobs: milestoned_demilestoned: name: Milestone or DeMilestone needs: existing_issue - if: needs.existing-issue.outputs.github_issue && ACTION === 'milestoned/demilestoned' + if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'milestoned/demilestoned') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -71,7 +71,7 @@ jobs: open_closed: name: Opened, ReOpened, or Closed needs: existing_issue - if: needs.existing-issue.outputs.github_issue && ACTION === 'open/closed' + if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'open/closed') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -81,7 +81,7 @@ jobs: edited: name: Edited needs: existing_issue - if: needs.existing-issue.outputs.github_issue && ACTION === 'edited' + if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'edited') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -91,7 +91,7 @@ jobs: new_issue: name: Create New Issue needs: existing_issue - if: needs.existing-issue.outputs.github_issue == undefined + if: ${{(ACTION === 'edited') && (needs.existing-issue.outputs.github_issue == undefined)}} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From ff70b230cce65e6247036411b187e72fc82aceb6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:22:00 -0800 Subject: [PATCH 273/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 120 +++++++++++------------ 1 file changed, 60 insertions(+), 60 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index bc1d72aa4d0..8709c387a6e 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -38,64 +38,64 @@ jobs: id: output-result run: echo "result=${{steps.find-existing-issue.outputs.result}}" >> $GITHUB_OUTPUT - assigned_unassigned: - name: Assign or Unassign - needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'assigned/unassigned') }} - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - console.log(process.env.ACTION) - labeled_unlabeled: - name: Label or UnLabel - needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'labeled/unlabeled') }} - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - console.log(process.env.ACTION) - milestoned_demilestoned: - name: Milestone or DeMilestone - needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'milestoned/demilestoned') }} - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - console.log(process.env.ACTION) - open_closed: - name: Opened, ReOpened, or Closed - needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'open/closed') }} - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - console.log(process.env.ACTION) - edited: - name: Edited - needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'edited') }} - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - console.log(process.env.ACTION) - new_issue: - name: Create New Issue - needs: existing_issue - if: ${{(ACTION === 'edited') && (needs.existing-issue.outputs.github_issue == undefined)}} - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - console.log(process.env.ACTION) +# assigned_unassigned: +# name: Assign or Unassign +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'assigned/unassigned') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# labeled_unlabeled: +# name: Label or UnLabel +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'labeled/unlabeled') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# milestoned_demilestoned: +# name: Milestone or DeMilestone +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'milestoned/demilestoned') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# open_closed: +# name: Opened, ReOpened, or Closed +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'open/closed') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# edited: +# name: Edited +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'edited') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# new_issue: +# name: Create New Issue +# needs: existing_issue +# if: ${{(ACTION === 'edited') && (needs.existing-issue.outputs.github_issue == undefined)}} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) From f99ad7918b9f0ff8f835c4f7e21d55c0fa515d5d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:27:20 -0800 Subject: [PATCH 274/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 8709c387a6e..a9a202f3f52 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -26,14 +26,11 @@ jobs: result-encoding: string script: | const {OWNER, REPO, NUMBER} = process.env; - return github.request('GET /repos/{OWNER}/{REPO}/issues/{NUMBER}', { - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - headers: { - 'X-GitHub-Api-Version': '2022-11-28' - } - }) + return github.rest.issues.get({ + issue_number: NUMBER, + owner: OWNER, + repo: REPO, + }); - name: Get result id: output-result run: echo "result=${{steps.find-existing-issue.outputs.result}}" >> $GITHUB_OUTPUT From bc98e673637bed621e9315bef8843f866af99c25 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:30:25 -0800 Subject: [PATCH 275/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a9a202f3f52..ed5643848b8 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -27,9 +27,9 @@ jobs: script: | const {OWNER, REPO, NUMBER} = process.env; return github.rest.issues.get({ - issue_number: NUMBER, - owner: OWNER, - repo: REPO, + issue_number: 44, + owner: 'Esri', + repo: 'calcite-design-tokens, }); - name: Get result id: output-result From d18039ac3f9fcea6e4b976e8bcf4fc18361c8b4c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:34:49 -0800 Subject: [PATCH 276/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index ed5643848b8..741b785bf33 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -25,15 +25,14 @@ jobs: with: result-encoding: string script: | - const {OWNER, REPO, NUMBER} = process.env; - return github.rest.issues.get({ - issue_number: 44, - owner: 'Esri', - repo: 'calcite-design-tokens, - }); - - name: Get result - id: output-result - run: echo "result=${{steps.find-existing-issue.outputs.result}}" >> $GITHUB_OUTPUT + const test = await github.rest.issues.get({ + issue_number: 44, + owner: 'Esri', + repo: 'calcite-design-tokens, + }); + return JSON.stringify(test) +# - id: output-result +# run: echo "result=${{steps.find-existing-issue.outputs.result}}" >> $GITHUB_OUTPUT # assigned_unassigned: # name: Assign or Unassign From cdc1b1f75b12220fec64f42015868e74fd3e29ff Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:43:01 -0800 Subject: [PATCH 277/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 741b785bf33..bf61625cda8 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -17,20 +17,19 @@ jobs: existing_issue: name: Find Existing Issue runs-on: ubuntu-latest - outputs: - github_issue: ${{ steps.output-result.outputs.result }} steps: - uses: actions/github-script@v6 id: find-existing-issue with: - result-encoding: string script: | - const test = await github.rest.issues.get({ - issue_number: 44, - owner: 'Esri', - repo: 'calcite-design-tokens, - }); - return JSON.stringify(test) + github.rest.issues.get({ + issue_number: 44, + owner: 'Esri', + repo: 'calcite-design-tokens, + }); + +# outputs: +# github_issue: ${{ steps.output-result.outputs.result }} # - id: output-result # run: echo "result=${{steps.find-existing-issue.outputs.result}}" >> $GITHUB_OUTPUT From 796cb33102e4493826e88257e3bf21c331b5aeec Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:45:33 -0800 Subject: [PATCH 278/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 83 +++--------------------- 1 file changed, 9 insertions(+), 74 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index bf61625cda8..767bd25c334 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -19,78 +19,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 - id: find-existing-issue + id: my-script with: - script: | - github.rest.issues.get({ - issue_number: 44, - owner: 'Esri', - repo: 'calcite-design-tokens, - }); - -# outputs: -# github_issue: ${{ steps.output-result.outputs.result }} -# - id: output-result -# run: echo "result=${{steps.find-existing-issue.outputs.result}}" >> $GITHUB_OUTPUT - -# assigned_unassigned: -# name: Assign or Unassign -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'assigned/unassigned') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# labeled_unlabeled: -# name: Label or UnLabel -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'labeled/unlabeled') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# milestoned_demilestoned: -# name: Milestone or DeMilestone -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'milestoned/demilestoned') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# open_closed: -# name: Opened, ReOpened, or Closed -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'open/closed') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# edited: -# name: Edited -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'edited') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# new_issue: -# name: Create New Issue -# needs: existing_issue -# if: ${{(ACTION === 'edited') && (needs.existing-issue.outputs.github_issue == undefined)}} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) - + result-encoding: string + retries: 3 + script: | + github.rest.issues.get({ + issue_number: 44, + owner: 'Esri', + repo: 'calcite-design-tokens', + }) From e72f6057e5c9c50175857af000f21ae103134af5 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:46:51 -0800 Subject: [PATCH 279/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 767bd25c334..aa1cb29fb86 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -24,7 +24,7 @@ jobs: result-encoding: string retries: 3 script: | - github.rest.issues.get({ + return github.rest.issues.get({ issue_number: 44, owner: 'Esri', repo: 'calcite-design-tokens', From d61ff9dc3441b98b938af77455e1e86e14ede82d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:48:04 -0800 Subject: [PATCH 280/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index aa1cb29fb86..308b892d514 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -22,7 +22,6 @@ jobs: id: my-script with: result-encoding: string - retries: 3 script: | return github.rest.issues.get({ issue_number: 44, From 5372250a06c35d30a54640eb7b57419381a75561 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:51:46 -0800 Subject: [PATCH 281/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 64 +++++++++++++++++++++++- 1 file changed, 63 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 308b892d514..a6af8260b96 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 - id: my-script + id: find-existing-issue with: result-encoding: string script: | @@ -28,3 +28,65 @@ jobs: owner: 'Esri', repo: 'calcite-design-tokens', }) + - id: output-result + run: echo "result=${{steps.find-existing-issue.outputs.result}}" >> $GITHUB_OUTPUT +# assigned_unassigned: +# name: Assign or Unassign +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'assigned/unassigned') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# labeled_unlabeled: +# name: Label or UnLabel +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'labeled/unlabeled') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# milestoned_demilestoned: +# name: Milestone or DeMilestone +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'milestoned/demilestoned') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# open_closed: +# name: Opened, ReOpened, or Closed +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'open/closed') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# edited: +# name: Edited +# needs: existing_issue +# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'edited') }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# new_issue: +# name: Create New Issue +# needs: existing_issue +# if: ${{(ACTION === 'edited') && (needs.existing-issue.outputs.github_issue == undefined)}} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) From cbcf300ad4cde7f941617f080901f7d13ced56a4 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:52:44 -0800 Subject: [PATCH 282/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a6af8260b96..47f54eaad75 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -17,6 +17,8 @@ jobs: existing_issue: name: Find Existing Issue runs-on: ubuntu-latest + outputs: + github_issue: ${{ steps.output-result.outputs.result }} steps: - uses: actions/github-script@v6 id: find-existing-issue From cf1170f2fdec5bb03bc1b2504c901efa90fd3cb9 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:53:39 -0800 Subject: [PATCH 283/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 47f54eaad75..e3a232c2cc0 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -31,7 +31,7 @@ jobs: repo: 'calcite-design-tokens', }) - id: output-result - run: echo "result=${{steps.find-existing-issue.outputs.result}}" >> $GITHUB_OUTPUT + run: echo "result=${{ toJSON(steps.find-existing-issue.outputs.result) }}" >> $GITHUB_OUTPUT # assigned_unassigned: # name: Assign or Unassign # needs: existing_issue From 1d481e0692928205d7297954741c7cbd205e2558 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:55:46 -0800 Subject: [PATCH 284/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index e3a232c2cc0..811bb53a674 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -29,9 +29,9 @@ jobs: issue_number: 44, owner: 'Esri', repo: 'calcite-design-tokens', - }) + }).then((result) => result.json()).then((results) => JSON.stringify(results)); - id: output-result - run: echo "result=${{ toJSON(steps.find-existing-issue.outputs.result) }}" >> $GITHUB_OUTPUT + run: echo "result=${{ steps.find-existing-issue.outputs.result }}" >> $GITHUB_OUTPUT # assigned_unassigned: # name: Assign or Unassign # needs: existing_issue From 659fe7913d09127f487e46a7a8d4602615bf767c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 12:56:42 -0800 Subject: [PATCH 285/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 811bb53a674..92f6c556d54 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -29,7 +29,7 @@ jobs: issue_number: 44, owner: 'Esri', repo: 'calcite-design-tokens', - }).then((result) => result.json()).then((results) => JSON.stringify(results)); + }).then((results) => JSON.stringify(results)); - id: output-result run: echo "result=${{ steps.find-existing-issue.outputs.result }}" >> $GITHUB_OUTPUT # assigned_unassigned: From 6a5358b879cbd92601944d58861839bd0cdbb083 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:01:40 -0800 Subject: [PATCH 286/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 92f6c556d54..524e097cb97 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -18,20 +18,27 @@ jobs: name: Find Existing Issue runs-on: ubuntu-latest outputs: - github_issue: ${{ steps.output-result.outputs.result }} + github_issue: ${{ steps.find-existing-issue.outputs.result }} steps: - uses: actions/github-script@v6 id: find-existing-issue with: - result-encoding: string script: | return github.rest.issues.get({ issue_number: 44, owner: 'Esri', repo: 'calcite-design-tokens', - }).then((results) => JSON.stringify(results)); - - id: output-result - run: echo "result=${{ steps.find-existing-issue.outputs.result }}" >> $GITHUB_OUTPUT + }); + test: + name: Assign or Unassign + needs: existing_issue + if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (ACTION === 'assigned/unassigned') }} + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + core.info(needs.existing-issue.outputs.github_issue) # assigned_unassigned: # name: Assign or Unassign # needs: existing_issue From 2b933f8b517912e0638aed6ca0eb76da8ce48166 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:03:25 -0800 Subject: [PATCH 287/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 524e097cb97..4602055b6f7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -32,13 +32,14 @@ jobs: test: name: Assign or Unassign needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (ACTION === 'assigned/unassigned') }} + if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (process.env.ACTION === 'assigned/unassigned') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 with: script: | core.info(needs.existing-issue.outputs.github_issue) + # assigned_unassigned: # name: Assign or Unassign # needs: existing_issue From ecd446dd24231a415e0481393377d1b13be5ef09 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:07:40 -0800 Subject: [PATCH 288/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4602055b6f7..713a52997e7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -22,6 +22,10 @@ jobs: steps: - uses: actions/github-script@v6 id: find-existing-issue + env: + NUMBER: '${{env.NUMBER}}' + OWNER: '${{env.OWNER}}' + REPO: '${{env.REPO}}' with: script: | return github.rest.issues.get({ @@ -32,7 +36,7 @@ jobs: test: name: Assign or Unassign needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (process.env.ACTION === 'assigned/unassigned') }} + if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (env.ACTION === 'assigned/unassigned') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 14410e4fbf9263930ae0e6d24338662662bdc7fc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:09:44 -0800 Subject: [PATCH 289/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 713a52997e7..dee204f3305 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -23,9 +23,9 @@ jobs: - uses: actions/github-script@v6 id: find-existing-issue env: - NUMBER: '${{env.NUMBER}}' - OWNER: '${{env.OWNER}}' - REPO: '${{env.REPO}}' + NUMBER: '${$NUMBER}}' + OWNER: '${{$OWNER}}' + REPO: '${{$REPO}}' with: script: | return github.rest.issues.get({ @@ -36,7 +36,7 @@ jobs: test: name: Assign or Unassign needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (env.ACTION === 'assigned/unassigned') }} + if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && ($ACTION == 'assigned/unassigned') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 5b1258694fabae1a638993e811931a693955255b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:11:11 -0800 Subject: [PATCH 290/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index dee204f3305..da0a55b6176 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -23,9 +23,9 @@ jobs: - uses: actions/github-script@v6 id: find-existing-issue env: - NUMBER: '${$NUMBER}}' - OWNER: '${{$OWNER}}' - REPO: '${{$REPO}}' + NUMBER: '${{env.NUMBER}}' + OWNER: '${{env.OWNER}}' + REPO: '${{env.REPO}}' with: script: | return github.rest.issues.get({ From c893ea99b9128f724fecda78936ac25ce87d0ba8 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:12:41 -0800 Subject: [PATCH 291/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index da0a55b6176..6d1228eef31 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -36,7 +36,7 @@ jobs: test: name: Assign or Unassign needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && ($ACTION == 'assigned/unassigned') }} + if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (${{env.ACTION}} == 'assigned/unassigned') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 6c8312e32b96f2c704dec014f9c0c479ad6a8204 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:14:26 -0800 Subject: [PATCH 292/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 6d1228eef31..4409e793e17 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -36,7 +36,7 @@ jobs: test: name: Assign or Unassign needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (${{env.ACTION}} == 'assigned/unassigned') }} + if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (env.ACTION == 'assigned/unassigned') }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 1ef5137090bcc7d13adb9d2c59f6f995e0d5008b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:16:49 -0800 Subject: [PATCH 293/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4409e793e17..6fe2c9dc02c 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -36,13 +36,14 @@ jobs: test: name: Assign or Unassign needs: existing_issue - if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (env.ACTION == 'assigned/unassigned') }} +# if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (env.ACTION == 'assigned/unassigned') }} runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 - with: - script: | - core.info(needs.existing-issue.outputs.github_issue) + - run: echo "${{env.ACTION}}" +# - uses: actions/github-script@v6 +# with: +# script: | +# core.info(needs.existing-issue.outputs.github_issue) # assigned_unassigned: # name: Assign or Unassign From aa6ff8d54e93c77e909701d574ece4ddf8aab511 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:54:35 -0800 Subject: [PATCH 294/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 6fe2c9dc02c..dfe5c456de7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -6,10 +6,10 @@ on: types: [airtable-update] env: - ACTION: github.event.client_payload.action - DATA: toJSON(github.event.client_payload.data) - NUMBER: github.event.client_payload.number - TITLE: github.event.client_payload.title + ACTION: ${{ github.event.client_payload.action }} + DATA: ${{ toJSON(github.event.client_payload.data) }} + NUMBER: ${{ github.event.client_payload.number }} + TITLE: ${{ github.event.client_payload.title }} OWNER: 'Esri' REPO: 'calcite-design-tokens' From 9c3ad325663a9a716bba5909a9a30f68617e6c6d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 13:56:22 -0800 Subject: [PATCH 295/696] ci(sync_to_airtable): DRY variables --- .github/workflows/sync_to_airtable.yml | 318 ++++++++++++------------- 1 file changed, 159 insertions(+), 159 deletions(-) diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 0ec2a66fe58..5a5f126bea9 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -6,182 +6,182 @@ on: jobs: issue_assigned: - runs-on: ubuntu-latest - if: github.event.action == 'assigned' || github.event.action == 'unassigned' - steps: - - name: Set Data - id: set-assigned-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - data: JSON.stringify({ assignees: context.payload.issue.assignees }), - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.issue.title, - }); - - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); + runs-on: ubuntu-latest + if: github.event.action == 'assigned' || github.event.action == 'unassigned' + steps: + - name: Set Data + id: set-assigned-data + uses: actions/github-script@v6 + env: + SECRET: ${{ secrets.AIRTABLE_KEY }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { action, issue, repository } = context.payload; + const body = JSON.stringify({ + action, + data: JSON.stringify({ assignees: issue.assignees }), + owner: repository.owner.login, + repo: repository.name, + number: issue.number.toString(), + secret: process.env.SECRET, + title: issue.title, + }); + return fetch(process.env.WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); issue_closed: runs-on: ubuntu-latest if: github.event.action == 'closed' steps: - - name: Set Data - id: set-closed-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - data: context.payload.issue.closed_at, - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.issue.title, - }); - - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); + - name: Set Data + id: set-closed-data + uses: actions/github-script@v6 + env: + SECRET: ${{ secrets.AIRTABLE_KEY }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { action, issue, repository } = context.payload; + const body = JSON.stringify({ + action, + data: issue.closed_at, + owner: repository.owner.login, + repo: repository.name, + number: issue.number.toString(), + secret: process.env.SECRET, + title: issue.title, + }); + return fetch(process.env.WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); issue_milestoned: runs-on: ubuntu-latest if: github.event.action == 'demilestoned' || github.event.action == 'milestoned' steps: - - name: Set Data - id: set-demilestoned-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - data: JSON.stringify(context.payload.issue.milestone || null), - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.issue.title, - }); - - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); + - name: Set Data + id: set-demilestoned-data + uses: actions/github-script@v6 + env: + SECRET: ${{ secrets.AIRTABLE_KEY }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { action, issue, repository } = context.payload; + const body = JSON.stringify({ + action, + data: JSON.stringify(issue.milestone || null), + owner: repository.owner.login, + repo: repository.name, + number: issue.number.toString(), + secret: process.env.SECRET, + title: issue.title, + }); + return fetch(process.env.WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); issue_edited: runs-on: ubuntu-latest if: github.event.action == 'edited' steps: - - name: Set Data - id: set-edited-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - changes: JSON.stringify(context.payload.changes || null), - data: JSON.stringify(Object.keys(context.payload.changes).reduce((acc, key) => { - acc[key] = context.payload.issue[key] - return acc; - }, {})), - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.changes['title'] - ? context.payload.changes['title'].from - : context.payload.issue.title, - }); - - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); + - name: Set Data + id: set-edited-data + uses: actions/github-script@v6 + env: + SECRET: ${{ secrets.AIRTABLE_KEY }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { action, issue, changes, repository } = context.payload; + const body = JSON.stringify({ + action, + changes: JSON.stringify(changes || null), + data: JSON.stringify(Object.keys(changes).reduce((acc, key) => { + acc[key] = issue[key] + return acc; + }, {})), + owner: repository.owner.login, + repo: repository.name, + number: issue.number.toString(), + secret: process.env.SECRET, + title: changes['title'] + ? changes['title'].from + : issue.title, + }); + return fetch(process.env.WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); issue_labeled: runs-on: ubuntu-latest if: github.event.action == 'labeled' || github.event.action == 'unlabeled' steps: - - name: Set Data - id: set-labeled-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - data: JSON.stringify({labels: context.payload.issue.labels}), - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.issue.title, - }); - - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); + - name: Set Data + id: set-labeled-data + uses: actions/github-script@v6 + env: + SECRET: ${{ secrets.AIRTABLE_KEY }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { action, issue, repository } = context.payload; + const body = JSON.stringify({ + action, + data: JSON.stringify({labels: issue.labels}), + owner: repository.owner.login, + repo: repository.name, + number: issue.number.toString(), + secret: process.env.SECRET, + title: issue.title, + }); + return fetch(process.env.WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); issue_opened: runs-on: ubuntu-latest if: github.event.action == 'opened' || github.event.action == 'reopened' steps: - - name: Set Data - id: set-opened-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const body = JSON.stringify({ - action: context.payload.action, - data: JSON.stringify(context.payload.issue), - owner: context.payload.repository.owner.login, - repo: context.payload.repository.name, - number: context.payload.issue.number.toString(), - secret: process.env.SECRET, - title: context.payload.issue.title, - }); - - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); + - name: Set Data + id: set-opened-data + uses: actions/github-script@v6 + env: + SECRET: ${{ secrets.AIRTABLE_KEY }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} + with: + script: | + const { action, issue, repository } = context.payload; + const body = JSON.stringify({ + action, + data: JSON.stringify(issue), + owner: repository.owner.login, + repo: repository.name, + number: issue.number.toString(), + secret: process.env.SECRET, + title: issue.title, + }); + return fetch(process.env.WEBHOOK, { + body, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); From 72a571787627da31df3d7a0717a4e3068d1b6859 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 15:19:15 -0800 Subject: [PATCH 296/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index dfe5c456de7..de1906f980f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -36,7 +36,7 @@ jobs: test: name: Assign or Unassign needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue.status == 200) && (env.ACTION == 'assigned/unassigned') }} + if: ${{needs.existing-issue.outputs.github_issue.status}} == 200 && ${{env.ACTION}} == 'assigned/unassigned' runs-on: ubuntu-latest steps: - run: echo "${{env.ACTION}}" From 545efe2b015992f5df5f019af59f839cea039c9d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 15:21:41 -0800 Subject: [PATCH 297/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index de1906f980f..c8ddb1d63c7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -36,7 +36,7 @@ jobs: test: name: Assign or Unassign needs: existing_issue - if: ${{needs.existing-issue.outputs.github_issue.status}} == 200 && ${{env.ACTION}} == 'assigned/unassigned' + if: needs.existing-issue.outputs.github_issue.status == 200 && env.ACTION == 'assigned/unassigned' runs-on: ubuntu-latest steps: - run: echo "${{env.ACTION}}" From a235dabb8d5e1ae502c8b97611f5216ce96b3e1c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 15:39:30 -0800 Subject: [PATCH 298/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index c8ddb1d63c7..f863fd33aa7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -6,7 +6,6 @@ on: types: [airtable-update] env: - ACTION: ${{ github.event.client_payload.action }} DATA: ${{ toJSON(github.event.client_payload.data) }} NUMBER: ${{ github.event.client_payload.number }} TITLE: ${{ github.event.client_payload.title }} @@ -36,10 +35,10 @@ jobs: test: name: Assign or Unassign needs: existing_issue - if: needs.existing-issue.outputs.github_issue.status == 200 && env.ACTION == 'assigned/unassigned' + if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'assigned/unassigned' runs-on: ubuntu-latest steps: - - run: echo "${{env.ACTION}}" + - run: echo "${{env.DATA}}" # - uses: actions/github-script@v6 # with: # script: | From 431637b1e4f146c70a2877e58c74b0d9e1df13b0 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 16:11:44 -0800 Subject: [PATCH 299/696] ci(sync_from_airtable): add if statements --- .github/workflows/sync_from_airtable.yml | 142 ++++++++++++----------- 1 file changed, 72 insertions(+), 70 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f863fd33aa7..68b1cea65ea 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -27,80 +27,82 @@ jobs: REPO: '${{env.REPO}}' with: script: | + const { NUMBER, OWNER, REPO } = process.env; return github.rest.issues.get({ - issue_number: 44, - owner: 'Esri', - repo: 'calcite-design-tokens', + issue_number: NUMBER, + owner: OWNER, + repo: REPO, }); - test: + debugger: + name: Test for data + needs: existing_issue + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + env: + DATA: '${{env.DATA}}' + with: + script: | + core.info(needs.existing-issue.outputs.github_issue) + core.info(process.env.DATA) + + assigned_unassigned: name: Assign or Unassign needs: existing_issue if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'assigned/unassigned' runs-on: ubuntu-latest steps: - - run: echo "${{env.DATA}}" -# - uses: actions/github-script@v6 -# with: -# script: | -# core.info(needs.existing-issue.outputs.github_issue) - -# assigned_unassigned: -# name: Assign or Unassign -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'assigned/unassigned') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# labeled_unlabeled: -# name: Label or UnLabel -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'labeled/unlabeled') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# milestoned_demilestoned: -# name: Milestone or DeMilestone -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'milestoned/demilestoned') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# open_closed: -# name: Opened, ReOpened, or Closed -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'open/closed') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# edited: -# name: Edited -# needs: existing_issue -# if: ${{ (needs.existing-issue.outputs.github_issue !== undefined) && (ACTION === 'edited') }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) -# new_issue: -# name: Create New Issue -# needs: existing_issue -# if: ${{(ACTION === 'edited') && (needs.existing-issue.outputs.github_issue == undefined)}} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) + - uses: actions/github-script@v6 + with: + script: | + core.info(process.env.ACTION) + labeled_unlabeled: + name: Label or UnLabel + needs: existing_issue + if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'labeled/unlabeled' + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + core.info(process.env.ACTION) + milestoned_demilestoned: + name: Milestone or DeMilestone + needs: existing_issue + if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'milestoned/demilestoned' + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + console.log(process.env.ACTION) + open_closed: + name: Opened, ReOpened, or Closed + needs: existing_issue + if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'opened/closed' + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + core.info(process.env.ACTION) + edited: + name: Edited + needs: existing_issue + if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'edited' + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + core.info(process.env.ACTION) + new_issue: + name: Create New Issue + needs: existing_issue + if: needs.existing-issue.outputs.github_issue.status != 200 + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + core.info(process.env.ACTION) From f3bf4375edb1cdf9e905195f77798ffbad21cfe3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 16:29:11 -0800 Subject: [PATCH 300/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 68b1cea65ea..7c908bdab50 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -40,10 +40,11 @@ jobs: steps: - uses: actions/github-script@v6 env: - DATA: '${{env.DATA}}' + DATA: env.DATA + ISSUE: needs.existing-issue.outputs.github_issue with: script: | - core.info(needs.existing-issue.outputs.github_issue) + core.info(process.env.ISSUE) core.info(process.env.DATA) assigned_unassigned: From 3b87c055216d9565d887065837f46d276e39f068 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 16:31:30 -0800 Subject: [PATCH 301/696] ci(actions): WIP --- .github/workflows/sync_from_airtable.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 7c908bdab50..56f3d8cafb2 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -40,12 +40,14 @@ jobs: steps: - uses: actions/github-script@v6 env: - DATA: env.DATA - ISSUE: needs.existing-issue.outputs.github_issue + DATA: ${{env.DATA}} + ISSUE: ${{needs.existing-issue.outputs.github_issue}} + ACTION: ${{github.event.client_payload.action}} with: script: | core.info(process.env.ISSUE) core.info(process.env.DATA) + core.info(process.env.ACTION) assigned_unassigned: name: Assign or Unassign From 165c27a5fc3ddd3d694a1a05c396eb0d67d743e2 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:07:30 -0800 Subject: [PATCH 302/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 56f3d8cafb2..f3e7b951930 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -28,11 +28,12 @@ jobs: with: script: | const { NUMBER, OWNER, REPO } = process.env; - return github.rest.issues.get({ - issue_number: NUMBER, - owner: OWNER, - repo: REPO, + const issue = github.rest.issues.get({ + issue_number: 44, + owner: 'Esri', + repo: 'calcite-design-tokens', }); + core.info(issue) debugger: name: Test for data needs: existing_issue @@ -47,12 +48,12 @@ jobs: script: | core.info(process.env.ISSUE) core.info(process.env.DATA) - core.info(process.env.ACTION) + core.info(process.env.ACTION ) assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'assigned/unassigned' + if: (needs.existing-issue.outputs.github_issue.status == 200) && github.event.client_payload.action == 'assigned/unassigned' runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 859c11b10fdf19d6269fe8b43f7e33c4e3454b3f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:09:30 -0800 Subject: [PATCH 303/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f3e7b951930..aa5636eb937 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -28,7 +28,7 @@ jobs: with: script: | const { NUMBER, OWNER, REPO } = process.env; - const issue = github.rest.issues.get({ + const issue = await github.rest.issues.get({ issue_number: 44, owner: 'Esri', repo: 'calcite-design-tokens', From c90a29abb935b97df6ba9e4b0e724fffdd84d210 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:16:33 -0800 Subject: [PATCH 304/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index aa5636eb937..4a4bd56d037 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -33,7 +33,7 @@ jobs: owner: 'Esri', repo: 'calcite-design-tokens', }); - core.info(issue) + core.info(JSON.stringify(issue)) debugger: name: Test for data needs: existing_issue From 69e2ba0cb5fa6496c997e84657c2e9085c26ff06 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:19:56 -0800 Subject: [PATCH 305/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4a4bd56d037..59dfd0cac75 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -29,11 +29,14 @@ jobs: script: | const { NUMBER, OWNER, REPO } = process.env; const issue = await github.rest.issues.get({ - issue_number: 44, + issue_number: NUMBER, owner: 'Esri', repo: 'calcite-design-tokens', }); - core.info(JSON.stringify(issue)) + core.info(NUMBER) + core.info(OWNER) + core.info(REPO) + core.info(issue.status === 200 ? JSON.stringify(issue) : null) debugger: name: Test for data needs: existing_issue @@ -53,7 +56,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: (needs.existing-issue.outputs.github_issue.status == 200) && github.event.client_payload.action == 'assigned/unassigned' + if: needs.existing-issue.outputs.github_issue.status && github.event.client_payload.action == 'assigned/unassigned' runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From e42457e3ddef77b2910c3894fe43cfdbb3a66cc0 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:21:31 -0800 Subject: [PATCH 306/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 59dfd0cac75..4155692760a 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -30,12 +30,9 @@ jobs: const { NUMBER, OWNER, REPO } = process.env; const issue = await github.rest.issues.get({ issue_number: NUMBER, - owner: 'Esri', - repo: 'calcite-design-tokens', + owner: OWNER, + repo: REPO, }); - core.info(NUMBER) - core.info(OWNER) - core.info(REPO) core.info(issue.status === 200 ? JSON.stringify(issue) : null) debugger: name: Test for data From 1f3e0021031971c970d905455674e21390209f88 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:26:15 -0800 Subject: [PATCH 307/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4155692760a..f66030f6620 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -53,7 +53,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: needs.existing-issue.outputs.github_issue.status && github.event.client_payload.action == 'assigned/unassigned' + if: (needs.existing-issue.outputs.github_issue.status == 200) && (github.event.client_payload.action == 'assigned/unassigned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 688d48a2f2f1e03662aa4b03dd31978f9faf7ef3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:28:55 -0800 Subject: [PATCH 308/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f66030f6620..86ad5e4c211 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -33,7 +33,7 @@ jobs: owner: OWNER, repo: REPO, }); - core.info(issue.status === 200 ? JSON.stringify(issue) : null) + return issue.status === 200 ? JSON.stringify(issue) : null; debugger: name: Test for data needs: existing_issue From b286979228a89184daee6dd8557b7d74935d0e71 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:34:11 -0800 Subject: [PATCH 309/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 86ad5e4c211..711ce9dbc1e 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -17,7 +17,7 @@ jobs: name: Find Existing Issue runs-on: ubuntu-latest outputs: - github_issue: ${{ steps.find-existing-issue.outputs.result }} + github_issue: ${{ steps.output-step.outputs.result }} steps: - uses: actions/github-script@v6 id: find-existing-issue @@ -34,6 +34,8 @@ jobs: repo: REPO, }); return issue.status === 200 ? JSON.stringify(issue) : null; + - id: output-step + run: echo 'result=${{ toJSON(steps.find-existing-issue.outputs.result) }}' >> "$GITHUB_OUTPUT" debugger: name: Test for data needs: existing_issue @@ -41,8 +43,8 @@ jobs: steps: - uses: actions/github-script@v6 env: + ISSUE: ${{needs.existing_issue.outputs.github_issue}} DATA: ${{env.DATA}} - ISSUE: ${{needs.existing-issue.outputs.github_issue}} ACTION: ${{github.event.client_payload.action}} with: script: | From b0884b11e896d983a80218ec26b7e557a6cfc3a8 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:35:46 -0800 Subject: [PATCH 310/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 711ce9dbc1e..d0f25f0ee8a 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -33,7 +33,7 @@ jobs: owner: OWNER, repo: REPO, }); - return issue.status === 200 ? JSON.stringify(issue) : null; + return issue.status === 200 ? issue : null; - id: output-step run: echo 'result=${{ toJSON(steps.find-existing-issue.outputs.result) }}' >> "$GITHUB_OUTPUT" debugger: From faf88b2a63f4b17720ef4dae5dd676e7dca5221d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:39:22 -0800 Subject: [PATCH 311/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index d0f25f0ee8a..96587bd6bc7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -33,9 +33,10 @@ jobs: owner: OWNER, repo: REPO, }); - return issue.status === 200 ? issue : null; + return issue.status === 200 ? JSON.stringify(issue) : null; + result-encoding: string - id: output-step - run: echo 'result=${{ toJSON(steps.find-existing-issue.outputs.result) }}' >> "$GITHUB_OUTPUT" + run: echo 'result=${{ steps.find-existing-issue.outputs.result }}' >> "$GITHUB_OUTPUT" debugger: name: Test for data needs: existing_issue From 6c0996d9cbb8d1f0a2420ecdb13ecb7365ab1d9d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:41:08 -0800 Subject: [PATCH 312/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 96587bd6bc7..4ee59c77d40 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -17,7 +17,7 @@ jobs: name: Find Existing Issue runs-on: ubuntu-latest outputs: - github_issue: ${{ steps.output-step.outputs.result }} + github_issue: ${{ steps.find-existing-issue.outputs.result }} steps: - uses: actions/github-script@v6 id: find-existing-issue @@ -35,8 +35,6 @@ jobs: }); return issue.status === 200 ? JSON.stringify(issue) : null; result-encoding: string - - id: output-step - run: echo 'result=${{ steps.find-existing-issue.outputs.result }}' >> "$GITHUB_OUTPUT" debugger: name: Test for data needs: existing_issue From 3a3c7bbeb600f0a45334847478dbab51a3ade07a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:44:54 -0800 Subject: [PATCH 313/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4ee59c77d40..133a9d4db30 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -43,18 +43,20 @@ jobs: - uses: actions/github-script@v6 env: ISSUE: ${{needs.existing_issue.outputs.github_issue}} + ISOK: ${{needs.existing_issue.outputs.github_issue == '200'}} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} with: script: | core.info(process.env.ISSUE) + core.info(process.env.ISOK) core.info(process.env.DATA) core.info(process.env.ACTION ) assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: (needs.existing-issue.outputs.github_issue.status == 200) && (github.event.client_payload.action == 'assigned/unassigned') + if: (needs.existing_issue.outputs.github_issue == "200") && (github.event.client_payload.action == 'assigned/unassigned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 4ef85b58f2d45aa3b8a5b3ce7b965f5a8501a18b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:46:01 -0800 Subject: [PATCH 314/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 133a9d4db30..7bc98ae5ca1 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -43,7 +43,7 @@ jobs: - uses: actions/github-script@v6 env: ISSUE: ${{needs.existing_issue.outputs.github_issue}} - ISOK: ${{needs.existing_issue.outputs.github_issue == '200'}} + ISOK: ${{ needs.existing_issue.outputs.github_issue }} == '200' DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} with: From 62e29bbc495b277dfa7cbff2848095a75952a63a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:49:26 -0800 Subject: [PATCH 315/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 7bc98ae5ca1..f06dd11ccb1 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -43,13 +43,13 @@ jobs: - uses: actions/github-script@v6 env: ISSUE: ${{needs.existing_issue.outputs.github_issue}} - ISOK: ${{ needs.existing_issue.outputs.github_issue }} == '200' + STATUS: ${{needs.existing_issue.outputs.github_issue.status == 200 }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} with: script: | core.info(process.env.ISSUE) - core.info(process.env.ISOK) + core.info(process.env.STATUS) core.info(process.env.DATA) core.info(process.env.ACTION ) From 3751af8e29e2092991fc00d9bed9ab2b1dc5e282 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:52:20 -0800 Subject: [PATCH 316/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f06dd11ccb1..a915e3923f9 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -56,7 +56,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: (needs.existing_issue.outputs.github_issue == "200") && (github.event.client_payload.action == 'assigned/unassigned') + if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'assigned/unassigned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -66,7 +66,7 @@ jobs: labeled_unlabeled: name: Label or UnLabel needs: existing_issue - if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'labeled/unlabeled' + if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'labeled/unlabeled' runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -76,7 +76,7 @@ jobs: milestoned_demilestoned: name: Milestone or DeMilestone needs: existing_issue - if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'milestoned/demilestoned' + if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'milestoned/demilestoned' runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -86,7 +86,7 @@ jobs: open_closed: name: Opened, ReOpened, or Closed needs: existing_issue - if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'opened/closed' + if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'opened/closed' runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -96,7 +96,7 @@ jobs: edited: name: Edited needs: existing_issue - if: needs.existing-issue.outputs.github_issue.status == 200 && github.event.client_payload.action == 'edited' + if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'edited' runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -106,7 +106,7 @@ jobs: new_issue: name: Create New Issue needs: existing_issue - if: needs.existing-issue.outputs.github_issue.status != 200 + if: ${{needs.existing-issue.outputs.github_issue.status != 200 }} runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 005369fa919fc39c76d127ffa6c5b9e1c98f4a1a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:55:12 -0800 Subject: [PATCH 317/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 120 +++++++++++------------ 1 file changed, 60 insertions(+), 60 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a915e3923f9..2a8552f494d 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -53,63 +53,63 @@ jobs: core.info(process.env.DATA) core.info(process.env.ACTION ) - assigned_unassigned: - name: Assign or Unassign - needs: existing_issue - if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'assigned/unassigned') - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - core.info(process.env.ACTION) - labeled_unlabeled: - name: Label or UnLabel - needs: existing_issue - if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'labeled/unlabeled' - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - core.info(process.env.ACTION) - milestoned_demilestoned: - name: Milestone or DeMilestone - needs: existing_issue - if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'milestoned/demilestoned' - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - console.log(process.env.ACTION) - open_closed: - name: Opened, ReOpened, or Closed - needs: existing_issue - if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'opened/closed' - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - core.info(process.env.ACTION) - edited: - name: Edited - needs: existing_issue - if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'edited' - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - core.info(process.env.ACTION) - new_issue: - name: Create New Issue - needs: existing_issue - if: ${{needs.existing-issue.outputs.github_issue.status != 200 }} - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - with: - script: | - core.info(process.env.ACTION) +# assigned_unassigned: +# name: Assign or Unassign +# needs: existing_issue +# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'assigned/unassigned') +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# core.info(process.env.ACTION) +# labeled_unlabeled: +# name: Label or UnLabel +# needs: existing_issue +# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'labeled/unlabeled' +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# core.info(process.env.ACTION) +# milestoned_demilestoned: +# name: Milestone or DeMilestone +# needs: existing_issue +# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'milestoned/demilestoned' +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# console.log(process.env.ACTION) +# open_closed: +# name: Opened, ReOpened, or Closed +# needs: existing_issue +# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'opened/closed' +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# core.info(process.env.ACTION) +# edited: +# name: Edited +# needs: existing_issue +# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'edited' +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# core.info(process.env.ACTION) +# new_issue: +# name: Create New Issue +# needs: existing_issue +# if: ${{needs.existing-issue.outputs.github_issue.status != 200 }} +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# core.info(process.env.ACTION) From 1a921488816ccd19018db6e35fc4488093468d92 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:57:31 -0800 Subject: [PATCH 318/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 2a8552f494d..4e807f6d54e 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -43,15 +43,17 @@ jobs: - uses: actions/github-script@v6 env: ISSUE: ${{needs.existing_issue.outputs.github_issue}} - STATUS: ${{needs.existing_issue.outputs.github_issue.status == 200 }} + STATUS: ${{needs.existing_issue.outputs.github_issue.status == '200' }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} + ISASSIGNED: ${{github.event.client_payload.action}} == 'assigned/unassigned' with: script: | core.info(process.env.ISSUE) core.info(process.env.STATUS) core.info(process.env.DATA) core.info(process.env.ACTION ) + core.info(process.env.ISASSIGNED) # assigned_unassigned: # name: Assign or Unassign From 585840ba50cbd092f80fcdf2096172096368c33b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 17:59:58 -0800 Subject: [PATCH 319/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4e807f6d54e..4fe51aea205 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -43,10 +43,10 @@ jobs: - uses: actions/github-script@v6 env: ISSUE: ${{needs.existing_issue.outputs.github_issue}} - STATUS: ${{needs.existing_issue.outputs.github_issue.status == '200' }} + STATUS: ${{ fromJSON(needs.existing_issue.outputs.github_issue.status) == 200 }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} - ISASSIGNED: ${{github.event.client_payload.action}} == 'assigned/unassigned' + ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} with: script: | core.info(process.env.ISSUE) From 2d9e3e42956e938cc2129c30e1e57c5ee865a564 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:01:27 -0800 Subject: [PATCH 320/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4fe51aea205..3c230f534b4 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -43,7 +43,7 @@ jobs: - uses: actions/github-script@v6 env: ISSUE: ${{needs.existing_issue.outputs.github_issue}} - STATUS: ${{ fromJSON(needs.existing_issue.outputs.github_issue.status) == 200 }} + STATUS: ${{ toJSON(needs.existing_issue.outputs.github_issue.status) == 200 }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} From 2860fd67ac4aa8c214eb24615202741cd9af39db Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:03:23 -0800 Subject: [PATCH 321/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3c230f534b4..fefdd11725f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -43,7 +43,7 @@ jobs: - uses: actions/github-script@v6 env: ISSUE: ${{needs.existing_issue.outputs.github_issue}} - STATUS: ${{ toJSON(needs.existing_issue.outputs.github_issue.status) == 200 }} + STATUS: ${{ toJSON(needs.existing_issue.outputs.github_issue.status) == "200" }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} From 8ff132db8700af612110a2551454382bb243fc5d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:05:31 -0800 Subject: [PATCH 322/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index fefdd11725f..433e3ec9933 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -42,8 +42,8 @@ jobs: steps: - uses: actions/github-script@v6 env: - ISSUE: ${{needs.existing_issue.outputs.github_issue}} - STATUS: ${{ toJSON(needs.existing_issue.outputs.github_issue.status) == "200" }} +# ISSUE: ${{needs.existing_issue.outputs.github_issue}} + STATUS: ${{ needs.existing_issue.outputs.github_issue.status }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} From cff3b8ebb2198acf2cbbebc0bd05f2a5964f453e Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:07:10 -0800 Subject: [PATCH 323/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 433e3ec9933..b1811f0c119 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -42,8 +42,7 @@ jobs: steps: - uses: actions/github-script@v6 env: -# ISSUE: ${{needs.existing_issue.outputs.github_issue}} - STATUS: ${{ needs.existing_issue.outputs.github_issue.status }} + STATUS: ${{ toJSON(needs.existing_issue.outputs.github_issue).status }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} From b84edc7b194497d1725711c5d9a1caa8c4777fd1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:09:02 -0800 Subject: [PATCH 324/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index b1811f0c119..20d23c48d22 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -33,8 +33,7 @@ jobs: owner: OWNER, repo: REPO, }); - return issue.status === 200 ? JSON.stringify(issue) : null; - result-encoding: string + return issue.status === 200 ? issue : null; debugger: name: Test for data needs: existing_issue @@ -42,7 +41,7 @@ jobs: steps: - uses: actions/github-script@v6 env: - STATUS: ${{ toJSON(needs.existing_issue.outputs.github_issue).status }} + STATUS: ${{ needs.existing_issue.outputs.github_issue.status }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} From 934eb7bb2ba5a28eb4914c8676460817951872ac Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:14:22 -0800 Subject: [PATCH 325/696] ci(actions):wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 20d23c48d22..a74629bf513 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -33,7 +33,7 @@ jobs: owner: OWNER, repo: REPO, }); - return issue.status === 200 ? issue : null; + return issue.status === 200 ? JSON.stringify(issue) : ''; debugger: name: Test for data needs: existing_issue @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/github-script@v6 env: - STATUS: ${{ needs.existing_issue.outputs.github_issue.status }} + STATUS: ${{ fromJSON(needs.existing_issue.outputs.github_issue).status }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} From aef6f3651c632723f5b19a1c60b07b9258ee81a0 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:18:59 -0800 Subject: [PATCH 326/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a74629bf513..975f581c1fb 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -39,15 +39,24 @@ jobs: needs: existing_issue runs-on: ubuntu-latest steps: + - id: set-status + uses: actions/github-script@v6 + env: + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + with: + script: | + const issueData = JSON.parse(process.env.ISSUE); + + core.info(issueData.status) + return status; - uses: actions/github-script@v6 env: - STATUS: ${{ fromJSON(needs.existing_issue.outputs.github_issue).status }} + STATUS: ${{ steps.set-status.outputs.result }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} with: script: | - core.info(process.env.ISSUE) core.info(process.env.STATUS) core.info(process.env.DATA) core.info(process.env.ACTION ) From c69a82054b976ba5b694badf5f37e767f2a5fc3f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:20:57 -0800 Subject: [PATCH 327/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 975f581c1fb..3eeb094bea7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -47,8 +47,8 @@ jobs: script: | const issueData = JSON.parse(process.env.ISSUE); - core.info(issueData.status) - return status; + core.info(issueData) + return issueData.status; - uses: actions/github-script@v6 env: STATUS: ${{ steps.set-status.outputs.result }} From c96555e686441a697418cc24feed2661c3b4d2ce Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:22:58 -0800 Subject: [PATCH 328/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3eeb094bea7..1e2c65f939c 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -47,8 +47,8 @@ jobs: script: | const issueData = JSON.parse(process.env.ISSUE); - core.info(issueData) - return issueData.status; + core.info(issueData["status"]) + return issueData["status"]; - uses: actions/github-script@v6 env: STATUS: ${{ steps.set-status.outputs.result }} From 894ecc7dd1a3186f27647ae2d424e4dfd2fc43dc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:24:42 -0800 Subject: [PATCH 329/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 1e2c65f939c..0ca55ca32a8 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -47,8 +47,8 @@ jobs: script: | const issueData = JSON.parse(process.env.ISSUE); - core.info(issueData["status"]) - return issueData["status"]; + core.info(issueData) + return issueData; - uses: actions/github-script@v6 env: STATUS: ${{ steps.set-status.outputs.result }} From c9dc62711e6a78ee1081771db3b39fc417a487c7 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:26:06 -0800 Subject: [PATCH 330/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 0ca55ca32a8..bee11edb4be 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -47,8 +47,8 @@ jobs: script: | const issueData = JSON.parse(process.env.ISSUE); - core.info(issueData) - return issueData; + core.info(issueData.status) + return issueData.status; - uses: actions/github-script@v6 env: STATUS: ${{ steps.set-status.outputs.result }} From 25af63c6d393bf1f62c73b0d878713dca904f7e4 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:28:40 -0800 Subject: [PATCH 331/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index bee11edb4be..6299971bb60 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -45,10 +45,11 @@ jobs: ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: script: | - const issueData = JSON.parse(process.env.ISSUE); + const { status, title } = JSON.parse(process.env.ISSUE); - core.info(issueData.status) - return issueData.status; + core.info(status) + core.info(title) + return status; - uses: actions/github-script@v6 env: STATUS: ${{ steps.set-status.outputs.result }} From 04de6227cac48908ee3cf879dfcfda6bb8e34da7 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:30:30 -0800 Subject: [PATCH 332/696] ci(actions):w ip --- .github/workflows/sync_from_airtable.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 6299971bb60..37cc6a6681a 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -45,11 +45,10 @@ jobs: ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: script: | - const { status, title } = JSON.parse(process.env.ISSUE); + const issue = JSON.parse(process.env.ISSUE); - core.info(status) - core.info(title) - return status; + core.info(issue) + return issue; - uses: actions/github-script@v6 env: STATUS: ${{ steps.set-status.outputs.result }} From df420d3515c8e67c53b2037800556c360884fab3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:32:37 -0800 Subject: [PATCH 333/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 37cc6a6681a..887714663ca 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -46,7 +46,9 @@ jobs: with: script: | const issue = JSON.parse(process.env.ISSUE); + const keys = Object.keys(issue) + core.info(keys) core.info(issue) return issue; - uses: actions/github-script@v6 From 621525e09998e1c165d366ef21d76a78b7de25a4 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:35:29 -0800 Subject: [PATCH 334/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 887714663ca..960b9831925 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -42,10 +42,10 @@ jobs: - id: set-status uses: actions/github-script@v6 env: - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + ISSUE: ${{ fromJSON(needs.existing_issue.outputs.github_issue) }} with: script: | - const issue = JSON.parse(process.env.ISSUE); + const issue = process.env.ISSUE; const keys = Object.keys(issue) core.info(keys) From bae6db362da00879d4c36b6eb87f71e1b62d95cd Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:37:33 -0800 Subject: [PATCH 335/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 960b9831925..f850ddbd192 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -26,6 +26,7 @@ jobs: OWNER: '${{env.OWNER}}' REPO: '${{env.REPO}}' with: + result-encoding: string script: | const { NUMBER, OWNER, REPO } = process.env; const issue = await github.rest.issues.get({ @@ -34,6 +35,7 @@ jobs: repo: REPO, }); return issue.status === 200 ? JSON.stringify(issue) : ''; + debugger: name: Test for data needs: existing_issue From 87a25d83e54eafa9891cacdbebf06be687a466da Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:39:19 -0800 Subject: [PATCH 336/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f850ddbd192..f5cb2f2ee2d 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -44,10 +44,10 @@ jobs: - id: set-status uses: actions/github-script@v6 env: - ISSUE: ${{ fromJSON(needs.existing_issue.outputs.github_issue) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: script: | - const issue = process.env.ISSUE; + const issue = JSON.parse(process.env.ISSUE); const keys = Object.keys(issue) core.info(keys) From 68f031fef988dfe740588ffca056203681656266 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:44:10 -0800 Subject: [PATCH 337/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f5cb2f2ee2d..4586ab4cf24 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -52,16 +52,20 @@ jobs: core.info(keys) core.info(issue) - return issue; + return issue.status; - uses: actions/github-script@v6 env: STATUS: ${{ steps.set-status.outputs.result }} + STATUS_1: ${{ fromJSON(needs.existing_issue.outputs.github_issue.status) }} + STATUS_2: ${{ fromJSON(needs.existing_issue.outputs.github_issue).status }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} with: script: | core.info(process.env.STATUS) + core.info(process.env.STATUS_1) + core.info(process.env.STATUS_2) core.info(process.env.DATA) core.info(process.env.ACTION ) core.info(process.env.ISASSIGNED) From d129f1b896fe242f6dd6b14eff4a6a49f5d2fd14 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:46:43 -0800 Subject: [PATCH 338/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4586ab4cf24..52653a781d3 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -56,7 +56,6 @@ jobs: - uses: actions/github-script@v6 env: STATUS: ${{ steps.set-status.outputs.result }} - STATUS_1: ${{ fromJSON(needs.existing_issue.outputs.github_issue.status) }} STATUS_2: ${{ fromJSON(needs.existing_issue.outputs.github_issue).status }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} @@ -64,7 +63,6 @@ jobs: with: script: | core.info(process.env.STATUS) - core.info(process.env.STATUS_1) core.info(process.env.STATUS_2) core.info(process.env.DATA) core.info(process.env.ACTION ) From 681a8fd0d47021d901b8de184c0fa9ee8dfde0a4 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 27 Feb 2023 18:58:47 -0800 Subject: [PATCH 339/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 37 +++++++++++++++--------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 52653a781d3..3926edebfb5 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -55,29 +55,40 @@ jobs: return issue.status; - uses: actions/github-script@v6 env: - STATUS: ${{ steps.set-status.outputs.result }} - STATUS_2: ${{ fromJSON(needs.existing_issue.outputs.github_issue).status }} + STATUS: ${{ fromJSON(needs.existing_issue.outputs.github_issue).status == 200 }} DATA: ${{env.DATA}} ACTION: ${{github.event.client_payload.action}} ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} with: script: | core.info(process.env.STATUS) - core.info(process.env.STATUS_2) core.info(process.env.DATA) core.info(process.env.ACTION ) core.info(process.env.ISASSIGNED) -# assigned_unassigned: -# name: Assign or Unassign -# needs: existing_issue -# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'assigned/unassigned') -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# core.info(process.env.ACTION) + assigned_unassigned: + name: Assign or Unassign + needs: existing_issue + if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'assigned/unassigned') + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + env: + NUMBER: ${{env.NUMBER}} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} + DATA: ${{env.DATA}} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + with: + script: | + const { OWNER, REPO, NUMBER, DATA } = process.env; + const { assignees } = JSON.parse(DATA); + + const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; + + core.info(updateIssueData); + +# github.rest.issues.update(updateIssueData) # labeled_unlabeled: # name: Label or UnLabel # needs: existing_issue From 4c3034f433fb7ad8ef6e48712961c82b40014ba9 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 08:39:28 -0800 Subject: [PATCH 340/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3926edebfb5..6175b7f1d7c 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -88,11 +88,11 @@ jobs: core.info(updateIssueData); -# github.rest.issues.update(updateIssueData) +# github.rest.issues.update(updateIssueData) # labeled_unlabeled: # name: Label or UnLabel # needs: existing_issue -# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'labeled/unlabeled' +# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') # runs-on: ubuntu-latest # steps: # - uses: actions/github-script@v6 @@ -102,7 +102,7 @@ jobs: # milestoned_demilestoned: # name: Milestone or DeMilestone # needs: existing_issue -# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'milestoned/demilestoned' +# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'milestoned/demilestoned' # runs-on: ubuntu-latest # steps: # - uses: actions/github-script@v6 @@ -112,7 +112,7 @@ jobs: # open_closed: # name: Opened, ReOpened, or Closed # needs: existing_issue -# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'opened/closed' +# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'opened/closed' # runs-on: ubuntu-latest # steps: # - uses: actions/github-script@v6 @@ -122,7 +122,7 @@ jobs: # edited: # name: Edited # needs: existing_issue -# if: ${{needs.existing_issue.outputs.github_issue.status == 200 }} && (${{github.event.client_payload.action}} == 'edited' +# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'edited' # runs-on: ubuntu-latest # steps: # - uses: actions/github-script@v6 @@ -132,10 +132,10 @@ jobs: # new_issue: # name: Create New Issue # needs: existing_issue -# if: ${{needs.existing-issue.outputs.github_issue.status != 200 }} +# if: (fromJSON(needs.existing_issue.outputs.github_issue).status != 200 }} # runs-on: ubuntu-latest # steps: # - uses: actions/github-script@v6 # with: # script: | -# core.info(process.env.ACTION) +# core.info('New Issue') From 91989b0500545f53842478b7576f855a46d53a98 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 08:42:59 -0800 Subject: [PATCH 341/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 6175b7f1d7c..12dfc2e5969 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -84,11 +84,15 @@ jobs: const { OWNER, REPO, NUMBER, DATA } = process.env; const { assignees } = JSON.parse(DATA); - const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; + if (assignees) { + const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.info(updateIssueData); + core.log(JSON.stringify(updateIssueData, null, 4)) + } -# github.rest.issues.update(updateIssueData) + +# github.rest.issues.update(updateIssueData); +# # labeled_unlabeled: # name: Label or UnLabel # needs: existing_issue From 224466eced22058efa3754d90bdfb07d4fe40c28 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 14:23:30 -0800 Subject: [PATCH 342/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 12dfc2e5969..3f2c1d719c3 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -80,14 +80,16 @@ jobs: DATA: ${{env.DATA}} ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: + result-encoding: string script: | const { OWNER, REPO, NUMBER, DATA } = process.env; const { assignees } = JSON.parse(DATA); + core.info(JSON.stringify(assignees)) + if (assignees) { const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.log(JSON.stringify(updateIssueData, null, 4)) } From 7b52a86dc645f7eed6bcc759767bd1c7209bdd0b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 14:36:42 -0800 Subject: [PATCH 343/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3f2c1d719c3..c8afbce7ab1 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -77,15 +77,15 @@ jobs: NUMBER: ${{env.NUMBER}} OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} - DATA: ${{env.DATA}} + DATA: ${{ fromJSON(env.DATA) }} ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: result-encoding: string script: | const { OWNER, REPO, NUMBER, DATA } = process.env; - const { assignees } = JSON.parse(DATA); + const { assignees } = DATA; - core.info(JSON.stringify(assignees)) + core.info(JSON.stringify(DATA)) if (assignees) { const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; From 7af70ae95e02e1a5fe739cf2704012f4c6a8fc32 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 14:55:32 -0800 Subject: [PATCH 344/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index c8afbce7ab1..7e7a622cd95 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -83,15 +83,15 @@ jobs: result-encoding: string script: | const { OWNER, REPO, NUMBER, DATA } = process.env; - const { assignees } = DATA; - - core.info(JSON.stringify(DATA)) + const { assignees } = JSON.parse(DATA); if (assignees) { const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - + core.info(JSON.stringify(updateIssueData)) } + core.info(JSON.stringify(assignees)) + # github.rest.issues.update(updateIssueData); # From 3ddff1d0e4a9d5015281f8cdd5113097c022840a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 14:57:57 -0800 Subject: [PATCH 345/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 7e7a622cd95..f41c3b42ed8 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -87,13 +87,9 @@ jobs: if (assignees) { const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.info(JSON.stringify(updateIssueData)) + github.rest.issues.update(updateIssueData); } - - core.info(JSON.stringify(assignees)) - - -# github.rest.issues.update(updateIssueData); +# # # labeled_unlabeled: # name: Label or UnLabel From 63f4b43bae36d534b9efc0a4b388037e3c97659b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 15:08:19 -0800 Subject: [PATCH 346/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f41c3b42ed8..4cdc0ea9f07 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -86,10 +86,16 @@ jobs: const { assignees } = JSON.parse(DATA); if (assignees) { + const issue = await github.rest.issues.get({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + }); const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - github.rest.issues.update(updateIssueData); + + core.info(JSON.stringify(issue, null, 2)) } -# +# github.rest.issues.update(updateIssueData); # # labeled_unlabeled: # name: Label or UnLabel From bcf9f8f0d44acb6010268703646a18faf90e129c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 15:10:18 -0800 Subject: [PATCH 347/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4cdc0ea9f07..3a018688e3d 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -82,15 +82,11 @@ jobs: with: result-encoding: string script: | - const { OWNER, REPO, NUMBER, DATA } = process.env; + const { OWNER, REPO, NUMBER, DATA, ISSUE } = process.env; const { assignees } = JSON.parse(DATA); if (assignees) { - const issue = await github.rest.issues.get({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - }); + const issue = JSON.parse(ISSUE); const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; core.info(JSON.stringify(issue, null, 2)) From 52da3205a44e6310eba9e569f6ad15d842f4cb5b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 15:56:32 -0800 Subject: [PATCH 348/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3a018688e3d..c4584d2b4e3 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -86,10 +86,19 @@ jobs: const { assignees } = JSON.parse(DATA); if (assignees) { + const currentTime = new Date().getTime() const issue = JSON.parse(ISSUE); const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.info(JSON.stringify(issue, null, 2)) + const difference = currentTime.getTime() - issue.updated_at.getTime(); + const getDifferenceInMinutes = (ms) => ms / 1000 / 60; + + if (getDifferenceInMinutes > 2) { + // Continue updating issue + core.info(JSON.stringify(issue, null, 2)) + } else { + core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') + } } # github.rest.issues.update(updateIssueData); # From d23f4bb1d2442afb8cef306a798a73d1182688e2 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 15:59:12 -0800 Subject: [PATCH 349/696] ci(acitons): wip --- .github/workflows/sync_from_airtable.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index c4584d2b4e3..96364507e3e 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -86,11 +86,12 @@ jobs: const { assignees } = JSON.parse(DATA); if (assignees) { - const currentTime = new Date().getTime() const issue = JSON.parse(ISSUE); + const issueUpdateTime = issue.updated_at.getTime(); + const currentTime = new Date().getTime(); const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - const difference = currentTime.getTime() - issue.updated_at.getTime(); + const difference = currentTime - issueUpdateTime; const getDifferenceInMinutes = (ms) => ms / 1000 / 60; if (getDifferenceInMinutes > 2) { From ad12f43fbe7c23b0d306bf5b3865042f7195614c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:08:23 -0800 Subject: [PATCH 350/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 96364507e3e..be123168f26 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -78,7 +78,7 @@ jobs: OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + ISSUE: ${{ fromJSON(needs.existing_issue.outputs.github_issue) }} with: result-encoding: string script: | @@ -87,7 +87,8 @@ jobs: if (assignees) { const issue = JSON.parse(ISSUE); - const issueUpdateTime = issue.updated_at.getTime(); + console.log(issue) + const issueUpdateTime = ISSUE.updated_at.getTime(); const currentTime = new Date().getTime(); const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; From 32dfd573826a42c9a71af560db6531aa5f68da6c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:15:07 -0800 Subject: [PATCH 351/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index be123168f26..111e5eaf079 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -78,7 +78,7 @@ jobs: OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ fromJSON(needs.existing_issue.outputs.github_issue) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: result-encoding: string script: | From a0d36e732a63a6038c0c70d4e44ccf986969357d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:23:28 -0800 Subject: [PATCH 352/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 111e5eaf079..96364507e3e 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -87,8 +87,7 @@ jobs: if (assignees) { const issue = JSON.parse(ISSUE); - console.log(issue) - const issueUpdateTime = ISSUE.updated_at.getTime(); + const issueUpdateTime = issue.updated_at.getTime(); const currentTime = new Date().getTime(); const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; From 2a76a5141ee2d039de00cd684ac89174bcc669f3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:28:30 -0800 Subject: [PATCH 353/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 96364507e3e..2a6cc5410b6 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -89,14 +89,12 @@ jobs: const issue = JSON.parse(ISSUE); const issueUpdateTime = issue.updated_at.getTime(); const currentTime = new Date().getTime(); - const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - - const difference = currentTime - issueUpdateTime; - const getDifferenceInMinutes = (ms) => ms / 1000 / 60; + const getInMinutes = (ms) => ms / 1000 / 60; - if (getDifferenceInMinutes > 2) { + if (getInMinutes(currentTime - (currentTime - 1000)) > 2) { // Continue updating issue - core.info(JSON.stringify(issue, null, 2)) + const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; + core.info(JSON.stringify(updateIssueData, null, 2)) } else { core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') } From 90667dc813bd482770bfe32c550e5fb12bb9aafe Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:35:40 -0800 Subject: [PATCH 354/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 2a6cc5410b6..f2a93a0119d 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -87,11 +87,11 @@ jobs: if (assignees) { const issue = JSON.parse(ISSUE); - const issueUpdateTime = issue.updated_at.getTime(); + const issueUpdateTime = new Date(issue.updated_at).getTime(); const currentTime = new Date().getTime(); const getInMinutes = (ms) => ms / 1000 / 60; - if (getInMinutes(currentTime - (currentTime - 1000)) > 2) { + if (getInMinutes(currentTime - issueUpdateTime) > 2) { // Continue updating issue const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; core.info(JSON.stringify(updateIssueData, null, 2)) From 07c1c2ddabf3a60aa84ba0d42d611cd10c379618 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:39:55 -0800 Subject: [PATCH 355/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f2a93a0119d..d35cc67e246 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -89,9 +89,12 @@ jobs: const issue = JSON.parse(ISSUE); const issueUpdateTime = new Date(issue.updated_at).getTime(); const currentTime = new Date().getTime(); - const getInMinutes = (ms) => ms / 1000 / 60; + const getInSeconds = (ms) => ms / 1000; + const differenceInSeconds(getInSeconds(currentTime - issueUpdateTime)) - if (getInMinutes(currentTime - issueUpdateTime) > 2) { + core.info(differenceInSeconds) + + if (differenceInSeconds > 2) { // Continue updating issue const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; core.info(JSON.stringify(updateIssueData, null, 2)) From c02c5772d7ca72c336131172dbf8a090475f3ef9 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:43:58 -0800 Subject: [PATCH 356/696] ci(action):wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index d35cc67e246..cc0a0293c9f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -89,8 +89,8 @@ jobs: const issue = JSON.parse(ISSUE); const issueUpdateTime = new Date(issue.updated_at).getTime(); const currentTime = new Date().getTime(); - const getInSeconds = (ms) => ms / 1000; - const differenceInSeconds(getInSeconds(currentTime - issueUpdateTime)) + const getInSeconds = (ms) =>(ms / 1000); + const differenceInSeconds = getInSeconds(currentTime - issueUpdateTime); core.info(differenceInSeconds) From 7f0bd7a7a1558ea014da44362b447f14b9863e36 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:46:08 -0800 Subject: [PATCH 357/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index cc0a0293c9f..557998f2c71 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -89,12 +89,13 @@ jobs: const issue = JSON.parse(ISSUE); const issueUpdateTime = new Date(issue.updated_at).getTime(); const currentTime = new Date().getTime(); - const getInSeconds = (ms) =>(ms / 1000); - const differenceInSeconds = getInSeconds(currentTime - issueUpdateTime); + const timeDiffInMs = currentTime - issueUpdateTime; + const getInMinutes = (ms) => (ms / 1000 / 60); + const differenceInMinutes = getInMinutes(timeDiffInMs); - core.info(differenceInSeconds) + core.info(differenceInMinutes) - if (differenceInSeconds > 2) { + if (differenceInMinutes > 2) { // Continue updating issue const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; core.info(JSON.stringify(updateIssueData, null, 2)) From 739308b1a8a974eee80896dbc97c203bdc92c477 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:48:38 -0800 Subject: [PATCH 358/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 29 ++++++++++++------------ 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 557998f2c71..340a424ce0c 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -86,22 +86,23 @@ jobs: const { assignees } = JSON.parse(DATA); if (assignees) { - const issue = JSON.parse(ISSUE); - const issueUpdateTime = new Date(issue.updated_at).getTime(); - const currentTime = new Date().getTime(); - const timeDiffInMs = currentTime - issueUpdateTime; - const getInMinutes = (ms) => (ms / 1000 / 60); - const differenceInMinutes = getInMinutes(timeDiffInMs); + const issue = JSON.parse(ISSUE); + const issueUpdateTime = new Date(issue.updated_at).getTime(); + const currentTime = new Date().getTime(); + const timeDiffInMs = currentTime - issueUpdateTime; + const getInMinutes = (ms) => (ms / 1000 / 60); + const differenceInMinutes = getInMinutes(timeDiffInMs); - core.info(differenceInMinutes) + core.info(timeDiffInMs) + core.info(differenceInMinutes) - if (differenceInMinutes > 2) { - // Continue updating issue - const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.info(JSON.stringify(updateIssueData, null, 2)) - } else { - core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') - } + if (differenceInMinutes > 2) { + // Continue updating issue + const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; + core.info(JSON.stringify(updateIssueData, null, 2)) + } else { + core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') + } } # github.rest.issues.update(updateIssueData); # From d17eba133e3476e84273641e13ed3f4cb4187578 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:51:12 -0800 Subject: [PATCH 359/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 340a424ce0c..9920ff4a0e2 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -93,8 +93,8 @@ jobs: const getInMinutes = (ms) => (ms / 1000 / 60); const differenceInMinutes = getInMinutes(timeDiffInMs); - core.info(timeDiffInMs) - core.info(differenceInMinutes) + core.info(issue.updated_at) + core.info(currentTime) if (differenceInMinutes > 2) { // Continue updating issue From 72663d81d7bf0301b873cec3d0407b07a4643f5f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:52:58 -0800 Subject: [PATCH 360/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 9920ff4a0e2..e8b9e7a9156 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -93,7 +93,7 @@ jobs: const getInMinutes = (ms) => (ms / 1000 / 60); const differenceInMinutes = getInMinutes(timeDiffInMs); - core.info(issue.updated_at) + core.info(issue) core.info(currentTime) if (differenceInMinutes > 2) { From ad8bfe5fbe6fcc321b5bfb8c52c588721a07dab5 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:56:08 -0800 Subject: [PATCH 361/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index e8b9e7a9156..788f3a38478 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -93,7 +93,7 @@ jobs: const getInMinutes = (ms) => (ms / 1000 / 60); const differenceInMinutes = getInMinutes(timeDiffInMs); - core.info(issue) + core.info(JSON.stringify(issue)) core.info(currentTime) if (differenceInMinutes > 2) { From 2cd78b5ba5defd08ecadc571158948a2222bcdf6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 16:58:40 -0800 Subject: [PATCH 362/696] ci(action):wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 788f3a38478..520e948c73c 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -86,14 +86,14 @@ jobs: const { assignees } = JSON.parse(DATA); if (assignees) { - const issue = JSON.parse(ISSUE); + const { updated_at } = JSON.parse(ISSUE); const issueUpdateTime = new Date(issue.updated_at).getTime(); const currentTime = new Date().getTime(); const timeDiffInMs = currentTime - issueUpdateTime; const getInMinutes = (ms) => (ms / 1000 / 60); const differenceInMinutes = getInMinutes(timeDiffInMs); - core.info(JSON.stringify(issue)) + core.info(updated_at) core.info(currentTime) if (differenceInMinutes > 2) { From eb17fc341b6e4632fb643326c1fc774aa9dce98b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:02:24 -0800 Subject: [PATCH 363/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 520e948c73c..b1662ec3b36 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -86,18 +86,18 @@ jobs: const { assignees } = JSON.parse(DATA); if (assignees) { + const assignee = assignees[0]; const { updated_at } = JSON.parse(ISSUE); - const issueUpdateTime = new Date(issue.updated_at).getTime(); + const issueUpdateTime = new Date(updated_at).getTime(); const currentTime = new Date().getTime(); const timeDiffInMs = currentTime - issueUpdateTime; const getInMinutes = (ms) => (ms / 1000 / 60); const differenceInMinutes = getInMinutes(timeDiffInMs); core.info(updated_at) - core.info(currentTime) + core.info(assignee) if (differenceInMinutes > 2) { - // Continue updating issue const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; core.info(JSON.stringify(updateIssueData, null, 2)) } else { From 3f8ab8088f32fbec94dacd718e2764c3f77d5f2f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:07:40 -0800 Subject: [PATCH 364/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index b1662ec3b36..70a50ce6dc0 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -17,7 +17,7 @@ jobs: name: Find Existing Issue runs-on: ubuntu-latest outputs: - github_issue: ${{ steps.find-existing-issue.outputs.result }} + github_issue: ${{ toJSON(steps.find-existing-issue.outputs.result) }} steps: - uses: actions/github-script@v6 id: find-existing-issue @@ -34,7 +34,7 @@ jobs: owner: OWNER, repo: REPO, }); - return issue.status === 200 ? JSON.stringify(issue) : ''; + return issue.status === 200 ? issue : ''; debugger: name: Test for data @@ -78,7 +78,7 @@ jobs: OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + ISSUE: ${{ fromJSON(needs.existing_issue.outputs.github_issue) }} with: result-encoding: string script: | @@ -86,8 +86,7 @@ jobs: const { assignees } = JSON.parse(DATA); if (assignees) { - const assignee = assignees[0]; - const { updated_at } = JSON.parse(ISSUE); + const { updated_at } = ISSUE; const issueUpdateTime = new Date(updated_at).getTime(); const currentTime = new Date().getTime(); const timeDiffInMs = currentTime - issueUpdateTime; @@ -95,13 +94,12 @@ jobs: const differenceInMinutes = getInMinutes(timeDiffInMs); core.info(updated_at) - core.info(assignee) if (differenceInMinutes > 2) { - const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.info(JSON.stringify(updateIssueData, null, 2)) + const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; + core.info(JSON.stringify(updateIssueData, null, 2)) } else { - core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') + core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') } } # github.rest.issues.update(updateIssueData); From 3ac5482c24ed9fcae48d537dc86c46fc8bf70b47 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:13:09 -0800 Subject: [PATCH 365/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 70a50ce6dc0..ef0192bc08e 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -17,7 +17,7 @@ jobs: name: Find Existing Issue runs-on: ubuntu-latest outputs: - github_issue: ${{ toJSON(steps.find-existing-issue.outputs.result) }} + github_issue: ${{ steps.find-existing-issue.outputs.result }} steps: - uses: actions/github-script@v6 id: find-existing-issue @@ -34,7 +34,7 @@ jobs: owner: OWNER, repo: REPO, }); - return issue.status === 200 ? issue : ''; + return issue.status === 200 ? JSON.stringify(issue) : ''; debugger: name: Test for data @@ -86,7 +86,8 @@ jobs: const { assignees } = JSON.parse(DATA); if (assignees) { - const { updated_at } = ISSUE; + const assignee = assignees[0]; + const { updated_at } = JSON.parse(ISSUE); const issueUpdateTime = new Date(updated_at).getTime(); const currentTime = new Date().getTime(); const timeDiffInMs = currentTime - issueUpdateTime; @@ -94,6 +95,7 @@ jobs: const differenceInMinutes = getInMinutes(timeDiffInMs); core.info(updated_at) + core.info(assignee) if (differenceInMinutes > 2) { const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; From a7e8336f254210de84874868cd67b30c3210e7af Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:15:27 -0800 Subject: [PATCH 366/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index ef0192bc08e..b2e309e3ab0 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -17,7 +17,7 @@ jobs: name: Find Existing Issue runs-on: ubuntu-latest outputs: - github_issue: ${{ steps.find-existing-issue.outputs.result }} + github_issue: ${{ toJSON(steps.find-existing-issue.outputs.result) }} steps: - uses: actions/github-script@v6 id: find-existing-issue From 282ebc381ad4fcc619c3abc52895c6fbbfd7d6a3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:36:33 -0800 Subject: [PATCH 367/696] ci(cation):wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index b2e309e3ab0..17b6545d84f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -69,7 +69,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'assigned/unassigned') + if: (needs.existing_issue.outputs.github_issue.status == 200 ) && (github.event.client_payload.action == 'assigned/unassigned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 487d1645a6d1e0d9442b20b1e45ab52f5ed0c59d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:42:24 -0800 Subject: [PATCH 368/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 17b6545d84f..56f4f679c89 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -34,7 +34,7 @@ jobs: owner: OWNER, repo: REPO, }); - return issue.status === 200 ? JSON.stringify(issue) : ''; + return issue.status === 200 ? issue : null; debugger: name: Test for data @@ -69,7 +69,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: (needs.existing_issue.outputs.github_issue.status == 200 ) && (github.event.client_payload.action == 'assigned/unassigned') + if: (toJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'assigned/unassigned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 9431262a72a3d017e51a3ff18807c59b25de4348 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:49:32 -0800 Subject: [PATCH 369/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 56f4f679c89..53a5e97bb6f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -44,7 +44,7 @@ jobs: - id: set-status uses: actions/github-script@v6 env: - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + ISSUE: ${{ fromJSON(needs.existing_issue.outputs.github_issue) }} with: script: | const issue = JSON.parse(process.env.ISSUE); From 73aab486b7cec4532857e63486fca179a9f1a6d1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:51:18 -0800 Subject: [PATCH 370/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 53a5e97bb6f..b32865e255d 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -44,7 +44,7 @@ jobs: - id: set-status uses: actions/github-script@v6 env: - ISSUE: ${{ fromJSON(needs.existing_issue.outputs.github_issue) }} + ISSUE: ${{ toJSON(needs.existing_issue.outputs.github_issue) }} with: script: | const issue = JSON.parse(process.env.ISSUE); From a56923aa63e70625dccc3a8bb8e0438722798830 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:53:04 -0800 Subject: [PATCH 371/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index b32865e255d..28dce76a603 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -26,7 +26,6 @@ jobs: OWNER: '${{env.OWNER}}' REPO: '${{env.REPO}}' with: - result-encoding: string script: | const { NUMBER, OWNER, REPO } = process.env; const issue = await github.rest.issues.get({ From 470e98955abd247e5ae86b02aeb07684ffc084a3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:55:21 -0800 Subject: [PATCH 372/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 28dce76a603..a4ad646df1d 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -43,7 +43,7 @@ jobs: - id: set-status uses: actions/github-script@v6 env: - ISSUE: ${{ toJSON(needs.existing_issue.outputs.github_issue) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: script: | const issue = JSON.parse(process.env.ISSUE); From f48af3457bbf712126dfc8ec16d6312e76908e92 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 17:58:48 -0800 Subject: [PATCH 373/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 33 +++++++----------------- 1 file changed, 10 insertions(+), 23 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a4ad646df1d..64d58b68fc3 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -17,7 +17,7 @@ jobs: name: Find Existing Issue runs-on: ubuntu-latest outputs: - github_issue: ${{ toJSON(steps.find-existing-issue.outputs.result) }} + github_issue: ${{ steps.find-existing-issue.outputs.result }} steps: - uses: actions/github-script@v6 id: find-existing-issue @@ -26,6 +26,7 @@ jobs: OWNER: '${{env.OWNER}}' REPO: '${{env.REPO}}' with: + result-encoding: string script: | const { NUMBER, OWNER, REPO } = process.env; const issue = await github.rest.issues.get({ @@ -33,7 +34,7 @@ jobs: owner: OWNER, repo: REPO, }); - return issue.status === 200 ? issue : null; + return issue.status === 200 ? JSON.stringify(issue) : ''; debugger: name: Test for data @@ -68,7 +69,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: (toJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'assigned/unassigned') + if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'assigned/unassigned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -77,31 +78,17 @@ jobs: OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ fromJSON(needs.existing_issue.outputs.github_issue) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: result-encoding: string script: | - const { OWNER, REPO, NUMBER, DATA, ISSUE } = process.env; - const { assignees } = JSON.parse(DATA); + const { assignees } = JSON.parse(process.env.DATA); if (assignees) { - const assignee = assignees[0]; - const { updated_at } = JSON.parse(ISSUE); - const issueUpdateTime = new Date(updated_at).getTime(); - const currentTime = new Date().getTime(); - const timeDiffInMs = currentTime - issueUpdateTime; - const getInMinutes = (ms) => (ms / 1000 / 60); - const differenceInMinutes = getInMinutes(timeDiffInMs); - - core.info(updated_at) - core.info(assignee) - - if (differenceInMinutes > 2) { - const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.info(JSON.stringify(updateIssueData, null, 2)) - } else { - core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') - } + const issue = JSON.parse(process.env.ISSUE); + const keys = Object.keys(issue) + + core.info(keys) } # github.rest.issues.update(updateIssueData); # From 9dedc850fe2c9d34351355be2227b089f4ee344a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:01:49 -0800 Subject: [PATCH 374/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 64d58b68fc3..41e0e6c5a79 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -86,9 +86,21 @@ jobs: if (assignees) { const issue = JSON.parse(process.env.ISSUE); - const keys = Object.keys(issue) - - core.info(keys) + const issueUpdateTime = new Date(issue.data.updated_at).getTime(); + const currentTime = new Date().getTime(); + const timeDiffInMs = currentTime - issueUpdateTime; + const getInMinutes = (ms) =>(ms / 1000 / 60); + const differenceInMinutes = getInMinutes(); + + core.info(differenceInMinutes) + + if (differenceInMinutes > 2) { + // Continue updating issue + const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; + core.info(JSON.stringify(updateIssueData, null, 2)) + } else { + core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') + } } # github.rest.issues.update(updateIssueData); # From 42f51251665d827a2b478097c693498e46794fe1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:03:57 -0800 Subject: [PATCH 375/696] ci(action):wip --- .github/workflows/sync_from_airtable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 41e0e6c5a79..680ed67e815 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -85,6 +85,8 @@ jobs: const { assignees } = JSON.parse(process.env.DATA); if (assignees) { + core.info(issue.data.updated_at) + core.info(assignees) const issue = JSON.parse(process.env.ISSUE); const issueUpdateTime = new Date(issue.data.updated_at).getTime(); const currentTime = new Date().getTime(); From 29dfdeb51dc4aee7de493a75caeff4494de48e2a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:05:34 -0800 Subject: [PATCH 376/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 680ed67e815..d209473936f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -85,8 +85,6 @@ jobs: const { assignees } = JSON.parse(process.env.DATA); if (assignees) { - core.info(issue.data.updated_at) - core.info(assignees) const issue = JSON.parse(process.env.ISSUE); const issueUpdateTime = new Date(issue.data.updated_at).getTime(); const currentTime = new Date().getTime(); @@ -94,6 +92,9 @@ jobs: const getInMinutes = (ms) =>(ms / 1000 / 60); const differenceInMinutes = getInMinutes(); + core.info(issue.data.updated_at) + core.info(assignees) + core.info(differenceInMinutes) if (differenceInMinutes > 2) { From 460b1792e9db3f3ddc0a288867e588307c0b680e Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:09:42 -0800 Subject: [PATCH 377/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index d209473936f..3148d9986a3 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -82,20 +82,20 @@ jobs: with: result-encoding: string script: | - const { assignees } = JSON.parse(process.env.DATA); + const data = JSON.parse(process.env.DATA); - if (assignees) { + if (data.assignees) { const issue = JSON.parse(process.env.ISSUE); const issueUpdateTime = new Date(issue.data.updated_at).getTime(); const currentTime = new Date().getTime(); const timeDiffInMs = currentTime - issueUpdateTime; const getInMinutes = (ms) =>(ms / 1000 / 60); - const differenceInMinutes = getInMinutes(); + const differenceInMinutes = getInMinutes(timeDiffInMs); - core.info(issue.data.updated_at) - core.info(assignees) + core.info(timeDiffInMs) core.info(differenceInMinutes) + core.info(data, data.assignees) if (differenceInMinutes > 2) { // Continue updating issue From 63d8bf416b03a62a92f3c7a6a1244ef5bd928057 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:16:02 -0800 Subject: [PATCH 378/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3148d9986a3..ea82d779a32 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -90,22 +90,19 @@ jobs: const currentTime = new Date().getTime(); const timeDiffInMs = currentTime - issueUpdateTime; const getInMinutes = (ms) =>(ms / 1000 / 60); - const differenceInMinutes = getInMinutes(timeDiffInMs); + + core.info(JSON.stringify(data)) - core.info(timeDiffInMs) - - core.info(differenceInMinutes) - core.info(data, data.assignees) - - if (differenceInMinutes > 2) { + if (getInMinutes(timeDiffInMs) > 2) { // Continue updating issue const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.info(JSON.stringify(updateIssueData, null, 2)) + core.info(JSON.stringify(updateIssueData)) + // github.rest.issues.update(updateIssueData); } else { core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') } } -# github.rest.issues.update(updateIssueData); +# # # labeled_unlabeled: # name: Label or UnLabel From 34479566affcbe8689c02d071b8fe2904a2a0c6c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:20:23 -0800 Subject: [PATCH 379/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index ea82d779a32..36181c93b4a 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -82,16 +82,14 @@ jobs: with: result-encoding: string script: | - const data = JSON.parse(process.env.DATA); + const { assignees } = JSON.parse(process.env.DATA); - if (data.assignees) { + if (assignees) { const issue = JSON.parse(process.env.ISSUE); const issueUpdateTime = new Date(issue.data.updated_at).getTime(); const currentTime = new Date().getTime(); const timeDiffInMs = currentTime - issueUpdateTime; const getInMinutes = (ms) =>(ms / 1000 / 60); - - core.info(JSON.stringify(data)) if (getInMinutes(timeDiffInMs) > 2) { // Continue updating issue From 53607f02e7f795d049f475af8f5aafc18742015a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:21:10 -0800 Subject: [PATCH 380/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 36181c93b4a..3645cd494ea 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -91,7 +91,7 @@ jobs: const timeDiffInMs = currentTime - issueUpdateTime; const getInMinutes = (ms) =>(ms / 1000 / 60); - if (getInMinutes(timeDiffInMs) > 2) { + if (getInMinutes(timeDiffInMs) > 1) { // Continue updating issue const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; core.info(JSON.stringify(updateIssueData)) From 3c39f9298c1a96ec4d3f76c0043e715283c4d2d0 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:23:59 -0800 Subject: [PATCH 381/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3645cd494ea..2a0835de644 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -82,7 +82,8 @@ jobs: with: result-encoding: string script: | - const { assignees } = JSON.parse(process.env.DATA); + const { DATA, NUMBER, OWNER, REPO, } = process.env; + const { assignees } = JSON.parse(DATA); if (assignees) { const issue = JSON.parse(process.env.ISSUE); From bc722e20a0d85548e92f561349fdc75b1352bf75 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:31:31 -0800 Subject: [PATCH 382/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 2a0835de644..fafb61b9e0b 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -87,6 +87,7 @@ jobs: if (assignees) { const issue = JSON.parse(process.env.ISSUE); + const ghAssignees = issue.data.assignees; const issueUpdateTime = new Date(issue.data.updated_at).getTime(); const currentTime = new Date().getTime(); const timeDiffInMs = currentTime - issueUpdateTime; @@ -94,9 +95,11 @@ jobs: if (getInMinutes(timeDiffInMs) > 1) { // Continue updating issue - const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.info(JSON.stringify(updateIssueData)) - // github.rest.issues.update(updateIssueData); + if (ghAssignees.join(',') !== assignees.join(',')) { + const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; + core.info(JSON.stringify(updateIssueData)) + // github.rest.issues.update(updateIssueData); + } } else { core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') } From 8e22e467def382971ecf6357bd651b9e073faf1f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:45:33 -0800 Subject: [PATCH 383/696] ci(action): assigned_unassigned --- .github/workflows/sync_from_airtable.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index fafb61b9e0b..023ba0c1321 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -80,7 +80,6 @@ jobs: DATA: ${{ fromJSON(env.DATA) }} ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: - result-encoding: string script: | const { DATA, NUMBER, OWNER, REPO, } = process.env; const { assignees } = JSON.parse(DATA); @@ -97,15 +96,15 @@ jobs: // Continue updating issue if (ghAssignees.join(',') !== assignees.join(',')) { const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - core.info(JSON.stringify(updateIssueData)) - // github.rest.issues.update(updateIssueData); + return github.rest.issues.update(updateIssueData).then((response) => { + core.info(response) + }); } } else { core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') } } -# -# + # labeled_unlabeled: # name: Label or UnLabel # needs: existing_issue From a4a6c73896b40ab994830bab92cc80c76e8e67b5 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:56:10 -0800 Subject: [PATCH 384/696] ci(action): set response --- .github/workflows/sync_from_airtable.yml | 50 +++++++++++++++++------- 1 file changed, 35 insertions(+), 15 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 023ba0c1321..d62aa42d2ac 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -94,27 +94,47 @@ jobs: if (getInMinutes(timeDiffInMs) > 1) { // Continue updating issue - if (ghAssignees.join(',') !== assignees.join(',')) { - const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - return github.rest.issues.update(updateIssueData).then((response) => { - core.info(response) - }); + if (ghAssignees.length !== assignees.length) return false + + const ghFrequency = {} + const airtableFrequency = {} + + // Create ghFrequency + for (let assignee of ghAssignees) { + ghFrequency[assignee] = ghFrequency[assignee] + 1 || 1 + } + + // Create airtableFrequency + for (let assignee of assignees) { + airtableFrequency[assignee] = airtableFrequency[assignee] + 1 || 1 } + + // Compare frequency counters + for (let key in ghFrequency) { + if (!(key ** 2 in airtableFrequency)) return false + + if (ghFrequency[key] !== airtableFrequency[key ** 2]) return false + } + + const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; + return github.rest.issues.update(updateIssueData).then((response) => { + core.info(JSON.stringify(response)) + }); } else { core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') } } -# labeled_unlabeled: -# name: Label or UnLabel -# needs: existing_issue -# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# core.info(process.env.ACTION) +# labeled_unlabeled: +# name: Label or UnLabel +# needs: existing_issue +# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') +# runs-on: ubuntu-latest +# steps: +# - uses: actions/github-script@v6 +# with: +# script: | +# core.info(process.env.ACTION) # milestoned_demilestoned: # name: Milestone or DeMilestone # needs: existing_issue From d3d513d00daab33d0f03a6d93b66dc70d0473580 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 18:58:46 -0800 Subject: [PATCH 385/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 78 ++++++++++++------------ 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index d62aa42d2ac..838b1566031 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -36,35 +36,35 @@ jobs: }); return issue.status === 200 ? JSON.stringify(issue) : ''; - debugger: - name: Test for data - needs: existing_issue - runs-on: ubuntu-latest - steps: - - id: set-status - uses: actions/github-script@v6 - env: - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} - with: - script: | - const issue = JSON.parse(process.env.ISSUE); - const keys = Object.keys(issue) + # debugger: + # name: Test for data + # needs: existing_issue + # runs-on: ubuntu-latest + # steps: + # - id: set-status + # uses: actions/github-script@v6 + # env: + # ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + # with: + # script: | + # const issue = JSON.parse(process.env.ISSUE); + # const keys = Object.keys(issue) - core.info(keys) - core.info(issue) - return issue.status; - - uses: actions/github-script@v6 - env: - STATUS: ${{ fromJSON(needs.existing_issue.outputs.github_issue).status == 200 }} - DATA: ${{env.DATA}} - ACTION: ${{github.event.client_payload.action}} - ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} - with: - script: | - core.info(process.env.STATUS) - core.info(process.env.DATA) - core.info(process.env.ACTION ) - core.info(process.env.ISASSIGNED) + # core.info(keys) + # core.info(issue) + # return issue.status; + # - uses: actions/github-script@v6 + # env: + # STATUS: ${{ fromJSON(needs.existing_issue.outputs.github_issue).status == 200 }} + # DATA: ${{env.DATA}} + # ACTION: ${{github.event.client_payload.action}} + # ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} + # with: + # script: | + # core.info(process.env.STATUS) + # core.info(process.env.DATA) + # core.info(process.env.ACTION ) + # core.info(process.env.ISASSIGNED) assigned_unassigned: name: Assign or Unassign @@ -92,7 +92,7 @@ jobs: const timeDiffInMs = currentTime - issueUpdateTime; const getInMinutes = (ms) =>(ms / 1000 / 60); - if (getInMinutes(timeDiffInMs) > 1) { + if (getInMinutes(timeDiffInMs) > 1.2) { // Continue updating issue if (ghAssignees.length !== assignees.length) return false @@ -125,16 +125,16 @@ jobs: } } -# labeled_unlabeled: -# name: Label or UnLabel -# needs: existing_issue -# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# core.info(process.env.ACTION) + # labeled_unlabeled: + # name: Label or UnLabel + # needs: existing_issue + # if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') + # runs-on: ubuntu-latest + # steps: + # - uses: actions/github-script@v6 + # with: + # script: | + # core.info(process.env.ACTION) # milestoned_demilestoned: # name: Milestone or DeMilestone # needs: existing_issue From 81a2cdfe608dfce1cac130b91b2ac6d1f27250c3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:15:29 -0800 Subject: [PATCH 386/696] ci(actions): add - remove assignees --- .github/workflows/sync_from_airtable.yml | 79 ++++++++++-------------- 1 file changed, 31 insertions(+), 48 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 838b1566031..084fafd5a85 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -35,36 +35,6 @@ jobs: repo: REPO, }); return issue.status === 200 ? JSON.stringify(issue) : ''; - - # debugger: - # name: Test for data - # needs: existing_issue - # runs-on: ubuntu-latest - # steps: - # - id: set-status - # uses: actions/github-script@v6 - # env: - # ISSUE: ${{ needs.existing_issue.outputs.github_issue }} - # with: - # script: | - # const issue = JSON.parse(process.env.ISSUE); - # const keys = Object.keys(issue) - - # core.info(keys) - # core.info(issue) - # return issue.status; - # - uses: actions/github-script@v6 - # env: - # STATUS: ${{ fromJSON(needs.existing_issue.outputs.github_issue).status == 200 }} - # DATA: ${{env.DATA}} - # ACTION: ${{github.event.client_payload.action}} - # ISASSIGNED: ${{ github.event.client_payload.action == 'assigned/unassigned' }} - # with: - # script: | - # core.info(process.env.STATUS) - # core.info(process.env.DATA) - # core.info(process.env.ACTION ) - # core.info(process.env.ISASSIGNED) assigned_unassigned: name: Assign or Unassign @@ -94,32 +64,45 @@ jobs: if (getInMinutes(timeDiffInMs) > 1.2) { // Continue updating issue - if (ghAssignees.length !== assignees.length) return false + const keepAssignees = [] + const addAssignees = []; + const ghLookup = {}; - const ghFrequency = {} - const airtableFrequency = {} - - // Create ghFrequency - for (let assignee of ghAssignees) { - ghFrequency[assignee] = ghFrequency[assignee] + 1 || 1 + for (let j in ghAssignees) { + ghLookup[ghAssignees[j]] = ghAssignees[j]; } - // Create airtableFrequency - for (let assignee of assignees) { - airtableFrequency[assignee] = airtableFrequency[assignee] + 1 || 1 + for (let i in assignees) { + if (typeof ghLookup[assignees[i]] != 'undefined') { + keepAssignees.push(assignees[i]) + delete ghLookup[assignees[i]]; + } else { + addAssignees.push(assignees[i]); + } } - // Compare frequency counters - for (let key in ghFrequency) { - if (!(key ** 2 in airtableFrequency)) return false + const removeAssignees = Object.keys(ghLookup); + + core.info(removeAssignees); + core.info(addAssignees); - if (ghFrequency[key] !== airtableFrequency[key ** 2]) return false + if (addAssignees) { + # await github.rest.issues.addAssignees({ + # owner: OWNER, + # repo: REPO, + # issue_number: NUMBER, + # assignees: addAssignees + # }); } - const updateIssueData = { owner: OWNER, repo: REPO, issue_number: NUMBER, assignees }; - return github.rest.issues.update(updateIssueData).then((response) => { - core.info(JSON.stringify(response)) - }); + if (removeAssignees) { + # await github.rest.issues.removeAssignees({ + # owner: OWNER, + # repo: REPO, + # issue_number: NUMBER, + # assignees: removeAssignees + # }); + } } else { core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') } From 5ff0426cb308c2fccca63400282a69d64ffcbdcd Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:18:39 -0800 Subject: [PATCH 387/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 44 +++++++++--------------- 1 file changed, 17 insertions(+), 27 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 084fafd5a85..513ef816e23 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -55,15 +55,8 @@ jobs: const { assignees } = JSON.parse(DATA); if (assignees) { - const issue = JSON.parse(process.env.ISSUE); - const ghAssignees = issue.data.assignees; - const issueUpdateTime = new Date(issue.data.updated_at).getTime(); - const currentTime = new Date().getTime(); - const timeDiffInMs = currentTime - issueUpdateTime; - const getInMinutes = (ms) =>(ms / 1000 / 60); - - if (getInMinutes(timeDiffInMs) > 1.2) { - // Continue updating issue + const issue = JSON.parse(process.env.ISSUE); + const ghAssignees = issue.data.assignees; const keepAssignees = [] const addAssignees = []; const ghLookup = {}; @@ -74,10 +67,10 @@ jobs: for (let i in assignees) { if (typeof ghLookup[assignees[i]] != 'undefined') { - keepAssignees.push(assignees[i]) - delete ghLookup[assignees[i]]; + keepAssignees.push(assignees[i]) + delete ghLookup[assignees[i]]; } else { - addAssignees.push(assignees[i]); + addAssignees.push(assignees[i]); } } @@ -87,25 +80,22 @@ jobs: core.info(addAssignees); if (addAssignees) { - # await github.rest.issues.addAssignees({ - # owner: OWNER, - # repo: REPO, - # issue_number: NUMBER, - # assignees: addAssignees - # }); + // await github.rest.issues.addAssignees({ + // owner: OWNER, + // repo: REPO, + // issue_number: NUMBER, + // assignees: addAssignees + // }); } if (removeAssignees) { - # await github.rest.issues.removeAssignees({ - # owner: OWNER, - # repo: REPO, - # issue_number: NUMBER, - # assignees: removeAssignees - # }); + // await github.rest.issues.removeAssignees({ + // owner: OWNER, + // repo: REPO, + // issue_number: NUMBER, + // assignees: removeAssignees + // }); } - } else { - core.info('Stopping propagation, issue was recently updated and this is likely an update loop.') - } } # labeled_unlabeled: From 55edfe18906b5bba65ea8cb9e7f5971dc5fa4571 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:20:16 -0800 Subject: [PATCH 388/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 513ef816e23..cbe114d4b43 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -76,7 +76,7 @@ jobs: const removeAssignees = Object.keys(ghLookup); - core.info(removeAssignees); + core.info(JSON.stringify(removeAssignees)); core.info(addAssignees); if (addAssignees) { From 6b20e0c16bd26b01335cdb416a6652a46a54f1e6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:23:07 -0800 Subject: [PATCH 389/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index cbe114d4b43..63e828ff698 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -76,6 +76,8 @@ jobs: const removeAssignees = Object.keys(ghLookup); + core.info(JSON.stringify(ghLookup)) + core.info(JSON.stringify(assignees)) core.info(JSON.stringify(removeAssignees)); core.info(addAssignees); From 15420aa147024d0bb4a7a7a2c4453f9025b6d095 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:24:50 -0800 Subject: [PATCH 390/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 63e828ff698..18615c5e0b6 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -78,8 +78,7 @@ jobs: core.info(JSON.stringify(ghLookup)) core.info(JSON.stringify(assignees)) - core.info(JSON.stringify(removeAssignees)); - core.info(addAssignees); + core.info(JSON.stringify(ghAssignees)); if (addAssignees) { // await github.rest.issues.addAssignees({ From 9ce020a68625d86399a8bc6e9cc4e747fb9030b5 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:30:08 -0800 Subject: [PATCH 391/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 18615c5e0b6..7de938e8850 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -56,7 +56,7 @@ jobs: if (assignees) { const issue = JSON.parse(process.env.ISSUE); - const ghAssignees = issue.data.assignees; + const ghAssignees = issue.data.assignees.map((assignee) => assignee.login); const keepAssignees = [] const addAssignees = []; const ghLookup = {}; @@ -79,6 +79,9 @@ jobs: core.info(JSON.stringify(ghLookup)) core.info(JSON.stringify(assignees)) core.info(JSON.stringify(ghAssignees)); + core.info(JSON.stringify(removeAssignees)); + core.info(JSON.stringify(addAssignees)); + core.info(JSON.stringify(keepAssignees)); if (addAssignees) { // await github.rest.issues.addAssignees({ From 2c5b0481e8dbde6518f8a6b894b0c6418a71a017 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:34:18 -0800 Subject: [PATCH 392/696] ci(action): add remove assignees --- .github/workflows/sync_from_airtable.yml | 37 ++++++++++-------------- 1 file changed, 16 insertions(+), 21 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 7de938e8850..8702cbb7875 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -76,29 +76,24 @@ jobs: const removeAssignees = Object.keys(ghLookup); - core.info(JSON.stringify(ghLookup)) - core.info(JSON.stringify(assignees)) - core.info(JSON.stringify(ghAssignees)); - core.info(JSON.stringify(removeAssignees)); - core.info(JSON.stringify(addAssignees)); - core.info(JSON.stringify(keepAssignees)); - - if (addAssignees) { - // await github.rest.issues.addAssignees({ - // owner: OWNER, - // repo: REPO, - // issue_number: NUMBER, - // assignees: addAssignees - // }); + if (addAssignees && addAssignees.length > 0) { + await github.rest.issues.addAssignees({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + assignees: addAssignees + }); + core.info('Assignees Added: ', addAssignees.join(',')) } - if (removeAssignees) { - // await github.rest.issues.removeAssignees({ - // owner: OWNER, - // repo: REPO, - // issue_number: NUMBER, - // assignees: removeAssignees - // }); + if (removeAssignees && removeAssignees.length > 0) { + await github.rest.issues.removeAssignees({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + assignees: removeAssignees + }); + core.info('Assignees Removed: ', removeAssignees.join(',')) } } From 9d54781a978f8658ad3de0e0b19f4f240cb24737 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:46:14 -0800 Subject: [PATCH 393/696] ci(actions): add remove labels wip --- .github/workflows/sync_from_airtable.yml | 73 ++++++++++++++++++++---- 1 file changed, 62 insertions(+), 11 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 8702cbb7875..bf8858b2349 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -96,17 +96,68 @@ jobs: core.info('Assignees Removed: ', removeAssignees.join(',')) } } - - # labeled_unlabeled: - # name: Label or UnLabel - # needs: existing_issue - # if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') - # runs-on: ubuntu-latest - # steps: - # - uses: actions/github-script@v6 - # with: - # script: | - # core.info(process.env.ACTION) + + labeled_unlabeled: + name: Label or UnLabel + needs: existing_issue + if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + env: + NUMBER: ${{env.NUMBER}} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} + DATA: ${{ fromJSON(env.DATA) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + with: + script: | + const { DATA, NUMBER, OWNER, REPO, } = process.env; + const labels = JSON.parse(DATA); + + core.info(JSON.stringify(labels)) + if (labels) { + const issue = JSON.parse(process.env.ISSUE); + const ghLabels = issue.data.assignees.map((assignee) => assignee.login); + const keepLabels = [] + const addLabels = []; + const ghLookup = {}; + + for (let j in ghLabels) { + ghLookup[ghLabels[j]] = ghLabels[j]; + } + + for (let i in assignees) { + if (typeof ghLookup[assignees[i]] != 'undefined') { + keepLabels.push(assignees[i]) + delete ghLookup[assignees[i]]; + } else { + addLabels.push(assignees[i]); + } + } + + const removeAssignees = Object.keys(ghLookup); + + if (addLabels && addLabels.length > 0) { + // await github.rest.issues.addLabels({ + // owner: OWNER, + // repo: REPO, + // issue_number: NUMBER, + // assignees: addLabels + // }); + core.info('Assignees Added: ', addLabels.join(',')) + } + + if (removeLabels && removeLabels.length > 0) { + // await github.rest.issues.removeLabels({ + // owner: OWNER, + // repo: REPO, + // issue_number: NUMBER, + // assignees: removeLabels + // }); + core.info('Assignees Removed: ', removeLabels.join(',')) + } + } # milestoned_demilestoned: # name: Milestone or DeMilestone # needs: existing_issue From 4591e732cf3bd035ffd5e32bca24bb448da5c321 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:50:39 -0800 Subject: [PATCH 394/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 74 ++++++++++++------------ 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index bf8858b2349..389aeff40d1 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -116,48 +116,48 @@ jobs: const labels = JSON.parse(DATA); core.info(JSON.stringify(labels)) - if (labels) { - const issue = JSON.parse(process.env.ISSUE); - const ghLabels = issue.data.assignees.map((assignee) => assignee.login); - const keepLabels = [] - const addLabels = []; - const ghLookup = {}; +# if (labels) { +# const issue = JSON.parse(process.env.ISSUE); +# const ghLabels = issue.data.assignees.map((assignee) => assignee.login); +# const keepLabels = [] +# const addLabels = []; +# const ghLookup = {}; - for (let j in ghLabels) { - ghLookup[ghLabels[j]] = ghLabels[j]; - } +# for (let j in ghLabels) { +# ghLookup[ghLabels[j]] = ghLabels[j]; +# } - for (let i in assignees) { - if (typeof ghLookup[assignees[i]] != 'undefined') { - keepLabels.push(assignees[i]) - delete ghLookup[assignees[i]]; - } else { - addLabels.push(assignees[i]); - } - } +# for (let i in assignees) { +# if (typeof ghLookup[assignees[i]] != 'undefined') { +# keepLabels.push(assignees[i]) +# delete ghLookup[assignees[i]]; +# } else { +# addLabels.push(assignees[i]); +# } +# } - const removeAssignees = Object.keys(ghLookup); +# const removeAssignees = Object.keys(ghLookup); - if (addLabels && addLabels.length > 0) { - // await github.rest.issues.addLabels({ - // owner: OWNER, - // repo: REPO, - // issue_number: NUMBER, - // assignees: addLabels - // }); - core.info('Assignees Added: ', addLabels.join(',')) - } +# if (addLabels && addLabels.length > 0) { +# // await github.rest.issues.addLabels({ +# // owner: OWNER, +# // repo: REPO, +# // issue_number: NUMBER, +# // assignees: addLabels +# // }); +# core.info('Assignees Added: ', addLabels.join(',')) +# } - if (removeLabels && removeLabels.length > 0) { - // await github.rest.issues.removeLabels({ - // owner: OWNER, - // repo: REPO, - // issue_number: NUMBER, - // assignees: removeLabels - // }); - core.info('Assignees Removed: ', removeLabels.join(',')) - } - } +# if (removeLabels && removeLabels.length > 0) { +# // await github.rest.issues.removeLabels({ +# // owner: OWNER, +# // repo: REPO, +# // issue_number: NUMBER, +# // assignees: removeLabels +# // }); +# core.info('Assignees Removed: ', removeLabels.join(',')) +# } +# } # milestoned_demilestoned: # name: Milestone or DeMilestone # needs: existing_issue From 96146834907fae35db044aae293082855f25a485 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:53:14 -0800 Subject: [PATCH 395/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 69 +++++++++++++++++++----- 1 file changed, 55 insertions(+), 14 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 389aeff40d1..f91f978b74e 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -98,24 +98,65 @@ jobs: } labeled_unlabeled: - name: Label or UnLabel + name: Labeled or Unlabeled needs: existing_issue if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 - env: - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} - DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} - with: - script: | - const { DATA, NUMBER, OWNER, REPO, } = process.env; - const labels = JSON.parse(DATA); - - core.info(JSON.stringify(labels)) + - uses: actions/github-script@v6 + env: + NUMBER: ${{env.NUMBER}} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} + DATA: ${{ fromJSON(env.DATA) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + with: + script: | + const { DATA, NUMBER, OWNER, REPO, } = process.env; + const { assignees } = JSON.parse(DATA); + +# if (assignees) { +# const issue = JSON.parse(process.env.ISSUE); +# const ghAssignees = issue.data.assignees.map((assignee) => assignee.login); +# const keepAssignees = [] +# const addAssignees = []; +# const ghLookup = {}; + +# for (let j in ghAssignees) { +# ghLookup[ghAssignees[j]] = ghAssignees[j]; +# } + +# for (let i in assignees) { +# if (typeof ghLookup[assignees[i]] != 'undefined') { +# keepAssignees.push(assignees[i]) +# delete ghLookup[assignees[i]]; +# } else { +# addAssignees.push(assignees[i]); +# } +# } + +# const removeAssignees = Object.keys(ghLookup); + +# if (addAssignees && addAssignees.length > 0) { +# await github.rest.issues.addAssignees({ +# owner: OWNER, +# repo: REPO, +# issue_number: NUMBER, +# assignees: addAssignees +# }); +# core.info('Assignees Added: ', addAssignees.join(',')) +# } + +# if (removeAssignees && removeAssignees.length > 0) { +# await github.rest.issues.removeAssignees({ +# owner: OWNER, +# repo: REPO, +# issue_number: NUMBER, +# assignees: removeAssignees +# }); +# core.info('Assignees Removed: ', removeAssignees.join(',')) +# } +# } # if (labels) { # const issue = JSON.parse(process.env.ISSUE); # const ghLabels = issue.data.assignees.map((assignee) => assignee.login); From 7c9736f861b5ed5a16beb94fa43f741d94e9f89a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:55:54 -0800 Subject: [PATCH 396/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 40 +++++++++++++----------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f91f978b74e..8ca879d5f58 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -42,14 +42,14 @@ jobs: if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'assigned/unassigned') runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 - env: - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} - DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} - with: + - uses: actions/github-script@v6 + env: + NUMBER: ${{env.NUMBER}} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} + DATA: ${{ fromJSON(env.DATA) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + with: script: | const { DATA, NUMBER, OWNER, REPO, } = process.env; const { assignees } = JSON.parse(DATA); @@ -103,17 +103,19 @@ jobs: if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 - env: - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} - DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} - with: - script: | - const { DATA, NUMBER, OWNER, REPO, } = process.env; - const { assignees } = JSON.parse(DATA); + - uses: actions/github-script@v6 + env: + NUMBER: ${{env.NUMBER}} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} + DATA: ${{ fromJSON(env.DATA) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + with: + script: | + const { DATA, NUMBER, OWNER, REPO, } = process.env; + const labels = JSON.parse(DATA); + + core.info(JSON.stringify(labels)); # if (assignees) { # const issue = JSON.parse(process.env.ISSUE); From e747349ab7c1f6a21a9174b8ae0386a7ab40904b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 19:58:45 -0800 Subject: [PATCH 397/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 8ca879d5f58..d13e4060ac2 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -108,14 +108,14 @@ jobs: NUMBER: ${{env.NUMBER}} OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} - DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + # DATA: ${{ fromJSON(env.DATA) }} + # ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: script: | const { DATA, NUMBER, OWNER, REPO, } = process.env; - const labels = JSON.parse(DATA); + // const labels = JSON.parse(DATA); - core.info(JSON.stringify(labels)); + core.info(NUMBER); # if (assignees) { # const issue = JSON.parse(process.env.ISSUE); From 2e02b52be5d613c6f4df8558723ec1e1ac956d12 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 20:03:30 -0800 Subject: [PATCH 398/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index d13e4060ac2..d7503280d78 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -108,8 +108,8 @@ jobs: NUMBER: ${{env.NUMBER}} OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} - # DATA: ${{ fromJSON(env.DATA) }} - # ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + DATA: ${{ fromJSON(env.DATA) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: script: | const { DATA, NUMBER, OWNER, REPO, } = process.env; From e1d3bee5ac85822aba773e0c869b7fc2886164ab Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 20:19:04 -0800 Subject: [PATCH 399/696] ci(actions): label unlabeled --- .github/workflows/sync_from_airtable.yml | 139 ++++++++--------------- 1 file changed, 48 insertions(+), 91 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index d7503280d78..6fa038f422f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -105,102 +105,59 @@ jobs: steps: - uses: actions/github-script@v6 env: + DATA: ${{ fromJSON(env.DATA) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} NUMBER: ${{env.NUMBER}} OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} - DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} with: script: | - const { DATA, NUMBER, OWNER, REPO, } = process.env; - // const labels = JSON.parse(DATA); - - core.info(NUMBER); - -# if (assignees) { -# const issue = JSON.parse(process.env.ISSUE); -# const ghAssignees = issue.data.assignees.map((assignee) => assignee.login); -# const keepAssignees = [] -# const addAssignees = []; -# const ghLookup = {}; - -# for (let j in ghAssignees) { -# ghLookup[ghAssignees[j]] = ghAssignees[j]; -# } - -# for (let i in assignees) { -# if (typeof ghLookup[assignees[i]] != 'undefined') { -# keepAssignees.push(assignees[i]) -# delete ghLookup[assignees[i]]; -# } else { -# addAssignees.push(assignees[i]); -# } -# } - -# const removeAssignees = Object.keys(ghLookup); - -# if (addAssignees && addAssignees.length > 0) { -# await github.rest.issues.addAssignees({ -# owner: OWNER, -# repo: REPO, -# issue_number: NUMBER, -# assignees: addAssignees -# }); -# core.info('Assignees Added: ', addAssignees.join(',')) -# } - -# if (removeAssignees && removeAssignees.length > 0) { -# await github.rest.issues.removeAssignees({ -# owner: OWNER, -# repo: REPO, -# issue_number: NUMBER, -# assignees: removeAssignees -# }); -# core.info('Assignees Removed: ', removeAssignees.join(',')) -# } -# } -# if (labels) { -# const issue = JSON.parse(process.env.ISSUE); -# const ghLabels = issue.data.assignees.map((assignee) => assignee.login); -# const keepLabels = [] -# const addLabels = []; -# const ghLookup = {}; - -# for (let j in ghLabels) { -# ghLookup[ghLabels[j]] = ghLabels[j]; -# } - -# for (let i in assignees) { -# if (typeof ghLookup[assignees[i]] != 'undefined') { -# keepLabels.push(assignees[i]) -# delete ghLookup[assignees[i]]; -# } else { -# addLabels.push(assignees[i]); -# } -# } - -# const removeAssignees = Object.keys(ghLookup); - -# if (addLabels && addLabels.length > 0) { -# // await github.rest.issues.addLabels({ -# // owner: OWNER, -# // repo: REPO, -# // issue_number: NUMBER, -# // assignees: addLabels -# // }); -# core.info('Assignees Added: ', addLabels.join(',')) -# } - -# if (removeLabels && removeLabels.length > 0) { -# // await github.rest.issues.removeLabels({ -# // owner: OWNER, -# // repo: REPO, -# // issue_number: NUMBER, -# // assignees: removeLabels -# // }); -# core.info('Assignees Removed: ', removeLabels.join(',')) -# } -# } + const { DATA, NUMBER, ISSUE, OWNER, REPO } = process.env; + const { labels } = JSON.parse(DATA); + + if (labels) { + const issue = JSON.parse(process.env.ISSUE); + const ghLabels = issue.data.labels.map((label) => label.login); + const keepLabels = [] + const addLabels = []; + const ghLookup = {}; + + for (let j in ghLabels) { + ghLookup[ghLabels[j]] = ghLabels[j]; + } + + for (let i in labels) { + if (typeof ghLookup[labels[i]] != 'undefined') { + keepLabels.push(labels[i]) + delete ghLookup[labels[i]]; + } else { + addLabels.push(labels[i]); + } + } + + const removeLabels = Object.keys(ghLookup); + + if (addLabels && addLabels.length > 0) { + await github.rest.issues.addLabels({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + labels: addLabels + }); + core.info('labels Added: ', addLabels.join(',')) + } + + if (removeLabels && removeLabels.length > 0) { + await github.rest.issues.removeLabels({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + labels: removeLabels + }); + core.info('labels Removed: ', removeLabels.join(',')) + } + } + # milestoned_demilestoned: # name: Milestone or DeMilestone # needs: existing_issue From 33a4ed9cc40cc4ed4e3ad6c4fade7b645020bc24 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 20:21:52 -0800 Subject: [PATCH 400/696] ci(actions): add labels remove label --- .github/workflows/sync_from_airtable.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 6fa038f422f..0603b2fb8d0 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -128,10 +128,10 @@ jobs: for (let i in labels) { if (typeof ghLookup[labels[i]] != 'undefined') { - keepLabels.push(labels[i]) - delete ghLookup[labels[i]]; + keepLabels.push(labels[i]) + delete ghLookup[labels[i]]; } else { - addLabels.push(labels[i]); + addLabels.push(labels[i]); } } @@ -148,12 +148,15 @@ jobs: } if (removeLabels && removeLabels.length > 0) { - await github.rest.issues.removeLabels({ + removeLabels.forEach((name) => { + await github.rest.issues.removeLabels({ owner: OWNER, repo: REPO, issue_number: NUMBER, - labels: removeLabels + name + }); }); + core.info('labels Removed: ', removeLabels.join(',')) } } From b6cfb8244354609c44cd14a1fd4cb085a525b193 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 20:24:11 -0800 Subject: [PATCH 401/696] ci(action): fix async --- .github/workflows/sync_from_airtable.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 0603b2fb8d0..191cd0ecef4 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -148,14 +148,12 @@ jobs: } if (removeLabels && removeLabels.length > 0) { - removeLabels.forEach((name) => { - await github.rest.issues.removeLabels({ + await Promise.all(removeLabels.map(async (name) => github.rest.issues.removeLabels({ owner: OWNER, repo: REPO, issue_number: NUMBER, name - }); - }); + })); core.info('labels Removed: ', removeLabels.join(',')) } From 2566b045f9f79ae2397223f1d33c4133aca2c30c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 20:26:22 -0800 Subject: [PATCH 402/696] ci(actions): fix missing paren --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 191cd0ecef4..02d419a4029 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -153,7 +153,7 @@ jobs: repo: REPO, issue_number: NUMBER, name - })); + }))); core.info('labels Removed: ', removeLabels.join(',')) } From 161fe307c75383d2749349d517aadbb944a74304 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 20:27:53 -0800 Subject: [PATCH 403/696] ci(action): remove label --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 02d419a4029..39cddaa4d00 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -148,7 +148,7 @@ jobs: } if (removeLabels && removeLabels.length > 0) { - await Promise.all(removeLabels.map(async (name) => github.rest.issues.removeLabels({ + await Promise.all(removeLabels.map(async (name) => github.rest.issues.removeLabel({ owner: OWNER, repo: REPO, issue_number: NUMBER, From bed74f16244b4cf51f2fba37774171c1588167d6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 20:34:55 -0800 Subject: [PATCH 404/696] Update sync_from_airtable.yml --- .github/workflows/sync_from_airtable.yml | 86 +++++++++++++----------- 1 file changed, 45 insertions(+), 41 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 39cddaa4d00..34f67897ee5 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -116,47 +116,51 @@ jobs: const { labels } = JSON.parse(DATA); if (labels) { - const issue = JSON.parse(process.env.ISSUE); - const ghLabels = issue.data.labels.map((label) => label.login); - const keepLabels = [] - const addLabels = []; - const ghLookup = {}; - - for (let j in ghLabels) { - ghLookup[ghLabels[j]] = ghLabels[j]; - } - - for (let i in labels) { - if (typeof ghLookup[labels[i]] != 'undefined') { - keepLabels.push(labels[i]) - delete ghLookup[labels[i]]; - } else { - addLabels.push(labels[i]); - } - } - - const removeLabels = Object.keys(ghLookup); - - if (addLabels && addLabels.length > 0) { - await github.rest.issues.addLabels({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - labels: addLabels - }); - core.info('labels Added: ', addLabels.join(',')) - } - - if (removeLabels && removeLabels.length > 0) { - await Promise.all(removeLabels.map(async (name) => github.rest.issues.removeLabel({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - name - }))); - - core.info('labels Removed: ', removeLabels.join(',')) - } + const issue = JSON.parse(process.env.ISSUE); + const ghLabels = issue.data.labels.map((label) => label.login); + const keepLabels = [] + const addLabels = []; + const ghLookup = {}; + + for (let j in ghLabels) { + ghLookup[ghLabels[j]] = ghLabels[j]; + } + + for (let i in labels) { + if (typeof ghLookup[labels[i]] != 'undefined') { + keepLabels.push(labels[i]) + delete ghLookup[labels[i]]; + } else { + addLabels.push(labels[i]); + } + } + + const removeLabels = Object.keys(ghLookup); + + if (addLabels && addLabels.length > 0) { + await github.rest.issues.addLabels({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + labels: addLabels + }).catch((err) => { + if (err.includes('Label does not exist')) { core.error(err); } else { core.error(err)} + }); + core.info('labels Added: ', addLabels.join(',')) + } + + if (removeLabels && removeLabels.length > 0) { + await Promise.all(removeLabels.map(async (name) => github.rest.issues.removeLabel({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + name + }).catch((err) => { + if (err.includes('Label does not exist')) { core.error(err); } else { core.error(err)} + }))); + + core.info('labels Removed: ', removeLabels.join(',')) + } } # milestoned_demilestoned: From cb1b930afad0f063b085493d125b8b8e97989b81 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 20:37:14 -0800 Subject: [PATCH 405/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 34f67897ee5..f2ef152f3cf 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -144,6 +144,7 @@ jobs: issue_number: NUMBER, labels: addLabels }).catch((err) => { + core.error(err) if (err.includes('Label does not exist')) { core.error(err); } else { core.error(err)} }); core.info('labels Added: ', addLabels.join(',')) @@ -156,6 +157,7 @@ jobs: issue_number: NUMBER, name }).catch((err) => { + core.error(err) if (err.includes('Label does not exist')) { core.error(err); } else { core.error(err)} }))); From d56015532473e58529242f6cf5a1f5ff05b98e37 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 20:41:19 -0800 Subject: [PATCH 406/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f2ef152f3cf..b0f19f95de8 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -144,8 +144,8 @@ jobs: issue_number: NUMBER, labels: addLabels }).catch((err) => { - core.error(err) - if (err.includes('Label does not exist')) { core.error(err); } else { core.error(err)} + const error = err.toString(); + if (error.includes('Label does not exist')) { core.error('create label'); } else { core.error(err)} }); core.info('labels Added: ', addLabels.join(',')) } @@ -157,8 +157,8 @@ jobs: issue_number: NUMBER, name }).catch((err) => { - core.error(err) - if (err.includes('Label does not exist')) { core.error(err); } else { core.error(err)} + const error = err.toString(); + if (error.includes('Label does not exist')) { core.error('create label'); } else { core.error(err)} }))); core.info('labels Removed: ', removeLabels.join(',')) From cbd18487b4887f01a1be26e2029460510dd0922f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 21:13:17 -0800 Subject: [PATCH 407/696] ci(action): update labels --- .github/workflows/sync_from_airtable.yml | 73 ++++++++++++++++++------ 1 file changed, 55 insertions(+), 18 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index b0f19f95de8..ce49abf7ff7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -117,7 +117,7 @@ jobs: if (labels) { const issue = JSON.parse(process.env.ISSUE); - const ghLabels = issue.data.labels.map((label) => label.login); + const ghLabels = issue.data.labels.map((label) => label.name); const keepLabels = [] const addLabels = []; const ghLookup = {}; @@ -138,28 +138,65 @@ jobs: const removeLabels = Object.keys(ghLookup); if (addLabels && addLabels.length > 0) { - await github.rest.issues.addLabels({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - labels: addLabels - }).catch((err) => { - const error = err.toString(); - if (error.includes('Label does not exist')) { core.error('create label'); } else { core.error(err)} - }); + try { + await github.rest.issues.addLabels({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + labels: addLabels + }) + } catch (error) { + if (error.toString().includes('Label does not exist')) { + await Promise.all(addLabels.map(async (label) => { + try { + await github.rest.issues.getLabel({ + owner: OWNER, + repo: REPO, + name: label + }).then(() => core.info('Get Label')) + await github.rest.issues.addLabels({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + labels: label + }).then(() => core.info('Add Labels')) + } catch (error) { + try { + await github.rest.issues.createLabel({ + owner: OWNER, + repo: REPO, + name: label + }).then(() => core.info('Create Label', label)); + + await github.rest.issues.addLabels({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + labels: label + }).then(() => core.info('Add Label', label)) + } catch (error) { + console.error(error) + } + } + })) + } + } + core.info('labels Added: ', addLabels.join(',')) } if (removeLabels && removeLabels.length > 0) { - await Promise.all(removeLabels.map(async (name) => github.rest.issues.removeLabel({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - name - }).catch((err) => { + try { + await Promise.all(removeLabels.map(async (name) => github.rest.issues.removeLabel({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + name + }))).then(() => core.info('Remove Label ', name)) + } catch (err) { const error = err.toString(); - if (error.includes('Label does not exist')) { core.error('create label'); } else { core.error(err)} - }))); + if (!error.includes('Label does not exist')) { core.error(err)} + } core.info('labels Removed: ', removeLabels.join(',')) } From b28f0d7d5aa728e4e2cda2b75b6b1644078c7200 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 21:17:01 -0800 Subject: [PATCH 408/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index ce49abf7ff7..070d86052a7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -192,10 +192,10 @@ jobs: repo: REPO, issue_number: NUMBER, name - }))).then(() => core.info('Remove Label ', name)) + }).then(() => core.info('Remove Label ', name)))); } catch (err) { - const error = err.toString(); - if (!error.includes('Label does not exist')) { core.error(err)} + // const error = err.toString(); + // if (!error.includes('Label does not exist')) { core.error(err)} } core.info('labels Removed: ', removeLabels.join(',')) From dcd76733f70b95f93b9e6c9b456176dbf2c68e6e Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 21:26:32 -0800 Subject: [PATCH 409/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 070d86052a7..251256948f7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -145,6 +145,7 @@ jobs: issue_number: NUMBER, labels: addLabels }) + core.info('Labels added: ', addLabels) } catch (error) { if (error.toString().includes('Label does not exist')) { await Promise.all(addLabels.map(async (label) => { @@ -153,36 +154,37 @@ jobs: owner: OWNER, repo: REPO, name: label - }).then(() => core.info('Get Label')) + }); await github.rest.issues.addLabels({ owner: OWNER, repo: REPO, issue_number: NUMBER, labels: label - }).then(() => core.info('Add Labels')) + }); + + core.info('Label added: ', label) } catch (error) { try { await github.rest.issues.createLabel({ owner: OWNER, repo: REPO, name: label - }).then(() => core.info('Create Label', label)); - + }); + core.info('Label created: ', label) await github.rest.issues.addLabels({ owner: OWNER, repo: REPO, issue_number: NUMBER, labels: label - }).then(() => core.info('Add Label', label)) + }); + core.info('Label added: ', label) } catch (error) { - console.error(error) + console.error('Label not added: ', error) } } })) } } - - core.info('labels Added: ', addLabels.join(',')) } if (removeLabels && removeLabels.length > 0) { @@ -194,8 +196,7 @@ jobs: name }).then(() => core.info('Remove Label ', name)))); } catch (err) { - // const error = err.toString(); - // if (!error.includes('Label does not exist')) { core.error(err)} + if (!error.includes('Label does not exist')) { core.error('Label not removed: ', err) } } core.info('labels Removed: ', removeLabels.join(',')) From cacee1a73570ccfef4b53ca196984ba0efb2123f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 21:29:57 -0800 Subject: [PATCH 410/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 251256948f7..68d1cf42e4d 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -145,7 +145,7 @@ jobs: issue_number: NUMBER, labels: addLabels }) - core.info('Labels added: ', addLabels) + core.info(`Labels added: ${addLabels}`) } catch (error) { if (error.toString().includes('Label does not exist')) { await Promise.all(addLabels.map(async (label) => { @@ -162,7 +162,7 @@ jobs: labels: label }); - core.info('Label added: ', label) + core.info(`Label added: ${label})`) } catch (error) { try { await github.rest.issues.createLabel({ @@ -170,16 +170,16 @@ jobs: repo: REPO, name: label }); - core.info('Label created: ', label) + core.info(`Label created: ${label}`) await github.rest.issues.addLabels({ owner: OWNER, repo: REPO, issue_number: NUMBER, labels: label }); - core.info('Label added: ', label) + core.info(`Label added: ${label}`) } catch (error) { - console.error('Label not added: ', error) + console.error(`Label not added: ${error}`) } } })) From 1084bf887b3bc6515d0993d87a37610294181edb Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 28 Feb 2023 21:33:48 -0800 Subject: [PATCH 411/696] ci(action): labels logging --- .github/workflows/sync_from_airtable.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 68d1cf42e4d..52cbee3fd3f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -189,17 +189,18 @@ jobs: if (removeLabels && removeLabels.length > 0) { try { - await Promise.all(removeLabels.map(async (name) => github.rest.issues.removeLabel({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - name - }).then(() => core.info('Remove Label ', name)))); + await Promise.all(removeLabels.map(async (name) => { + await github.rest.issues.removeLabel({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + name + }); + core.info(`Remove Label: ${name}`) + })); } catch (err) { - if (!error.includes('Label does not exist')) { core.error('Label not removed: ', err) } + if (!error.includes('Label does not exist')) { core.error(`Label not removed: ${err}`) } } - - core.info('labels Removed: ', removeLabels.join(',')) } } From 47594d5565a96eb9dbd6149141f2d903467fd95b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 00:56:51 -0800 Subject: [PATCH 412/696] ci(action): milesteoned --- .github/workflows/sync_from_airtable.yml | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 52cbee3fd3f..3a1ba701955 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -203,7 +203,32 @@ jobs: } } } + milestoned_demilestoned: + name: Milestoned or Demilestoned + needs: existing_issue + if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'milestoned/demilestoned') + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + env: + DATA: ${{ fromJSON(env.DATA) }} + ISSUE: ${{ needs.existing_issue.outputs.github_issue }} + NUMBER: ${{env.NUMBER}} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} + with: + script: | + const { DATA, NUMBER, ISSUE, OWNER, REPO } = process.env; + const { milestone } = JSON.parse(DATA); + if (milestone) { + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + milestone, + }); + } # milestoned_demilestoned: # name: Milestone or DeMilestone # needs: existing_issue From a91ee7904c9c3f93575f9f659ce3d2dd253c4cc3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 00:59:41 -0800 Subject: [PATCH 413/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3a1ba701955..783f7657141 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -204,7 +204,7 @@ jobs: } } milestoned_demilestoned: - name: Milestoned or Demilestoned + name: Labeled or Unlabeled needs: existing_issue if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'milestoned/demilestoned') runs-on: ubuntu-latest @@ -220,8 +220,12 @@ jobs: script: | const { DATA, NUMBER, ISSUE, OWNER, REPO } = process.env; const { milestone } = JSON.parse(DATA); + const issue = JSON.parse(ISSUE) + + console.log(milestone) + console.log(JSON.stringify(issue.milestone)) - if (milestone) { + if (milestone && (issue.milestone.number !== milestone)) { await github.rest.issues.update({ owner: OWNER, repo: REPO, From b43d2db7f242294a98d6705aba3e21c568d607b0 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 01:01:00 -0800 Subject: [PATCH 414/696] ci(actions): wip --- .github/workflows/sync_from_airtable.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 783f7657141..ad7fc4c1799 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -233,16 +233,6 @@ jobs: milestone, }); } -# milestoned_demilestoned: -# name: Milestone or DeMilestone -# needs: existing_issue -# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'milestoned/demilestoned' -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# console.log(process.env.ACTION) # open_closed: # name: Opened, ReOpened, or Closed # needs: existing_issue From b8a5dbf9b7e828968deb8907ad455bb5bc26a9bb Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 01:02:08 -0800 Subject: [PATCH 415/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index ad7fc4c1799..0e209bd09e6 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -204,7 +204,7 @@ jobs: } } milestoned_demilestoned: - name: Labeled or Unlabeled + name: Milestoned or Demilestoned needs: existing_issue if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'milestoned/demilestoned') runs-on: ubuntu-latest From 0d1ed037943aab23ab15d678b640cbbfe02358fc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 01:09:19 -0800 Subject: [PATCH 416/696] ci(actions): milestone-demilestoned --- .github/workflows/sync_from_airtable.yml | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 0e209bd09e6..a67ca46b3da 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -212,27 +212,20 @@ jobs: - uses: actions/github-script@v6 env: DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} NUMBER: ${{env.NUMBER}} OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} with: script: | - const { DATA, NUMBER, ISSUE, OWNER, REPO } = process.env; + const { DATA, NUMBER, OWNER, REPO } = process.env; const { milestone } = JSON.parse(DATA); - const issue = JSON.parse(ISSUE) - - console.log(milestone) - console.log(JSON.stringify(issue.milestone)) - - if (milestone && (issue.milestone.number !== milestone)) { - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - milestone, - }); - } + + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + milestone, + }); # open_closed: # name: Opened, ReOpened, or Closed # needs: existing_issue From 334b7864cd4c31ea9715092de7980bb16e215c71 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 01:43:04 -0800 Subject: [PATCH 417/696] ci(actions): milestoned demilestoned --- .github/workflows/sync_from_airtable.yml | 40 +++++++++++++++++++----- 1 file changed, 33 insertions(+), 7 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a67ca46b3da..3e79a5044bd 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -219,13 +219,39 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const { milestone } = JSON.parse(DATA); - - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - milestone, - }); + const repoName = `${OWNER}/${REPO}`; + + try { + if (milestone && (repoName === milestone.repo)) { + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + milestone: milestone ? milestone.milestone_number : null, + }); + } else { + throw new Error(`This milestone exists in ${milestone.repo}. Creating new milestone in this repository.`) + } + } catch (error) { + const { title, description, due_on } = milestone; + try { + const newMilestone = await github.rest.issues.createMilestone({ + owner: OWNER, + repo: REPO, + title, + description, + due_on, + }); + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + milestone: newMilestone.number, + }); + } catch (error) { + core.error(error); + } + } # open_closed: # name: Opened, ReOpened, or Closed # needs: existing_issue From 9d0f9f85a18d8f0fad7e56c7626a1ffd1ec6b5f7 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 01:45:43 -0800 Subject: [PATCH 418/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 29 ++++++++++++------------ 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3e79a5044bd..db9f271bbb2 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -233,21 +233,22 @@ jobs: throw new Error(`This milestone exists in ${milestone.repo}. Creating new milestone in this repository.`) } } catch (error) { - const { title, description, due_on } = milestone; + core.info(error) + // const { title, description, due_on } = milestone; try { - const newMilestone = await github.rest.issues.createMilestone({ - owner: OWNER, - repo: REPO, - title, - description, - due_on, - }); - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - milestone: newMilestone.number, - }); + // const newMilestone = await github.rest.issues.createMilestone({ + // owner: OWNER, + // repo: REPO, + // title, + // description, + // due_on, + // }); + // await github.rest.issues.update({ + // owner: OWNER, + // repo: REPO, + // issue_number: NUMBER, + // milestone: newMilestone.number, + // }); } catch (error) { core.error(error); } From 34e5f4093a1a3be39c2136fafb561d8e22b31185 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 01:51:38 -0800 Subject: [PATCH 419/696] ci(action): WIP --- .github/workflows/sync_from_airtable.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index db9f271bbb2..6218b7dd1a4 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -222,13 +222,15 @@ jobs: const repoName = `${OWNER}/${REPO}`; try { - if (milestone && (repoName === milestone.repo)) { + core.info(milestone) + if (milestone && (repoName === milestone?.repo)) { await github.rest.issues.update({ owner: OWNER, repo: REPO, issue_number: NUMBER, milestone: milestone ? milestone.milestone_number : null, }); + core.info(`Issue ${NUMBER}'s Milestone updated to ${ milestone ? milestone.milestone_number : 'null'}`) } else { throw new Error(`This milestone exists in ${milestone.repo}. Creating new milestone in this repository.`) } @@ -243,12 +245,14 @@ jobs: // description, // due_on, // }); + // core.info(`New milestone ${JSON.stringify(newMilestone)} created.`) // await github.rest.issues.update({ // owner: OWNER, // repo: REPO, // issue_number: NUMBER, // milestone: newMilestone.number, // }); + // core.info(`Issue ${NUMBER}'s Milestone updated to ${ newMilestone ? newMilestone.number : 'null'}`) } catch (error) { core.error(error); } From ca8e50230251feaa92a70a5dd328541dafa53720 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 01:57:15 -0800 Subject: [PATCH 420/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 6218b7dd1a4..a0e794f4b9b 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -222,17 +222,26 @@ jobs: const repoName = `${OWNER}/${REPO}`; try { - core.info(milestone) - if (milestone && (repoName === milestone?.repo)) { + if (milestone) { + const { repo, milestone_number } = milestone; + if (repoName === repo) { + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + milestone: milestone_number || null, + }); + core.info(`Issue ${ NUMBER }'s Milestone updated to ${ milestone_number || 'null' }`) + } else { + throw new Error(`This milestone exists in ${milestone.repo}. Creating new milestone in this repository.`) + } + } else { await github.rest.issues.update({ owner: OWNER, repo: REPO, issue_number: NUMBER, - milestone: milestone ? milestone.milestone_number : null, + milestone: null, }); - core.info(`Issue ${NUMBER}'s Milestone updated to ${ milestone ? milestone.milestone_number : 'null'}`) - } else { - throw new Error(`This milestone exists in ${milestone.repo}. Creating new milestone in this repository.`) } } catch (error) { core.info(error) From 6f560a0b7cad4283af18f757eb0cbf8efb9f8565 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 02:07:07 -0800 Subject: [PATCH 421/696] ci(action): set state --- .github/workflows/sync_from_airtable.yml | 48 +++++++++++++----------- 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a0e794f4b9b..c0b2c889e9a 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -231,9 +231,9 @@ jobs: issue_number: NUMBER, milestone: milestone_number || null, }); - core.info(`Issue ${ NUMBER }'s Milestone updated to ${ milestone_number || 'null' }`) + core.info(`Issue ${ NUMBER }'s Milestone updated to ${ milestone_number }`) } else { - throw new Error(`This milestone exists in ${milestone.repo}. Creating new milestone in this repository.`) + throw new Error(`This milestone only exists in ${milestone.repo}.`) } } else { await github.rest.issues.update({ @@ -242,30 +242,34 @@ jobs: issue_number: NUMBER, milestone: null, }); + core.info(`Issue ${ NUMBER }'s Milestone updated to 'null'`) } } catch (error) { core.info(error) - // const { title, description, due_on } = milestone; - try { - // const newMilestone = await github.rest.issues.createMilestone({ - // owner: OWNER, - // repo: REPO, - // title, - // description, - // due_on, - // }); - // core.info(`New milestone ${JSON.stringify(newMilestone)} created.`) - // await github.rest.issues.update({ - // owner: OWNER, - // repo: REPO, - // issue_number: NUMBER, - // milestone: newMilestone.number, - // }); - // core.info(`Issue ${NUMBER}'s Milestone updated to ${ newMilestone ? newMilestone.number : 'null'}`) - } catch (error) { - core.error(error); - } } + open_closed: + name: Opened, ReOpened, or Closed + needs: existing_issue + if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'opened/closed') + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + env: + DATA: ${{ fromJSON(env.DATA) }} + NUMBER: ${{env.NUMBER}} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} + with: + script: | + const { DATA, NUMBER, OWNER, REPO } = process.env; + const { state } = JSON.parse(DATA); + + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + state, + }); # open_closed: # name: Opened, ReOpened, or Closed # needs: existing_issue From d217b0489ac6107b5c6634db52a5b02bfc67423b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 02:11:43 -0800 Subject: [PATCH 422/696] ci(action): edited --- .github/workflows/sync_from_airtable.yml | 63 +++++++++++++----------- 1 file changed, 33 insertions(+), 30 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index c0b2c889e9a..cdbc290a837 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -270,33 +270,36 @@ jobs: issue_number: NUMBER, state, }); -# open_closed: -# name: Opened, ReOpened, or Closed -# needs: existing_issue -# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'opened/closed' -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# core.info(process.env.ACTION) -# edited: -# name: Edited -# needs: existing_issue -# if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'edited' -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# core.info(process.env.ACTION) -# new_issue: -# name: Create New Issue -# needs: existing_issue -# if: (fromJSON(needs.existing_issue.outputs.github_issue).status != 200 }} -# runs-on: ubuntu-latest -# steps: -# - uses: actions/github-script@v6 -# with: -# script: | -# core.info('New Issue') + edited: + name: Edited + needs: existing_issue + if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'opened/closed') + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + env: + DATA: ${{ fromJSON(env.DATA) }} + NUMBER: ${{env.NUMBER}} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} + with: + script: | + const { DATA, NUMBER, OWNER, REPO } = process.env; + const data = JSON.parse(DATA); + + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + ...data, + }); + new_issue: + name: Create New Issue + needs: existing_issue + if: fromJSON(needs.existing_issue.outputs.github_issue).status != 200 + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + core.info('New Issue') From af6f8b892b490477e1c3ce221dbb115b192b2c63 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 02:15:29 -0800 Subject: [PATCH 423/696] ci(action): wip --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index cdbc290a837..b2d1cb6b57c 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -273,7 +273,7 @@ jobs: edited: name: Edited needs: existing_issue - if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'opened/closed') + if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'edited') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From d0d575578ad63d64f893a51b0960ba7c6cef1857 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 11:10:42 -0800 Subject: [PATCH 424/696] ci(action): create new issue --- .github/workflows/sync_from_airtable.yml | 39 +++++++++++++++++++----- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index b2d1cb6b57c..a923f0ed2b6 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -25,16 +25,24 @@ jobs: NUMBER: '${{env.NUMBER}}' OWNER: '${{env.OWNER}}' REPO: '${{env.REPO}}' + ACTION: '${{github.event.client_payload.action}}' with: result-encoding: string script: | - const { NUMBER, OWNER, REPO } = process.env; - const issue = await github.rest.issues.get({ - issue_number: NUMBER, - owner: OWNER, - repo: REPO, - }); - return issue.status === 200 ? JSON.stringify(issue) : ''; + const { NUMBER, OWNER, REPO, ACTION } = process.env; + if (ACTION !== 'new_issue') { + + const issue = await github.rest.issues.get({ + issue_number: NUMBER, + owner: OWNER, + repo: REPO, + }); + return issue.status === 200 ? JSON.stringify(issue) : JSON.stringify(null); + + } + + return JSON.stringify(null); + assigned_unassigned: name: Assign or Unassign @@ -296,10 +304,25 @@ jobs: new_issue: name: Create New Issue needs: existing_issue - if: fromJSON(needs.existing_issue.outputs.github_issue).status != 200 + if: fromJSON(needs.existing_issue.outputs.github_issue) == null runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 + env: + DATA: ${{ fromJSON(env.DATA) }} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} with: script: | core.info('New Issue') + const { DATA, NUMBER, OWNER, REPO } = process.env; + const { assignees, title, body, labels, milestone } = JSON.parse(DATA); + await github.rest.issues.create({ + owner: OWNER, + repo: REPO, + title, + body, + labels, + milestone, + assignees + }); From 7123de7e20d51f12ec75db739445b5f73d6478c6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 11:23:10 -0800 Subject: [PATCH 425/696] ci(action): catch get issue errors --- .github/workflows/sync_from_airtable.yml | 56 ++++++++++-------------- 1 file changed, 22 insertions(+), 34 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a923f0ed2b6..004f99711d9 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -19,30 +19,32 @@ jobs: outputs: github_issue: ${{ steps.find-existing-issue.outputs.result }} steps: - - uses: actions/github-script@v6 - id: find-existing-issue - env: + - uses: actions/github-script@v6 + id: find-existing-issue + env: NUMBER: '${{env.NUMBER}}' OWNER: '${{env.OWNER}}' REPO: '${{env.REPO}}' ACTION: '${{github.event.client_payload.action}}' - with: - result-encoding: string - script: | - const { NUMBER, OWNER, REPO, ACTION } = process.env; - if (ACTION !== 'new_issue') { - - const issue = await github.rest.issues.get({ - issue_number: NUMBER, - owner: OWNER, - repo: REPO, - }); - return issue.status === 200 ? JSON.stringify(issue) : JSON.stringify(null); - - } - - return JSON.stringify(null); - + with: + result-encoding: string + script: | + const { NUMBER, OWNER, REPO, ACTION } = process.env; + if (ACTION !== 'new_issue') { + try { + const issue = await github.rest.issues.get({ + issue_number: NUMBER, + owner: OWNER, + repo: REPO, + }); + + return issue.status === 200 ? JSON.stringify(issue) : JSON.stringify(null); + } catch (error) { + return JSON.stringify(null); + } + } + + return JSON.stringify(null); assigned_unassigned: name: Assign or Unassign @@ -61,18 +63,15 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO, } = process.env; const { assignees } = JSON.parse(DATA); - if (assignees) { const issue = JSON.parse(process.env.ISSUE); const ghAssignees = issue.data.assignees.map((assignee) => assignee.login); const keepAssignees = [] const addAssignees = []; const ghLookup = {}; - for (let j in ghAssignees) { ghLookup[ghAssignees[j]] = ghAssignees[j]; } - for (let i in assignees) { if (typeof ghLookup[assignees[i]] != 'undefined') { keepAssignees.push(assignees[i]) @@ -81,9 +80,7 @@ jobs: addAssignees.push(assignees[i]); } } - const removeAssignees = Object.keys(ghLookup); - if (addAssignees && addAssignees.length > 0) { await github.rest.issues.addAssignees({ owner: OWNER, @@ -93,7 +90,6 @@ jobs: }); core.info('Assignees Added: ', addAssignees.join(',')) } - if (removeAssignees && removeAssignees.length > 0) { await github.rest.issues.removeAssignees({ owner: OWNER, @@ -122,18 +118,15 @@ jobs: script: | const { DATA, NUMBER, ISSUE, OWNER, REPO } = process.env; const { labels } = JSON.parse(DATA); - if (labels) { const issue = JSON.parse(process.env.ISSUE); const ghLabels = issue.data.labels.map((label) => label.name); const keepLabels = [] const addLabels = []; const ghLookup = {}; - for (let j in ghLabels) { ghLookup[ghLabels[j]] = ghLabels[j]; } - for (let i in labels) { if (typeof ghLookup[labels[i]] != 'undefined') { keepLabels.push(labels[i]) @@ -142,9 +135,7 @@ jobs: addLabels.push(labels[i]); } } - const removeLabels = Object.keys(ghLookup); - if (addLabels && addLabels.length > 0) { try { await github.rest.issues.addLabels({ @@ -169,7 +160,6 @@ jobs: issue_number: NUMBER, labels: label }); - core.info(`Label added: ${label})`) } catch (error) { try { @@ -194,7 +184,6 @@ jobs: } } } - if (removeLabels && removeLabels.length > 0) { try { await Promise.all(removeLabels.map(async (name) => { @@ -228,7 +217,6 @@ jobs: const { DATA, NUMBER, OWNER, REPO } = process.env; const { milestone } = JSON.parse(DATA); const repoName = `${OWNER}/${REPO}`; - try { if (milestone) { const { repo, milestone_number } = milestone; From 474b47d9b32d680460d0695dde1c818e387099e4 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 11:28:21 -0800 Subject: [PATCH 426/696] ci(action): create new issue --- .github/workflows/sync_from_airtable.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 004f99711d9..67fc329a595 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -302,15 +302,16 @@ jobs: REPO: ${{env.REPO}} with: script: | - core.info('New Issue') const { DATA, NUMBER, OWNER, REPO } = process.env; const { assignees, title, body, labels, milestone } = JSON.parse(DATA); - await github.rest.issues.create({ - owner: OWNER, - repo: REPO, - title, - body, - labels, - milestone, - assignees + const newIssue = await github.rest.issues.create({ + owner: OWNER, + repo: REPO, + title, + body, + labels, + milestone: milestone[0].milestone_number, + assignees }); + + core.info(`New Issue ${JSON.stringify(newIssue)}`); From 8274e7cbb40b2a4f51a6f6f50545f071d2e85b16 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 11:31:10 -0800 Subject: [PATCH 427/696] ci(action): data --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 67fc329a595..8b68eef7db4 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -297,7 +297,7 @@ jobs: steps: - uses: actions/github-script@v6 env: - DATA: ${{ fromJSON(env.DATA) }} + DATA: ${{ env.DATA }} OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} with: From 31986cd28c9d90b9aeb633766a4d15c58b8e1a58 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 1 Mar 2023 11:47:48 -0800 Subject: [PATCH 428/696] ci(actions): find issues --- .github/workflows/sync_from_airtable.yml | 32 +++++++++++++++--------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 8b68eef7db4..35b33b176a6 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -25,23 +25,31 @@ jobs: NUMBER: '${{env.NUMBER}}' OWNER: '${{env.OWNER}}' REPO: '${{env.REPO}}' + TITLE: '${{env.TITLE}}' ACTION: '${{github.event.client_payload.action}}' with: result-encoding: string script: | - const { NUMBER, OWNER, REPO, ACTION } = process.env; - if (ACTION !== 'new_issue') { - try { - const issue = await github.rest.issues.get({ - issue_number: NUMBER, - owner: OWNER, - repo: REPO, - }); + const { NUMBER, OWNER, REPO, ACTION, TITLE } = process.env; + try { + const issue = await github.rest.issues.get({ + issue_number: NUMBER, + owner: OWNER, + repo: REPO, + }); - return issue.status === 200 ? JSON.stringify(issue) : JSON.stringify(null); - } catch (error) { - return JSON.stringify(null); - } + return issue.status === 200 ? JSON.stringify(issue) : JSON.stringify(null); + } catch (error) { + + const issue = await github.rest.search.issuesAndPullRequests({ + q: `"${TITLE}" in:title is:open is:issue`, + sort: 'created', + order: 'asc', + per_page: 1 + }).then((result) => result[0]); + core.info(issue); + + return issue ? JSON.stringify(issue) : JSON.stringify(null); } return JSON.stringify(null); From 805af0dbd410b9b93db2564c54dee7e1df00836f Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 2 Mar 2023 14:50:48 +0000 Subject: [PATCH 429/696] tabs token --- tokens/$metadata.json | 1 + tokens/calcite/dark.json | 12 +++ tokens/calcite/light.json | 12 +++ tokens/component/tabs.json | 157 +++++++++++++++++++++++++++++++++++++ 4 files changed, 182 insertions(+) create mode 100644 tokens/component/tabs.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index d6fd0d23f50..42e89b84e21 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -29,6 +29,7 @@ "component/radio", "component/rating", "component/tab-title", + "component/tabs", "component/tip", "component/tooltip", "component/switch", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 76e187ae720..ea29d2120c9 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1146,6 +1146,18 @@ "type": "color" } } + }, + "tabs": { + "bordered": { + "border": { + "value": "$tab-title.bordered.border.dark", + "type": "color" + }, + "background": { + "value": "$tab-title.bordered.background.default.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 6491050b1b3..480510df536 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1182,6 +1182,18 @@ "type": "color" } } + }, + "tabs": { + "bordered": { + "border": { + "value": "$tab-title.bordered.border.light", + "type": "color" + }, + "background": { + "value": "$tab-title.bordered.background.default.light", + "type": "color" + } + } } } } diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json new file mode 100644 index 00000000000..ebd7bb1869d --- /dev/null +++ b/tokens/component/tabs.json @@ -0,0 +1,157 @@ +{ + "tabs": { + "bordered": { + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.10", + "type": "spacing" + } + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "default": { + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.8", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.9", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From 901ab929735be11b32a84846667c581547a2b2a4 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 2 Mar 2023 07:44:04 -0800 Subject: [PATCH 430/696] Revert "Latest updates" This reverts commit d9d46a133134ecddc96721726908cc7fedb678b9. --- tokens/$metadata.json | 16 +- tokens/$themes.json | 48 +- tokens/calcite/dark.json | 256 -------- tokens/calcite/light.json | 216 ------- tokens/component/[template-comp-name].json | 2 +- tokens/component/accordion_backup_Copy.json | 238 -------- tokens/component/button.json | 578 ++++++++++++++++++ tokens/component/combobox.json | 152 +++++ tokens/component/dropdown.json | 177 ++++++ tokens/component/fab.json | 524 ++++++++++++++++ tokens/component/input-telephone.json | 269 -------- tokens/component/input-text.json | 269 -------- tokens/component/link.json | 44 ++ tokens/component/pagination.json | 177 ++++++ tokens/component/segmented-control.json | 154 +++++ .../{input-week.json => stepper-item.json} | 245 ++++---- tokens/component/stepper.json | 152 +++++ tokens/component/tab-title.json | 253 -------- tokens/component/tabs.json | 253 -------- tokens/component/textarea.json | 225 ------- tokens/semantic.json | 10 + 21 files changed, 2131 insertions(+), 2127 deletions(-) delete mode 100644 tokens/component/accordion_backup_Copy.json create mode 100644 tokens/component/button.json create mode 100644 tokens/component/combobox.json create mode 100644 tokens/component/dropdown.json create mode 100644 tokens/component/fab.json delete mode 100644 tokens/component/input-telephone.json delete mode 100644 tokens/component/input-text.json create mode 100644 tokens/component/link.json create mode 100644 tokens/component/pagination.json create mode 100644 tokens/component/segmented-control.json rename tokens/component/{input-week.json => stepper-item.json} (53%) create mode 100644 tokens/component/stepper.json delete mode 100644 tokens/component/tab-title.json delete mode 100644 tokens/component/tabs.json delete mode 100644 tokens/component/textarea.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 832eb0b8f9e..31d4fba02bc 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -6,8 +6,12 @@ "component/accordion", "component/alert", "component/avatar", + "component/button", + "component/fab", "component/checkbox", "component/chip", + "component/combobox", + "component/dropdown", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -17,25 +21,23 @@ "component/input-number", "component/input-password", "component/input-search", - "component/input-telephone", "component/input-message", "component/input-time", - "component/input-text", - "component/input-week", - "component/textarea", "component/date-picker", "component/label", + "component/link", "component/loader", "component/radio", - "component/tab-title", - "component/tabs", "component/rating", "component/tip", "component/tooltip", + "component/pagination", + "component/segmented-control", + "component/stepper", + "component/stepper-item", "component/switch", "component/[template-comp-name]", "component/accordion_backup", - "component/accordion_backup_Copy", "calcite/light", "calcite/dark", "brand/global", diff --git a/tokens/$themes.json b/tokens/$themes.json index 20f3ecc0c58..eef89d3617a 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -35,7 +35,19 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/combobox": "source", + "component/button": "source", + "component/dropdown": "source", + "component/color-picker": "source", + "component/input-datetime-local": "source", + "component/link": "source", + "component/fab": "source", + "component/stepper": "source", + "component/pagination": "source", + "component/segmented-control": "source", + "component/switch": "source", + "component/stepper-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +124,19 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/combobox": "source", + "component/button": "source", + "component/dropdown": "source", + "component/color-picker": "source", + "component/input-datetime-local": "source", + "component/link": "source", + "component/fab": "source", + "component/stepper": "source", + "component/pagination": "source", + "component/segmented-control": "source", + "component/switch": "source", + "component/stepper-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -203,18 +227,16 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", + "component/combobox": "enabled", + "component/button": "enabled", + "component/dropdown": "enabled", "component/input-datetime-local": "enabled", - "component/input-email": "enabled", - "component/input-file": "enabled", - "component/input-month": "enabled", - "component/input-number": "enabled", - "component/input-password": "enabled", - "component/input-search": "enabled", - "component/input-telephone": "enabled", - "component/input-text": "enabled", - "component/input-week": "enabled", - "component/textarea": "enabled", - "component/tab-title": "enabled" + "component/link": "enabled", + "component/fab": "enabled", + "component/stepper": "enabled", + "component/pagination": "enabled", + "component/segmented-control": "enabled", + "component/stepper-item": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 76e187ae720..faa5053560f 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -860,10 +860,6 @@ "label": { "value": "$input-password.font.label.dark", "type": "color" - }, - "prefix-suffix": { - "value": "$input-password.font.prefix-suffix.dark", - "type": "color" } }, "icon": { @@ -894,258 +890,6 @@ "type": "color" } } - }, - "input-search": { - "font": { - "placeholder-value": { - "value": "$input-search.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-search.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-search.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-search.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-search.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-search.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-search.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-search.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-search.border.invalid.dark", - "type": "color" - } - } - }, - "input-telephone": { - "font": { - "placeholder-value": { - "value": "$input-telephone.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-telephone.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-telephone.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-telephone.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-telephone.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-telephone.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-telephone.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-telephone.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-telephone.border.invalid.dark", - "type": "color" - } - } - }, - "input-text": { - "font": { - "placeholder-value": { - "value": "$input-text.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-text.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-text.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-text.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-text.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-text.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-text.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-text.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-text.border.invalid.dark", - "type": "color" - } - } - }, - "input-week": { - "font": { - "placeholder-value": { - "value": "$input-week.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-week.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-week.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-week.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-week.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-week.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-week.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-week.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-week.border.invalid.dark", - "type": "color" - } - } - }, - "textarea": { - "font": { - "placeholder-value": { - "value": "$textarea.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$textarea.font.label.dark", - "type": "color" - }, - "chat-limit": { - "value": "$textarea.font.chat-limit.dark", - "type": "color" - } - }, - "icon": { - "value": "$textarea.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$textarea.background.default.dark", - "type": "color" - }, - "read-only": { - "value": "$textarea.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$textarea.border.dark", - "type": "color" - } - } - }, - "tab-title": { - "font": { - "default": { - "value": "$tab-title.font.default.dark", - "type": "color" - }, - "active": { - "value": "$tab-title.font.active.dark", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$tab-title.icon.default.dark", - "type": "color" - }, - "active": { - "value": "$tab-title.icon.active.dark", - "type": "color" - } - }, - "bordered": { - "border": { - "value": "$tab-title.bordered.border.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$tab-title.bordered.background.default.dark", - "type": "color" - } - } - }, - "border": { - "active": { - "value": "$tab-title.border.active.dark", - "type": "color" - } - } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 6491050b1b3..f81edec99cf 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -896,10 +896,6 @@ "label": { "value": "$input-password.font.label.light", "type": "color" - }, - "prefix-suffix": { - "value": "$input-password.font.prefix-suffix.light", - "type": "color" } }, "icon": { @@ -940,10 +936,6 @@ "label": { "value": "$input-search.font.label.light", "type": "color" - }, - "prefix-suffix": { - "value": "$input-search.font.prefix-suffix.light", - "type": "color" } }, "icon": { @@ -974,214 +966,6 @@ "type": "color" } } - }, - "input-telephone": { - "font": { - "placeholder-value": { - "value": "$input-telephone.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-telephone.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-telephone.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-telephone.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-telephone.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-telephone.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-telephone.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-telephone.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-telephone.border.invalid.light", - "type": "color" - } - } - }, - "input-text": { - "font": { - "placeholder-value": { - "value": "$input-text.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-text.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-text.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-text.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-text.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-text.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-text.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-text.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-text.border.invalid.light", - "type": "color" - } - } - }, - "input-week": { - "font": { - "placeholder-value": { - "value": "$input-week.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-week.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-week.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-week.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-week.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-week.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-week.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-week.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-week.border.invalid.light", - "type": "color" - } - } - }, - "textarea": { - "font": { - "placeholder-value": { - "value": "$textarea.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$textarea.font.label.light", - "type": "color" - }, - "chat-limit": { - "value": "$textarea.font.chat-limit.light", - "type": "color" - } - }, - "icon": { - "value": "$textarea.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$textarea.background.default.light", - "type": "color" - }, - "read-only": { - "value": "$textarea.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "{textarea.border.light}", - "type": "color" - } - } - }, - "tab-title": { - "font": { - "default": { - "value": "$tab-title.font.default.light", - "type": "color" - }, - "active": { - "value": "$tab-title.font.active.light", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$tab-title.icon.default.light", - "type": "color" - }, - "active": { - "value": "$tab-title.icon.active.light", - "type": "color" - } - }, - "bordered": { - "border": { - "value": "$tab-title.bordered.border.light", - "type": "color" - }, - "background": { - "default": { - "value": "$tab-title.bordered.background.default.light", - "type": "color" - } - } - }, - "border": { - "active": { - "value": "$tab-title.border.active.light", - "type": "color" - } - } } } } diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index bf4896dbc5a..09df0d4a5e2 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -10,7 +10,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "md": { diff --git a/tokens/component/accordion_backup_Copy.json b/tokens/component/accordion_backup_Copy.json deleted file mode 100644 index 5a67f8416b4..00000000000 --- a/tokens/component/accordion_backup_Copy.json +++ /dev/null @@ -1,238 +0,0 @@ -{ - "accordion": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "expanded": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "default": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - } - } - }, - "minimal": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.none}", - "type": "spacing" - } - } - } - }, - "border-width": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/button.json b/tokens/component/button.json new file mode 100644 index 00000000000..5669c1ba910 --- /dev/null +++ b/tokens/component/button.json @@ -0,0 +1,578 @@ +{ + "button": { + "font": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "icon": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } + }, + "border": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "background": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json new file mode 100644 index 00000000000..8d724bffabd --- /dev/null +++ b/tokens/component/combobox.json @@ -0,0 +1,152 @@ +{ + "combobox": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json new file mode 100644 index 00000000000..b4e2f0a5bb1 --- /dev/null +++ b/tokens/component/dropdown.json @@ -0,0 +1,177 @@ +{ + "dropdown": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json new file mode 100644 index 00000000000..1c3606de43d --- /dev/null +++ b/tokens/component/fab.json @@ -0,0 +1,524 @@ +{ + "fab": { + "font": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "icon": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "border": { + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "danger": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "background": { + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "danger": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-telephone.json b/tokens/component/input-telephone.json deleted file mode 100644 index 3116ce7c069..00000000000 --- a/tokens/component/input-telephone.json +++ /dev/null @@ -1,269 +0,0 @@ -{ - "input-telephone": { - "font": { - "placeholder-value": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "label": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "prefix-suffix": { - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "read-only": { - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "invalid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "default": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "prefix-suffix": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - }, - "read-only": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, - "opacity": { - "placeholder": { - "light": { - "value": "{core.opacity.50}", - "type": "opacity" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/input-text.json b/tokens/component/input-text.json deleted file mode 100644 index 3116ce7c069..00000000000 --- a/tokens/component/input-text.json +++ /dev/null @@ -1,269 +0,0 @@ -{ - "input-telephone": { - "font": { - "placeholder-value": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "label": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "prefix-suffix": { - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "read-only": { - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "invalid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "default": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "prefix-suffix": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - }, - "read-only": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, - "opacity": { - "placeholder": { - "light": { - "value": "{core.opacity.50}", - "type": "opacity" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json new file mode 100644 index 00000000000..4bd7249b874 --- /dev/null +++ b/tokens/component/link.json @@ -0,0 +1,44 @@ +{ + "link": { + "font": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + }, + "regular": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "bottom": { + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json new file mode 100644 index 00000000000..8525fb9be8a --- /dev/null +++ b/tokens/component/pagination.json @@ -0,0 +1,177 @@ +{ + "pagination": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json new file mode 100644 index 00000000000..b661574f032 --- /dev/null +++ b/tokens/component/segmented-control.json @@ -0,0 +1,154 @@ +{ + "segmented-control": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "checked": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-week.json b/tokens/component/stepper-item.json similarity index 53% rename from tokens/component/input-week.json rename to tokens/component/stepper-item.json index 10e3d2af452..bb7e12a4929 100644 --- a/tokens/component/input-week.json +++ b/tokens/component/stepper-item.json @@ -1,37 +1,51 @@ { - "input-week": { + "stepper": { "font": { - "placeholder-value": { + "heading": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.text.2.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.2.dark", "type": "color" }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "$semantic.font.default.medium.-1h", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "$semantic.font.default.medium.0h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "$semantic.font.default.medium.1h", "type": "typography" } }, - "label": { + "description": { + "sm": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.1h", + "type": "typography" + }, "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.text.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.3.dark", "type": "color" - }, + } + }, + "content": { "sm": { "value": "$semantic.font.default.regular.-2h", "type": "typography" @@ -45,225 +59,202 @@ "type": "typography" } }, - "prefix-suffix": { + "number": { "sm": { - "value": "$semantic.font.default.medium.-2h", + "value": "$semantic.font.default.medium.-1h", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "$semantic.font.default.medium.0h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.0h", + "value": "$semantic.font.default.medium.1h", "type": "typography" }, - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "read-only": { - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" + "default": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" + "error": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "invalid": { + "active": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } }, - "default": { + "error": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } } }, - "background": { + "border": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.border.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.border.1.dark", "type": "color" } }, - "prefix-suffix": { + "active": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } }, - "read-only": { + "error": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } } }, "border-radius": { "sm": { - "value": "$core.border.border-radius.none", + "value": "$core.border.border-radius.4", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.none", + "value": "$core.border.border-radius.5", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.none", + "value": "$core.border.border-radius.6", "type": "borderRadius" } }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.1", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.1", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.1", "type": "borderWidth" } }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, "icon-size": { "sm": { "value": "$core.sizing.7", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "$core.sizing.9", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "$core.sizing.11", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "$core.spacing.9", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "$core.spacing.11", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "$core.spacing.14", "type": "spacing" } }, "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } + "sm": { + "value": "$core.spacing.7", + "type": "spacing" }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" } }, - "opacity": { - "placeholder": { - "light": { - "value": "{core.opacity.50}", - "type": "opacity" - } - } + "disabled": { + "value": "{core.opacity.50}", + "type": "opacity" } } } \ No newline at end of file diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json new file mode 100644 index 00000000000..76ca139ef90 --- /dev/null +++ b/tokens/component/stepper.json @@ -0,0 +1,152 @@ +{ + "stepper": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json deleted file mode 100644 index 6e0e9800f70..00000000000 --- a/tokens/component/tab-title.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "tab-title": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "bordered": { - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" - } - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "active": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - } - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" - } - }, - "default": { - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" - } - } - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, - "border": { - "active": { - "light": { - "value": "{semantic.ui.color.brand.default.light}", - "type": "color" - }, - "dark": { - "value": "{semantic.ui.color.brand.default.dark}", - "type": "color" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json deleted file mode 100644 index 78f91e3e9bc..00000000000 --- a/tokens/component/tabs.json +++ /dev/null @@ -1,253 +0,0 @@ -{ - "tabs": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "bordered": { - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" - } - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "active": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - } - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" - } - }, - "default": { - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" - } - } - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, - "border": { - "active": { - "light": { - "value": "{semantic.ui.color.brand.default.light}", - "type": "color" - }, - "dark": { - "value": "{semantic.ui.color.brand.default.dark}", - "type": "color" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json deleted file mode 100644 index ce0619db8fe..00000000000 --- a/tokens/component/textarea.json +++ /dev/null @@ -1,225 +0,0 @@ -{ - "textarea": { - "font": { - "placeholder-value": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "label": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "read-only": { - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - } - }, - "chat-limit": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "read-only": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 0c783c72a9a..6f678e878b4 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1424,6 +1424,16 @@ "type": "color" } }, + "3": { + "light": { + "value": "$core.color.neutral.blk-020", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + }, "current": { "light": { "value": "$core.color.palette.high-saturation.blue.h-bb-010", From 9cc9230612d59360e21bb2887f9ab55e2213a0b7 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 2 Mar 2023 07:58:00 -0800 Subject: [PATCH 431/696] fic(tokens): file overwrites reverted after merge conflicts --- tokens/$metadata.json | 9 +- tokens/$themes.json | 40 ++- tokens/calcite/dark.json | 256 +++++++++++++++++++ tokens/calcite/light.json | 216 ++++++++++++++++ tokens/component/[template-comp-name].json | 2 +- tokens/component/accordion_backup_Copy.json | 238 +++++++++++++++++ tokens/component/input-telephone.json | 269 ++++++++++++++++++++ tokens/component/input-text.json | 269 ++++++++++++++++++++ tokens/component/input-week.json | 269 ++++++++++++++++++++ tokens/component/tab-title.json | 253 ++++++++++++++++++ tokens/component/tabs.json | 253 ++++++++++++++++++ tokens/component/textarea.json | 225 ++++++++++++++++ tokens/semantic.json | 2 +- 13 files changed, 2284 insertions(+), 17 deletions(-) create mode 100644 tokens/component/accordion_backup_Copy.json create mode 100644 tokens/component/input-telephone.json create mode 100644 tokens/component/input-text.json create mode 100644 tokens/component/input-week.json create mode 100644 tokens/component/tab-title.json create mode 100644 tokens/component/tabs.json create mode 100644 tokens/component/textarea.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 31d4fba02bc..fbdc873af85 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -21,13 +21,19 @@ "component/input-number", "component/input-password", "component/input-search", + "component/input-telephone", "component/input-message", "component/input-time", + "component/input-text", + "component/input-week", + "component/textarea", "component/date-picker", "component/label", "component/link", "component/loader", "component/radio", + "component/tab-title", + "component/tabs", "component/rating", "component/tip", "component/tooltip", @@ -38,10 +44,11 @@ "component/switch", "component/[template-comp-name]", "component/accordion_backup", + "component/accordion_backup_Copy", "calcite/light", "calcite/dark", "brand/global", "brand/light", "brand/dark" ] -} \ No newline at end of file +} diff --git a/tokens/$themes.json b/tokens/$themes.json index eef89d3617a..bfc13b78717 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -25,29 +25,29 @@ "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", "name": "Calcite - Dark", "selectedTokenSets": { - "core": "source", - "semantic": "source", "calcite/dark": "enabled", - "component/label": "source", "component/avatar": "source", + "component/button": "source", "component/checkbox": "source", "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", + "component/color-picker": "source", "component/combobox": "source", - "component/button": "source", "component/dropdown": "source", - "component/color-picker": "source", + "component/fab": "source", "component/input-datetime-local": "source", + "component/label": "source", "component/link": "source", - "component/fab": "source", - "component/stepper": "source", + "component/loader": "source", "component/pagination": "source", + "component/radio": "source", + "component/rating": "source", "component/segmented-control": "source", + "component/stepper-item": "source", + "component/stepper": "source", "component/switch": "source", - "component/stepper-item": "source" + "component/tooltip": "source", + "core": "source", + "semantic": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -137,6 +137,7 @@ "component/segmented-control": "source", "component/switch": "source", "component/stepper-item": "source" + }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -236,7 +237,18 @@ "component/stepper": "enabled", "component/pagination": "enabled", "component/segmented-control": "enabled", - "component/stepper-item": "enabled" + "component/stepper-item": "enabled", + "component/input-email": "enabled", + "component/input-file": "enabled", + "component/input-month": "enabled", + "component/input-number": "enabled", + "component/input-password": "enabled", + "component/input-search": "enabled", + "component/input-telephone": "enabled", + "component/input-text": "enabled", + "component/input-week": "enabled", + "component/textarea": "enabled", + "component/tab-title": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -762,4 +774,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] \ No newline at end of file +] diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index faa5053560f..76e187ae720 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -860,6 +860,10 @@ "label": { "value": "$input-password.font.label.dark", "type": "color" + }, + "prefix-suffix": { + "value": "$input-password.font.prefix-suffix.dark", + "type": "color" } }, "icon": { @@ -890,6 +894,258 @@ "type": "color" } } + }, + "input-search": { + "font": { + "placeholder-value": { + "value": "$input-search.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-search.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-search.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-search.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-search.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-search.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-search.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-search.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-search.border.invalid.dark", + "type": "color" + } + } + }, + "input-telephone": { + "font": { + "placeholder-value": { + "value": "$input-telephone.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-telephone.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-telephone.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-telephone.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-telephone.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-telephone.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-telephone.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-telephone.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-telephone.border.invalid.dark", + "type": "color" + } + } + }, + "input-text": { + "font": { + "placeholder-value": { + "value": "$input-text.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-text.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-text.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-text.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-text.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-text.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-text.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-text.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-text.border.invalid.dark", + "type": "color" + } + } + }, + "input-week": { + "font": { + "placeholder-value": { + "value": "$input-week.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-week.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-week.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-week.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-week.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-week.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-week.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-week.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-week.border.invalid.dark", + "type": "color" + } + } + }, + "textarea": { + "font": { + "placeholder-value": { + "value": "$textarea.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$textarea.font.label.dark", + "type": "color" + }, + "chat-limit": { + "value": "$textarea.font.chat-limit.dark", + "type": "color" + } + }, + "icon": { + "value": "$textarea.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$textarea.background.default.dark", + "type": "color" + }, + "read-only": { + "value": "$textarea.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$textarea.border.dark", + "type": "color" + } + } + }, + "tab-title": { + "font": { + "default": { + "value": "$tab-title.font.default.dark", + "type": "color" + }, + "active": { + "value": "$tab-title.font.active.dark", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$tab-title.icon.default.dark", + "type": "color" + }, + "active": { + "value": "$tab-title.icon.active.dark", + "type": "color" + } + }, + "bordered": { + "border": { + "value": "$tab-title.bordered.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$tab-title.bordered.background.default.dark", + "type": "color" + } + } + }, + "border": { + "active": { + "value": "$tab-title.border.active.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index f81edec99cf..6491050b1b3 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -896,6 +896,10 @@ "label": { "value": "$input-password.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-password.font.prefix-suffix.light", + "type": "color" } }, "icon": { @@ -936,6 +940,10 @@ "label": { "value": "$input-search.font.label.light", "type": "color" + }, + "prefix-suffix": { + "value": "$input-search.font.prefix-suffix.light", + "type": "color" } }, "icon": { @@ -966,6 +974,214 @@ "type": "color" } } + }, + "input-telephone": { + "font": { + "placeholder-value": { + "value": "$input-telephone.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-telephone.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-telephone.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-telephone.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-telephone.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-telephone.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-telephone.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-telephone.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-telephone.border.invalid.light", + "type": "color" + } + } + }, + "input-text": { + "font": { + "placeholder-value": { + "value": "$input-text.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-text.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-text.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-text.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-text.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-text.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-text.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-text.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-text.border.invalid.light", + "type": "color" + } + } + }, + "input-week": { + "font": { + "placeholder-value": { + "value": "$input-week.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-week.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-week.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-week.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-week.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-week.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-week.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-week.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-week.border.invalid.light", + "type": "color" + } + } + }, + "textarea": { + "font": { + "placeholder-value": { + "value": "$textarea.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$textarea.font.label.light", + "type": "color" + }, + "chat-limit": { + "value": "$textarea.font.chat-limit.light", + "type": "color" + } + }, + "icon": { + "value": "$textarea.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$textarea.background.default.light", + "type": "color" + }, + "read-only": { + "value": "$textarea.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "{textarea.border.light}", + "type": "color" + } + } + }, + "tab-title": { + "font": { + "default": { + "value": "$tab-title.font.default.light", + "type": "color" + }, + "active": { + "value": "$tab-title.font.active.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$tab-title.icon.default.light", + "type": "color" + }, + "active": { + "value": "$tab-title.icon.active.light", + "type": "color" + } + }, + "bordered": { + "border": { + "value": "$tab-title.bordered.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$tab-title.bordered.background.default.light", + "type": "color" + } + } + }, + "border": { + "active": { + "value": "$tab-title.border.active.light", + "type": "color" + } + } } } } diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 09df0d4a5e2..28be1f3d8f3 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -174,4 +174,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/accordion_backup_Copy.json b/tokens/component/accordion_backup_Copy.json new file mode 100644 index 00000000000..5a67f8416b4 --- /dev/null +++ b/tokens/component/accordion_backup_Copy.json @@ -0,0 +1,238 @@ +{ + "accordion": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-telephone.json b/tokens/component/input-telephone.json new file mode 100644 index 00000000000..3116ce7c069 --- /dev/null +++ b/tokens/component/input-telephone.json @@ -0,0 +1,269 @@ +{ + "input-telephone": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-text.json b/tokens/component/input-text.json new file mode 100644 index 00000000000..3116ce7c069 --- /dev/null +++ b/tokens/component/input-text.json @@ -0,0 +1,269 @@ +{ + "input-telephone": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/input-week.json b/tokens/component/input-week.json new file mode 100644 index 00000000000..10e3d2af452 --- /dev/null +++ b/tokens/component/input-week.json @@ -0,0 +1,269 @@ +{ + "input-week": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "prefix-suffix": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "prefix-suffix": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "opacity": { + "placeholder": { + "light": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json new file mode 100644 index 00000000000..6e0e9800f70 --- /dev/null +++ b/tokens/component/tab-title.json @@ -0,0 +1,253 @@ +{ + "tab-title": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "bordered": { + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "active": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "default": { + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "border": { + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json new file mode 100644 index 00000000000..78f91e3e9bc --- /dev/null +++ b/tokens/component/tabs.json @@ -0,0 +1,253 @@ +{ + "tabs": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "bordered": { + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "active": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "default": { + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "border": { + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json new file mode 100644 index 00000000000..ce0619db8fe --- /dev/null +++ b/tokens/component/textarea.json @@ -0,0 +1,225 @@ +{ + "textarea": { + "font": { + "placeholder-value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "read-only": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "chat-limit": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "read-only": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 6f678e878b4..3ac92afce5a 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1680,4 +1680,4 @@ } } } -} \ No newline at end of file +} From 77215ee83b787dd64b69d171c61a32f1dc46b995 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 2 Mar 2023 17:04:36 +0100 Subject: [PATCH 432/696] Latest changes From 91861207344af1d3bd047d14ff1dc753cfb22ccf Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 2 Mar 2023 17:07:35 +0100 Subject: [PATCH 433/696] Added test component --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++-- tokens/component/test.json | 177 +++++++++++++++++++++++++++++++++++++ 3 files changed, 188 insertions(+), 5 deletions(-) create mode 100644 tokens/component/test.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 832eb0b8f9e..090b15d4a8a 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -34,6 +34,7 @@ "component/tooltip", "component/switch", "component/[template-comp-name]", + "component/test", "component/accordion_backup", "component/accordion_backup_Copy", "calcite/light", diff --git a/tokens/$themes.json b/tokens/$themes.json index 20f3ecc0c58..b1d758dda30 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/test": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/test": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/test": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/test": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -214,7 +218,8 @@ "component/input-text": "enabled", "component/input-week": "enabled", "component/textarea": "enabled", - "component/tab-title": "enabled" + "component/tab-title": "enabled", + "component/test": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/test.json b/tokens/component/test.json new file mode 100644 index 00000000000..89d109073f8 --- /dev/null +++ b/tokens/component/test.json @@ -0,0 +1,177 @@ +{ + "test": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From a39d7c6a24d114867b5167dfdb5bd8cd19d34232 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 2 Mar 2023 17:15:31 +0100 Subject: [PATCH 434/696] Deleted test file --- tokens/$metadata.json | 1 - tokens/$themes.json | 15 ++-- tokens/component/test.json | 177 ------------------------------------- 3 files changed, 5 insertions(+), 188 deletions(-) delete mode 100644 tokens/component/test.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 090b15d4a8a..832eb0b8f9e 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -34,7 +34,6 @@ "component/tooltip", "component/switch", "component/[template-comp-name]", - "component/test", "component/accordion_backup", "component/accordion_backup_Copy", "calcite/light", diff --git a/tokens/$themes.json b/tokens/$themes.json index b1d758dda30..20f3ecc0c58 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/test": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/test": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/test": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/test": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -218,8 +214,7 @@ "component/input-text": "enabled", "component/input-week": "enabled", "component/textarea": "enabled", - "component/tab-title": "enabled", - "component/test": "disabled" + "component/tab-title": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/test.json b/tokens/component/test.json deleted file mode 100644 index 89d109073f8..00000000000 --- a/tokens/component/test.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "test": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file From 6cbdf6016d6d5ed07de2733d13cbe76b1992d0ee Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 2 Mar 2023 17:28:53 +0000 Subject: [PATCH 435/696] card tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 16 ++-- tokens/component/card.json | 177 +++++++++++++++++++++++++++++++++++++ 3 files changed, 189 insertions(+), 5 deletions(-) create mode 100644 tokens/component/card.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 42e89b84e21..d81f79f7afb 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -34,6 +34,7 @@ "component/tooltip", "component/switch", "component/[template-comp-name]", + "component/card", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/$themes.json b/tokens/$themes.json index 20f3ecc0c58..c027ed5646a 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/card": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/card": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/card": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/card": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -214,7 +218,9 @@ "component/input-text": "enabled", "component/input-week": "enabled", "component/textarea": "enabled", - "component/tab-title": "enabled" + "component/tab-title": "enabled", + "component/card": "enabled", + "component/tabs": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/card.json b/tokens/component/card.json new file mode 100644 index 00000000000..1cff6db5526 --- /dev/null +++ b/tokens/component/card.json @@ -0,0 +1,177 @@ +{ + "card": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From 165f38d12140e57b6f3bc5e9d5d0b99aab9b5ff6 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 2 Mar 2023 19:50:13 +0000 Subject: [PATCH 436/696] cards tokens --- tokens/$themes.json | 12 +-- tokens/calcite/dark.json | 16 +++ tokens/calcite/light.json | 16 +++ tokens/component/card.json | 200 ++++++++++++++----------------------- 4 files changed, 112 insertions(+), 132 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index c027ed5646a..712b667d2b7 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/card": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/card": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/card": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/card": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index ea29d2120c9..b979a095470 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1158,6 +1158,22 @@ "type": "color" } } + }, + "card": { + "font": { + "title": { + "value": "$card.font.title.dark", + "type": "color" + }, + "subtitle": { + "value": "$card.font.subtitle.dark", + "type": "color" + }, + "description": { + "value": "$card.font.description.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 480510df536..eb075a1d7a4 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1194,6 +1194,22 @@ "type": "color" } } + }, + "card": { + "font": { + "title": { + "value": "$card.font.title.light", + "type": "color" + }, + "subtitle": { + "value": "$card.font.subtitle.light", + "type": "color" + }, + "description": { + "value": "$card.font.description.light", + "type": "color" + } + } } } } diff --git a/tokens/component/card.json b/tokens/component/card.json index 1cff6db5526..8077fd097bf 100644 --- a/tokens/component/card.json +++ b/tokens/component/card.json @@ -1,153 +1,73 @@ { "card": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" + "title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" + "subtile": { + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + } }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "description": { + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "subtitle": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } } }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "$semantic.ui.color.border.2.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "$semantic.ui.color.border.2.dark", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } } }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, "[specific-element]": { "font": { "sm": { @@ -172,6 +92,38 @@ "type": "composition" } } + }, + "space-around": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-between": { + "card": { + "md": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "title": { + "md": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } } } } \ No newline at end of file From 704be1433ece799df7908323769e9965e59cbaaa Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 5 Mar 2023 21:15:46 +0000 Subject: [PATCH 437/696] card tokens --- tokens/$metadata.json | 3 +- tokens/$themes.json | 15 +++-- tokens/component/action.json | 125 +++++++++++++++++++++++++++++++++++ tokens/semantic.json | 10 +++ 4 files changed, 147 insertions(+), 6 deletions(-) create mode 100644 tokens/component/action.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index d81f79f7afb..1587c53e194 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -6,6 +6,7 @@ "component/accordion", "component/alert", "component/avatar", + "component/card", "component/checkbox", "component/chip", "component/color-picker", @@ -34,7 +35,7 @@ "component/tooltip", "component/switch", "component/[template-comp-name]", - "component/card", + "component/action", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/$themes.json b/tokens/$themes.json index 712b667d2b7..5704b7f634f 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/action": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/action": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/action": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/action": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -216,7 +220,8 @@ "component/textarea": "enabled", "component/tab-title": "enabled", "component/card": "enabled", - "component/tabs": "enabled" + "component/tabs": "enabled", + "component/action": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/action.json b/tokens/component/action.json new file mode 100644 index 00000000000..f1895d8666a --- /dev/null +++ b/tokens/component/action.json @@ -0,0 +1,125 @@ +{ + "action": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.8", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 0c783c72a9a..6f678e878b4 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1424,6 +1424,16 @@ "type": "color" } }, + "3": { + "light": { + "value": "$core.color.neutral.blk-020", + "type": "color" + }, + "dark": { + "value": "$core.color.neutral.blk-220", + "type": "color" + } + }, "current": { "light": { "value": "$core.color.palette.high-saturation.blue.h-bb-010", From cb6bc6d9444b247392c01a5eade314e8dd3933de Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 5 Mar 2023 21:19:43 +0000 Subject: [PATCH 438/696] cards color tokens --- tokens/$themes.json | 15 +++++---------- tokens/calcite/dark.json | 20 ++++++++++++++++++++ tokens/calcite/light.json | 20 ++++++++++++++++++++ 3 files changed, 45 insertions(+), 10 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 5704b7f634f..712b667d2b7 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/action": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/action": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/action": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/action": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -220,8 +216,7 @@ "component/textarea": "enabled", "component/tab-title": "enabled", "component/card": "enabled", - "component/tabs": "enabled", - "component/action": "disabled" + "component/tabs": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index b979a095470..43b2294aa22 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1174,6 +1174,26 @@ "type": "color" } } + }, + "action": { + "font": { + "value": "$action.font.dark", + "type": "color" + }, + "icon": { + "value": "$action.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$action.background.default.dark", + "type": "color" + }, + "active": { + "value": "$action.background.active.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index eb075a1d7a4..622846cdd46 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1210,6 +1210,26 @@ "type": "color" } } + }, + "action": { + "font": { + "value": "$action.font.light", + "type": "color" + }, + "icon": { + "value": "$action.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$action.background.default.light", + "type": "color" + }, + "active": { + "value": "$action.background.active.light", + "type": "color" + } + } } } } From 57d2d65fc6ffa169ea2a88af565bec28a8760782 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sun, 5 Mar 2023 21:41:44 +0000 Subject: [PATCH 439/696] tabs color --- tokens/$metadata.json | 2 +- tokens/calcite/dark.json | 4 ++-- tokens/calcite/light.json | 4 ++-- tokens/component/tabs.json | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 1587c53e194..82f25bab53e 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -4,6 +4,7 @@ "semantic", "component/accordion-item", "component/accordion", + "component/action", "component/alert", "component/avatar", "component/card", @@ -35,7 +36,6 @@ "component/tooltip", "component/switch", "component/[template-comp-name]", - "component/action", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 43b2294aa22..ad6b1e7ba38 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1150,11 +1150,11 @@ "tabs": { "bordered": { "border": { - "value": "$tab-title.bordered.border.dark", + "value": "$tabs.bordered.border.dark", "type": "color" }, "background": { - "value": "$tab-title.bordered.background.default.dark", + "value": "$tabs.bordered.background.default.dark", "type": "color" } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 622846cdd46..e6502d91026 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1186,11 +1186,11 @@ "tabs": { "bordered": { "border": { - "value": "$tab-title.bordered.border.light", + "value": "$tabs.bordered.border.light", "type": "color" }, "background": { - "value": "$tab-title.bordered.background.default.light", + "value": "$tabs.bordered.background.default.light", "type": "color" } } diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index ebd7bb1869d..ec3ebc8abf8 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -14,11 +14,11 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } } From 9c70f30638be594a6139d406b2199d577a93b544 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 6 Mar 2023 12:42:56 +0000 Subject: [PATCH 440/696] cards color correction --- tokens/calcite/dark.json | 10 ++++++++++ tokens/calcite/light.json | 10 ++++++++++ tokens/component/card.json | 24 ++++++++++++++++++------ 3 files changed, 38 insertions(+), 6 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index ad6b1e7ba38..fc7bf6eb878 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1173,6 +1173,16 @@ "value": "$card.font.description.dark", "type": "color" } + }, + "border": { + "default": { + "value": "$card.border.default.dark", + "type": "color" + }, + "active": { + "value": "$card.border.active.dark", + "type": "color" + } } }, "action": { diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index e6502d91026..6e10bd70ba4 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1209,6 +1209,16 @@ "value": "$card.font.description.light", "type": "color" } + }, + "border": { + "default": { + "value": "$card.border.default.light", + "type": "color" + }, + "active": { + "value": "$card.border.active.light", + "type": "color" + } } }, "action": { diff --git a/tokens/component/card.json b/tokens/component/card.json index 8077fd097bf..558e2289c7d 100644 --- a/tokens/component/card.json +++ b/tokens/component/card.json @@ -47,13 +47,25 @@ } }, "border": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "background": { From 01c87561dfcc2392ab0947e20eb956dbc18ad3a7 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 6 Mar 2023 12:44:53 +0000 Subject: [PATCH 441/696] cards tokens --- tokens/calcite/dark.json | 6 ++++++ tokens/calcite/light.json | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index fc7bf6eb878..5567cab2875 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1183,6 +1183,12 @@ "value": "$card.border.active.dark", "type": "color" } + }, + "background": { + "default": { + "value": "$card.background.default.dark", + "type": "color" + } } }, "action": { diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 6e10bd70ba4..b4434249d0c 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1219,6 +1219,12 @@ "value": "$card.border.active.light", "type": "color" } + }, + "background": { + "default": { + "value": "$card.background.default.light", + "type": "color" + } } }, "action": { From 348f22d97d1688d96b267dca4087af67fef08c24 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 6 Mar 2023 19:22:53 +0100 Subject: [PATCH 442/696] stepper-item update --- tokens/$metadata.json | 17 +- tokens/$themes.json | 53 +- tokens/calcite/dark.json | 84 +++ tokens/calcite/light.json | 84 +++ tokens/component/[template-comp-name].json | 4 +- tokens/component/accordion_backup_Copy.json | 238 -------- .../{pagination.json => action.json} | 184 +++--- tokens/component/button.json | 578 ------------------ tokens/component/card.json | 141 +++++ tokens/component/combobox.json | 152 ----- tokens/component/dropdown.json | 177 ------ tokens/component/fab.json | 524 ---------------- tokens/component/link.json | 44 -- tokens/component/segmented-control.json | 154 ----- tokens/component/stepper-item.json | 275 +++++---- tokens/component/stepper.json | 152 ----- tokens/component/tab-title.json | 4 +- tokens/component/tabs.json | 168 ++--- tokens/semantic.json | 2 +- 19 files changed, 618 insertions(+), 2417 deletions(-) delete mode 100644 tokens/component/accordion_backup_Copy.json rename tokens/component/{pagination.json => action.json} (52%) delete mode 100644 tokens/component/button.json create mode 100644 tokens/component/card.json delete mode 100644 tokens/component/combobox.json delete mode 100644 tokens/component/dropdown.json delete mode 100644 tokens/component/fab.json delete mode 100644 tokens/component/link.json delete mode 100644 tokens/component/segmented-control.json delete mode 100644 tokens/component/stepper.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index fbdc873af85..753b41ec61b 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -4,14 +4,12 @@ "semantic", "component/accordion-item", "component/accordion", + "component/action", "component/alert", "component/avatar", - "component/button", - "component/fab", + "component/card", "component/checkbox", "component/chip", - "component/combobox", - "component/dropdown", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -29,26 +27,21 @@ "component/textarea", "component/date-picker", "component/label", - "component/link", "component/loader", "component/radio", + "component/rating", "component/tab-title", "component/tabs", - "component/rating", "component/tip", "component/tooltip", - "component/pagination", - "component/segmented-control", - "component/stepper", - "component/stepper-item", "component/switch", + "component/stepper-item", "component/[template-comp-name]", "component/accordion_backup", - "component/accordion_backup_Copy", "calcite/light", "calcite/dark", "brand/global", "brand/light", "brand/dark" ] -} +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index bfc13b78717..b8216b0a944 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/stepper-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/stepper-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -25,29 +27,18 @@ "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", "name": "Calcite - Dark", "selectedTokenSets": { + "core": "source", + "semantic": "source", "calcite/dark": "enabled", + "component/label": "source", "component/avatar": "source", - "component/button": "source", "component/checkbox": "source", "component/chip": "source", - "component/color-picker": "source", - "component/combobox": "source", - "component/dropdown": "source", - "component/fab": "source", - "component/input-datetime-local": "source", - "component/label": "source", - "component/link": "source", "component/loader": "source", - "component/pagination": "source", "component/radio": "source", "component/rating": "source", - "component/segmented-control": "source", - "component/stepper-item": "source", - "component/stepper": "source", - "component/switch": "source", "component/tooltip": "source", - "core": "source", - "semantic": "source" + "component/stepper-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -125,19 +116,7 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/combobox": "source", - "component/button": "source", - "component/dropdown": "source", - "component/color-picker": "source", - "component/input-datetime-local": "source", - "component/link": "source", - "component/fab": "source", - "component/stepper": "source", - "component/pagination": "source", - "component/segmented-control": "source", - "component/switch": "source", "component/stepper-item": "source" - }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -228,16 +207,7 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", - "component/combobox": "enabled", - "component/button": "enabled", - "component/dropdown": "enabled", "component/input-datetime-local": "enabled", - "component/link": "enabled", - "component/fab": "enabled", - "component/stepper": "enabled", - "component/pagination": "enabled", - "component/segmented-control": "enabled", - "component/stepper-item": "enabled", "component/input-email": "enabled", "component/input-file": "enabled", "component/input-month": "enabled", @@ -248,7 +218,10 @@ "component/input-text": "enabled", "component/input-week": "enabled", "component/textarea": "enabled", - "component/tab-title": "enabled" + "component/tab-title": "enabled", + "component/card": "enabled", + "component/tabs": "enabled", + "component/stepper-item": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -774,4 +747,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] +] \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 76e187ae720..8b5e8cd0b3a 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1146,6 +1146,90 @@ "type": "color" } } + }, + "tabs": { + "bordered": { + "border": { + "value": "$tabs.bordered.border.dark", + "type": "color" + }, + "background": { + "value": "$tabs.bordered.background.default.dark", + "type": "color" + } + } + }, + "card": { + "font": { + "title": { + "value": "$card.font.title.dark", + "type": "color" + }, + "subtitle": { + "value": "$card.font.subtitle.dark", + "type": "color" + }, + "description": { + "value": "$card.font.description.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$card.border.default.dark", + "type": "color" + }, + "active": { + "value": "$card.border.active.dark", + "type": "color" + } + }, + "background": { + "default": { + "value": "$card.background.default.dark", + "type": "color" + } + } + }, + "action": { + "background": { + "default": { + "value": "$action.background.default.light", + "type": "color" + }, + "active": { + "value": "$action.background.active.light", + "type": "color" + } + }, + "indicator": { + "value": "$action.indicator.light", + "type": "color" + }, + "font": { + "default": { + "value": "$action.font.default.light", + "type": "color" + }, + "active": { + "value": "$action.font.active.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$action.icon.default.light", + "type": "color" + }, + "active": { + "value": "$action.icon.active.light", + "type": "color" + } + }, + "loader": { + "value": "$action.loader-icon.light", + "type": "color" + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 6491050b1b3..9da31fcfd2a 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1182,6 +1182,90 @@ "type": "color" } } + }, + "tabs": { + "bordered": { + "border": { + "value": "$tabs.bordered.border.light", + "type": "color" + }, + "background": { + "value": "$tabs.bordered.background.default.light", + "type": "color" + } + } + }, + "card": { + "font": { + "title": { + "value": "$card.font.title.light", + "type": "color" + }, + "subtitle": { + "value": "$card.font.subtitle.light", + "type": "color" + }, + "description": { + "value": "$card.font.description.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$card.border.default.light", + "type": "color" + }, + "active": { + "value": "$card.border.active.light", + "type": "color" + } + }, + "background": { + "default": { + "value": "$card.background.default.light", + "type": "color" + } + } + }, + "action": { + "background": { + "default": { + "value": "$action.background.default.light", + "type": "color" + }, + "active": { + "value": "$action.background.active.light", + "type": "color" + } + }, + "indicator": { + "value": "$action.indicator.light", + "type": "color" + }, + "font": { + "default": { + "value": "$action.font.default.light", + "type": "color" + }, + "active": { + "value": "$action.font.active.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$action.icon.default.light", + "type": "color" + }, + "active": { + "value": "$action.icon.active.light", + "type": "color" + } + }, + "loader": { + "value": "$action.loader-icon.light", + "type": "color" + } } } } diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 28be1f3d8f3..bf4896dbc5a 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -10,7 +10,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "$semantic.font.default.bold.-3h", "type": "typography" }, "md": { @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/accordion_backup_Copy.json b/tokens/component/accordion_backup_Copy.json deleted file mode 100644 index 5a67f8416b4..00000000000 --- a/tokens/component/accordion_backup_Copy.json +++ /dev/null @@ -1,238 +0,0 @@ -{ - "accordion": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "expanded": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "default": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - } - } - }, - "minimal": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.none}", - "type": "spacing" - } - } - } - }, - "border-width": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/action.json similarity index 52% rename from tokens/component/pagination.json rename to tokens/component/action.json index 8525fb9be8a..1903170631b 100644 --- a/tokens/component/pagination.json +++ b/tokens/component/action.json @@ -1,109 +1,81 @@ { - "pagination": { + "action": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.regular.0h", "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.text.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.text.3.dark", "type": "color" } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } } }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" + "active": { + "light": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } } }, "icon-size": { @@ -112,39 +84,39 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.7", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.7", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.9", + "value": "$core.spacing.7", "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.8", "type": "spacing" } }, @@ -172,6 +144,40 @@ "type": "composition" } } + }, + "indicator-size": { + "sm": { + "value": "$core.sizing.3", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.3", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "sizing" + } + }, + "indicator": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "loader-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } } } } \ No newline at end of file diff --git a/tokens/component/button.json b/tokens/component/button.json deleted file mode 100644 index 5669c1ba910..00000000000 --- a/tokens/component/button.json +++ /dev/null @@ -1,578 +0,0 @@ -{ - "button": { - "font": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "icon": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - } - }, - "border": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "background": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/card.json b/tokens/component/card.json new file mode 100644 index 00000000000..558e2289c7d --- /dev/null +++ b/tokens/component/card.json @@ -0,0 +1,141 @@ +{ + "card": { + "font": { + "title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } + }, + "subtile": { + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + } + }, + "description": { + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "subtitle": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "space-around": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-between": { + "card": { + "md": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "title": { + "md": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json deleted file mode 100644 index 8d724bffabd..00000000000 --- a/tokens/component/combobox.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "combobox": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json deleted file mode 100644 index b4e2f0a5bb1..00000000000 --- a/tokens/component/dropdown.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "dropdown": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json deleted file mode 100644 index 1c3606de43d..00000000000 --- a/tokens/component/fab.json +++ /dev/null @@ -1,524 +0,0 @@ -{ - "fab": { - "font": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "icon": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "border": { - "brand": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "danger": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "background": { - "brand": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "danger": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json deleted file mode 100644 index 4bd7249b874..00000000000 --- a/tokens/component/link.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "link": { - "font": { - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - }, - "regular": { - "value": "$semantic.font.wrap.regular.0", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "bottom": { - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json deleted file mode 100644 index b661574f032..00000000000 --- a/tokens/component/segmented-control.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "segmented-control": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "checked": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index bb7e12a4929..4baf5082797 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -1,171 +1,185 @@ { - "stepper": { + "stepper-item": { "font": { "heading": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } }, - "sm": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, - "md": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" + "error": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, - "lg": { - "value": "$semantic.font.default.medium.1h", - "type": "typography" + "complete": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } } }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, "description": { - "sm": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.1h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "content": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" + "active": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" + "error": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" + "complete": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } } }, - "number": { - "sm": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.1h", - "type": "typography" - }, + "context": { "default": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "$semantic.ui.color.text.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.text.2.dark", "type": "color" } }, "active": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "$semantic.ui.color.text.2.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } }, "error": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.text.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "complete": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", "type": "color" } } } }, "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" }, - "error": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" } }, "border": { - "default": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" }, - "active": { + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "$semantic.ui.color.background.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$semantic.ui.color.background.dark", "type": "color" } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" }, - "error": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" } }, "border-radius": { @@ -188,11 +202,11 @@ "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.2", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.4", "type": "borderWidth" } }, @@ -252,9 +266,30 @@ "type": "spacing" } }, - "disabled": { - "value": "{core.opacity.50}", - "type": "opacity" + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } } } } \ No newline at end of file diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json deleted file mode 100644 index 76ca139ef90..00000000000 --- a/tokens/component/stepper.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "stepper": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 6e0e9800f70..1696efd71e3 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -70,7 +70,7 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.background.light", "type": "color" }, "dark": { @@ -90,7 +90,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "$core.spacing.1", "type": "spacing" } }, diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index 78f91e3e9bc..ec3ebc8abf8 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -1,61 +1,5 @@ { "tabs": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, "bordered": { "border": { "light": { @@ -74,7 +18,7 @@ "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } } @@ -86,7 +30,7 @@ "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "$core.spacing.3", "type": "spacing" }, "lg": { @@ -96,32 +40,32 @@ }, "top-bottom": { "sm": { - "value": "$core.spacing.1", + "value": "$core.spacing.7", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "$core.spacing.7", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "$core.spacing.10", "type": "spacing" } } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } } }, "border-width": { @@ -136,63 +80,21 @@ "lg": { "value": "$core.border.border-width.0", "type": "borderWidth" - }, - "active": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - } - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" } }, "default": { "space-around": { "left-right": { "sm": { - "value": "$core.spacing.1", + "value": "$core.spacing.none", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "$core.spacing.none", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "$core.spacing.none", "type": "spacing" } }, @@ -206,10 +108,24 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "$core.spacing.5", "type": "spacing" } } + }, + "space-between": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.8", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.9", + "type": "spacing" + } } }, "[specific-element]": { @@ -236,18 +152,6 @@ "type": "composition" } } - }, - "border": { - "active": { - "light": { - "value": "{semantic.ui.color.brand.default.light}", - "type": "color" - }, - "dark": { - "value": "{semantic.ui.color.brand.default.dark}", - "type": "color" - } - } } } } \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 3ac92afce5a..6f678e878b4 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1680,4 +1680,4 @@ } } } -} +} \ No newline at end of file From 59e8a5235bcba23d15679b4f2945ba5eff61c38a Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 6 Mar 2023 20:06:11 +0100 Subject: [PATCH 443/696] stepper-item updates --- tokens/$themes.json | 6 +-- tokens/component/stepper-item.json | 73 +++++++++++++++--------------- 2 files changed, 38 insertions(+), 41 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index b8216b0a944..18af0fbedfd 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/stepper-item": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/stepper-item": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index 4baf5082797..b96e1251a21 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -41,20 +41,20 @@ "value": "$semantic.ui.color.text.2.dark", "type": "color" } + }, + "sm": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.1h", + "type": "typography" } }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, "description": { "default": { "light": { @@ -95,6 +95,18 @@ "value": "$semantic.ui.color.text.2.dark", "type": "color" } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" } }, "context": { @@ -137,6 +149,18 @@ "value": "$semantic.ui.color.text.2.dark", "type": "color" } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" } } }, @@ -265,31 +289,6 @@ "value": "$core.spacing.11", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } \ No newline at end of file From 165c181100f674c42c591fee1ffb2fd9069f9f42 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 6 Mar 2023 20:36:45 +0100 Subject: [PATCH 444/696] Latest update to stepper-item --- tokens/component/stepper-item.json | 88 ++++++++++++++++++++---------- 1 file changed, 59 insertions(+), 29 deletions(-) diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index b96e1251a21..870729dff90 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -165,23 +165,67 @@ } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "error": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } }, "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "error": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } }, "background": { @@ -206,31 +250,17 @@ "type": "color" } }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, From d98639930376778c449486a92349806ad866da57 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 6 Mar 2023 20:46:48 +0100 Subject: [PATCH 445/696] Latest updates to stepper-item --- tokens/component/stepper-item.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index 870729dff90..ddba0c825a7 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -252,15 +252,15 @@ }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.1", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.1", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.1", "type": "borderWidth" } }, @@ -284,11 +284,11 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.7", "type": "sizing" } }, From 036c8fe5eb31c7de1754215a80ce5f9b54f3da30 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 6 Mar 2023 21:28:12 +0100 Subject: [PATCH 446/696] Latest updates to stepper-item --- tokens/component/stepper-item.json | 52 +++++++++++++++++++++++------- 1 file changed, 41 insertions(+), 11 deletions(-) diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index ddba0c825a7..41aa4ee6d59 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -294,11 +294,11 @@ }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.5", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.7", "type": "spacing" }, "lg": { @@ -307,17 +307,47 @@ } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" + "left": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "right": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.8", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.8", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.9", + "type": "spacing" + } } } } From 8285b853bd6c5459e97c60fc151d1b1733b9212f Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 6 Mar 2023 21:35:01 +0100 Subject: [PATCH 447/696] Latest updates to stepper-item --- tokens/component/stepper-item.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index 41aa4ee6d59..7ca99b96fef 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -43,15 +43,15 @@ } }, "sm": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.medium.-1h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.medium.0h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.1h", + "value": "$semantic.font.default.medium.1h", "type": "typography" } }, From 1604a3fcdbdccc15be6b89818c5c413eb697ac22 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 7 Mar 2023 10:57:00 -0800 Subject: [PATCH 448/696] Revert "stepper-item update" This reverts commit 348f22d97d1688d96b267dca4087af67fef08c24. # Conflicts: # tokens/component/stepper-item.json --- tokens/$metadata.json | 17 +- tokens/$themes.json | 47 +- tokens/calcite/dark.json | 84 --- tokens/calcite/light.json | 84 --- tokens/component/[template-comp-name].json | 4 +- tokens/component/accordion_backup_Copy.json | 238 ++++++++ tokens/component/button.json | 578 ++++++++++++++++++ tokens/component/card.json | 141 ----- tokens/component/combobox.json | 152 +++++ .../component/{action.json => dropdown.json} | 184 +++--- tokens/component/fab.json | 524 ++++++++++++++++ tokens/component/link.json | 44 ++ tokens/component/pagination.json | 177 ++++++ tokens/component/segmented-control.json | 154 +++++ tokens/component/stepper-item.json | 30 +- tokens/component/stepper.json | 152 +++++ tokens/component/tab-title.json | 4 +- tokens/component/tabs.json | 168 +++-- tokens/semantic.json | 2 +- 19 files changed, 2319 insertions(+), 465 deletions(-) create mode 100644 tokens/component/accordion_backup_Copy.json create mode 100644 tokens/component/button.json delete mode 100644 tokens/component/card.json create mode 100644 tokens/component/combobox.json rename tokens/component/{action.json => dropdown.json} (52%) create mode 100644 tokens/component/fab.json create mode 100644 tokens/component/link.json create mode 100644 tokens/component/pagination.json create mode 100644 tokens/component/segmented-control.json create mode 100644 tokens/component/stepper.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 753b41ec61b..fbdc873af85 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -4,12 +4,14 @@ "semantic", "component/accordion-item", "component/accordion", - "component/action", "component/alert", "component/avatar", - "component/card", + "component/button", + "component/fab", "component/checkbox", "component/chip", + "component/combobox", + "component/dropdown", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -27,21 +29,26 @@ "component/textarea", "component/date-picker", "component/label", + "component/link", "component/loader", "component/radio", - "component/rating", "component/tab-title", "component/tabs", + "component/rating", "component/tip", "component/tooltip", - "component/switch", + "component/pagination", + "component/segmented-control", + "component/stepper", "component/stepper-item", + "component/switch", "component/[template-comp-name]", "component/accordion_backup", + "component/accordion_backup_Copy", "calcite/light", "calcite/dark", "brand/global", "brand/light", "brand/dark" ] -} \ No newline at end of file +} diff --git a/tokens/$themes.json b/tokens/$themes.json index 18af0fbedfd..bfc13b78717 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -25,18 +25,29 @@ "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", "name": "Calcite - Dark", "selectedTokenSets": { - "core": "source", - "semantic": "source", "calcite/dark": "enabled", - "component/label": "source", "component/avatar": "source", + "component/button": "source", "component/checkbox": "source", "component/chip": "source", + "component/color-picker": "source", + "component/combobox": "source", + "component/dropdown": "source", + "component/fab": "source", + "component/input-datetime-local": "source", + "component/label": "source", + "component/link": "source", "component/loader": "source", + "component/pagination": "source", "component/radio": "source", "component/rating": "source", + "component/segmented-control": "source", + "component/stepper-item": "source", + "component/stepper": "source", + "component/switch": "source", "component/tooltip": "source", - "component/stepper-item": "source" + "core": "source", + "semantic": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -114,7 +125,19 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", + "component/combobox": "source", + "component/button": "source", + "component/dropdown": "source", + "component/color-picker": "source", + "component/input-datetime-local": "source", + "component/link": "source", + "component/fab": "source", + "component/stepper": "source", + "component/pagination": "source", + "component/segmented-control": "source", + "component/switch": "source", "component/stepper-item": "source" + }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -205,7 +228,16 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", + "component/combobox": "enabled", + "component/button": "enabled", + "component/dropdown": "enabled", "component/input-datetime-local": "enabled", + "component/link": "enabled", + "component/fab": "enabled", + "component/stepper": "enabled", + "component/pagination": "enabled", + "component/segmented-control": "enabled", + "component/stepper-item": "enabled", "component/input-email": "enabled", "component/input-file": "enabled", "component/input-month": "enabled", @@ -216,10 +248,7 @@ "component/input-text": "enabled", "component/input-week": "enabled", "component/textarea": "enabled", - "component/tab-title": "enabled", - "component/card": "enabled", - "component/tabs": "enabled", - "component/stepper-item": "enabled" + "component/tab-title": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -745,4 +774,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] \ No newline at end of file +] diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 8b5e8cd0b3a..76e187ae720 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1146,90 +1146,6 @@ "type": "color" } } - }, - "tabs": { - "bordered": { - "border": { - "value": "$tabs.bordered.border.dark", - "type": "color" - }, - "background": { - "value": "$tabs.bordered.background.default.dark", - "type": "color" - } - } - }, - "card": { - "font": { - "title": { - "value": "$card.font.title.dark", - "type": "color" - }, - "subtitle": { - "value": "$card.font.subtitle.dark", - "type": "color" - }, - "description": { - "value": "$card.font.description.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$card.border.default.dark", - "type": "color" - }, - "active": { - "value": "$card.border.active.dark", - "type": "color" - } - }, - "background": { - "default": { - "value": "$card.background.default.dark", - "type": "color" - } - } - }, - "action": { - "background": { - "default": { - "value": "$action.background.default.light", - "type": "color" - }, - "active": { - "value": "$action.background.active.light", - "type": "color" - } - }, - "indicator": { - "value": "$action.indicator.light", - "type": "color" - }, - "font": { - "default": { - "value": "$action.font.default.light", - "type": "color" - }, - "active": { - "value": "$action.font.active.light", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$action.icon.default.light", - "type": "color" - }, - "active": { - "value": "$action.icon.active.light", - "type": "color" - } - }, - "loader": { - "value": "$action.loader-icon.light", - "type": "color" - } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 9da31fcfd2a..6491050b1b3 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1182,90 +1182,6 @@ "type": "color" } } - }, - "tabs": { - "bordered": { - "border": { - "value": "$tabs.bordered.border.light", - "type": "color" - }, - "background": { - "value": "$tabs.bordered.background.default.light", - "type": "color" - } - } - }, - "card": { - "font": { - "title": { - "value": "$card.font.title.light", - "type": "color" - }, - "subtitle": { - "value": "$card.font.subtitle.light", - "type": "color" - }, - "description": { - "value": "$card.font.description.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$card.border.default.light", - "type": "color" - }, - "active": { - "value": "$card.border.active.light", - "type": "color" - } - }, - "background": { - "default": { - "value": "$card.background.default.light", - "type": "color" - } - } - }, - "action": { - "background": { - "default": { - "value": "$action.background.default.light", - "type": "color" - }, - "active": { - "value": "$action.background.active.light", - "type": "color" - } - }, - "indicator": { - "value": "$action.indicator.light", - "type": "color" - }, - "font": { - "default": { - "value": "$action.font.default.light", - "type": "color" - }, - "active": { - "value": "$action.font.active.light", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$action.icon.default.light", - "type": "color" - }, - "active": { - "value": "$action.icon.active.light", - "type": "color" - } - }, - "loader": { - "value": "$action.loader-icon.light", - "type": "color" - } } } } diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index bf4896dbc5a..28be1f3d8f3 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -10,7 +10,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "md": { @@ -174,4 +174,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/accordion_backup_Copy.json b/tokens/component/accordion_backup_Copy.json new file mode 100644 index 00000000000..5a67f8416b4 --- /dev/null +++ b/tokens/component/accordion_backup_Copy.json @@ -0,0 +1,238 @@ +{ + "accordion": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "font": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "expanded": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "default": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "minimal": { + "space-between": { + "sm": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.7}", + "type": "spacing" + } + }, + "text": { + "space-between": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.1}", + "type": "spacing" + } + } + }, + "space-around": { + "top-bottom": { + "sm": { + "value": "{core.spacing.1}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "left-right": { + "sm": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.none}", + "type": "spacing" + } + } + } + }, + "border-width": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/button.json b/tokens/component/button.json new file mode 100644 index 00000000000..5669c1ba910 --- /dev/null +++ b/tokens/component/button.json @@ -0,0 +1,578 @@ +{ + "button": { + "font": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "icon": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } + }, + "border": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "background": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/card.json b/tokens/component/card.json deleted file mode 100644 index 558e2289c7d..00000000000 --- a/tokens/component/card.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "card": { - "font": { - "title": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - } - }, - "subtile": { - "md": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - } - }, - "description": { - "md": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "subtitle": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - } - }, - "border": { - "default": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, - "space-around": { - "md": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "space-between": { - "card": { - "md": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "title": { - "md": { - "value": "$core.spacing.3", - "type": "spacing" - } - } - }, - "border-radius": { - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "border-width": { - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json new file mode 100644 index 00000000000..8d724bffabd --- /dev/null +++ b/tokens/component/combobox.json @@ -0,0 +1,152 @@ +{ + "combobox": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/action.json b/tokens/component/dropdown.json similarity index 52% rename from tokens/component/action.json rename to tokens/component/dropdown.json index 1903170631b..b4e2f0a5bb1 100644 --- a/tokens/component/action.json +++ b/tokens/component/dropdown.json @@ -1,81 +1,109 @@ { - "action": { + "dropdown": { "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "$semantic.font.default.bold.-3h", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "$semantic.font.default.bold.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "$semantic.font.default.bold.0h", "type": "typography" - }, - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } } }, "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.background.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.background.dark", "type": "color" } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" }, - "active": { - "light": { - "value": "$semantic.ui.color.foreground.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.3.dark", - "type": "color" - } + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" } }, "icon-size": { @@ -84,39 +112,39 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "$core.sizing.9", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "$core.sizing.11", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "$core.spacing.9", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "$core.spacing.11", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "$core.spacing.14", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.3", + "value": "$core.spacing.7", "type": "spacing" }, "md": { - "value": "$core.spacing.7", + "value": "$core.spacing.9", "type": "spacing" }, "lg": { - "value": "$core.spacing.8", + "value": "$core.spacing.11", "type": "spacing" } }, @@ -144,40 +172,6 @@ "type": "composition" } } - }, - "indicator-size": { - "sm": { - "value": "$core.sizing.3", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.3", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.3", - "type": "sizing" - } - }, - "indicator": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "loader-icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } } } } \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json new file mode 100644 index 00000000000..1c3606de43d --- /dev/null +++ b/tokens/component/fab.json @@ -0,0 +1,524 @@ +{ + "fab": { + "font": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "icon": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "border": { + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "danger": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "background": { + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "danger": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json new file mode 100644 index 00000000000..4bd7249b874 --- /dev/null +++ b/tokens/component/link.json @@ -0,0 +1,44 @@ +{ + "link": { + "font": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + }, + "regular": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "bottom": { + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json new file mode 100644 index 00000000000..8525fb9be8a --- /dev/null +++ b/tokens/component/pagination.json @@ -0,0 +1,177 @@ +{ + "pagination": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json new file mode 100644 index 00000000000..b661574f032 --- /dev/null +++ b/tokens/component/segmented-control.json @@ -0,0 +1,154 @@ +{ + "segmented-control": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "checked": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index 7ca99b96fef..cf6419183c3 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -199,11 +199,11 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", "type": "color" } }, @@ -250,6 +250,20 @@ "type": "color" } }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, "border-width": { "sm": { "value": "$core.border.border-width.1", @@ -349,6 +363,10 @@ "type": "spacing" } } + }, + "disabled": { + "value": "{core.opacity.50}", + "type": "opacity" } } -} \ No newline at end of file +} diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json new file mode 100644 index 00000000000..76ca139ef90 --- /dev/null +++ b/tokens/component/stepper.json @@ -0,0 +1,152 @@ +{ + "stepper": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 1696efd71e3..6e0e9800f70 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -70,7 +70,7 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { @@ -90,7 +90,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "$core.spacing.7", "type": "spacing" } }, diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index ec3ebc8abf8..78f91e3e9bc 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -1,5 +1,61 @@ { "tabs": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, "bordered": { "border": { "light": { @@ -18,7 +74,7 @@ "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.background.dark", "type": "color" } } @@ -30,7 +86,7 @@ "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { @@ -40,32 +96,32 @@ }, "top-bottom": { "sm": { - "value": "$core.spacing.7", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "$core.spacing.7", + "value": "$core.spacing.3", "type": "spacing" }, "lg": { - "value": "$core.spacing.10", + "value": "$core.spacing.4", "type": "spacing" } } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" }, - "space-between": { - "sm": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.none", - "type": "spacing" - } + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" } }, "border-width": { @@ -80,21 +136,63 @@ "lg": { "value": "$core.border.border-width.0", "type": "borderWidth" + }, + "active": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" } }, "default": { "space-around": { "left-right": { "sm": { - "value": "$core.spacing.none", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "$core.spacing.none", + "value": "$core.spacing.1", "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "$core.spacing.1", "type": "spacing" } }, @@ -108,24 +206,10 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "$core.spacing.4", "type": "spacing" } } - }, - "space-between": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.8", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.9", - "type": "spacing" - } } }, "[specific-element]": { @@ -152,6 +236,18 @@ "type": "composition" } } + }, + "border": { + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } } } } \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 6f678e878b4..3ac92afce5a 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1680,4 +1680,4 @@ } } } -} \ No newline at end of file +} From 376e55281e79421a428f975429cb9e97512077d7 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 7 Mar 2023 11:10:21 -0800 Subject: [PATCH 449/696] chore: add back changes made by merge conflict --- tokens/$metadata.json | 2 + tokens/$themes.json | 2 + tokens/calcite/dark.json | 86 ++++++++++++++- tokens/calcite/light.json | 86 ++++++++++++++- tokens/component/action.json | 183 ++++++++++++++++++++++++++++++++ tokens/component/card.json | 141 ++++++++++++++++++++++++ tokens/component/tab-title.json | 2 +- 7 files changed, 499 insertions(+), 3 deletions(-) create mode 100644 tokens/component/action.json create mode 100644 tokens/component/card.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index fbdc873af85..8dbf6888909 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -4,10 +4,12 @@ "semantic", "component/accordion-item", "component/accordion", + "component/action", "component/alert", "component/avatar", "component/button", "component/fab", + "component/card", "component/checkbox", "component/chip", "component/combobox", diff --git a/tokens/$themes.json b/tokens/$themes.json index bfc13b78717..a0a1afad2b8 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -248,6 +248,8 @@ "component/input-text": "enabled", "component/input-week": "enabled", "component/textarea": "enabled", + "component/card": "enabled", + "component/tabs": "enabled", "component/tab-title": "enabled" }, "$figmaStyleReferences": { diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 76e187ae720..f56b8ec9cbb 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1146,7 +1146,91 @@ "type": "color" } } + }, + "tabs": { + "bordered": { + "border": { + "value": "$tabs.bordered.border.dark", + "type": "color" + }, + "background": { + "value": "$tabs.bordered.background.default.dark", + "type": "color" + } + } + }, + "card": { + "font": { + "title": { + "value": "$card.font.title.dark", + "type": "color" + }, + "subtitle": { + "value": "$card.font.subtitle.dark", + "type": "color" + }, + "description": { + "value": "$card.font.description.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$card.border.default.dark", + "type": "color" + }, + "active": { + "value": "$card.border.active.dark", + "type": "color" + } + }, + "background": { + "default": { + "value": "$card.background.default.dark", + "type": "color" + } + } + }, + "action": { + "background": { + "default": { + "value": "$action.background.default.light", + "type": "color" + }, + "active": { + "value": "$action.background.active.light", + "type": "color" + } + }, + "indicator": { + "value": "$action.indicator.light", + "type": "color" + }, + "font": { + "default": { + "value": "$action.font.default.light", + "type": "color" + }, + "active": { + "value": "$action.font.active.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$action.icon.default.light", + "type": "color" + }, + "active": { + "value": "$action.icon.active.light", + "type": "color" + } + }, + "loader": { + "value": "$action.loader-icon.light", + "type": "color" + } } } } -} \ No newline at end of file +} diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 6491050b1b3..97b89bff720 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1182,7 +1182,91 @@ "type": "color" } } + }, + "tabs": { + "bordered": { + "border": { + "value": "$tabs.bordered.border.light", + "type": "color" + }, + "background": { + "value": "$tabs.bordered.background.default.light", + "type": "color" + } + } + }, + "card": { + "font": { + "title": { + "value": "$card.font.title.light", + "type": "color" + }, + "subtitle": { + "value": "$card.font.subtitle.light", + "type": "color" + }, + "description": { + "value": "$card.font.description.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$card.border.default.light", + "type": "color" + }, + "active": { + "value": "$card.border.active.light", + "type": "color" + } + }, + "background": { + "default": { + "value": "$card.background.default.light", + "type": "color" + } + } + }, + "action": { + "background": { + "default": { + "value": "$action.background.default.light", + "type": "color" + }, + "active": { + "value": "$action.background.active.light", + "type": "color" + } + }, + "indicator": { + "value": "$action.indicator.light", + "type": "color" + }, + "font": { + "default": { + "value": "$action.font.default.light", + "type": "color" + }, + "active": { + "value": "$action.font.active.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$action.icon.default.light", + "type": "color" + }, + "active": { + "value": "$action.icon.active.light", + "type": "color" + } + }, + "loader": { + "value": "$action.loader-icon.light", + "type": "color" + } } } } -} \ No newline at end of file +} diff --git a/tokens/component/action.json b/tokens/component/action.json new file mode 100644 index 00000000000..1903170631b --- /dev/null +++ b/tokens/component/action.json @@ -0,0 +1,183 @@ +{ + "action": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.8", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "indicator-size": { + "sm": { + "value": "$core.sizing.3", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.3", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "sizing" + } + }, + "indicator": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "loader-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/card.json b/tokens/component/card.json new file mode 100644 index 00000000000..558e2289c7d --- /dev/null +++ b/tokens/component/card.json @@ -0,0 +1,141 @@ +{ + "card": { + "font": { + "title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } + }, + "subtile": { + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + } + }, + "description": { + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "subtitle": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "space-around": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-between": { + "card": { + "md": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "title": { + "md": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 6e0e9800f70..042fe740f66 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -250,4 +250,4 @@ } } } -} \ No newline at end of file +} From d17d63cb06f13ec529fdcb65a9d4610ee5947577 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 8 Mar 2023 16:53:41 +0000 Subject: [PATCH 450/696] action bar tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +++-- tokens/calcite/dark.json | 10 +++ tokens/calcite/light.json | 10 +++ tokens/component/action-bar.json | 105 +++++++++++++++++++++++++++++++ 5 files changed, 136 insertions(+), 5 deletions(-) create mode 100644 tokens/component/action-bar.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 82f25bab53e..e2f5a710fce 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -36,6 +36,7 @@ "component/tooltip", "component/switch", "component/[template-comp-name]", + "component/action-bar", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/$themes.json b/tokens/$themes.json index 712b667d2b7..19d123b5bcd 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/action-bar": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/action-bar": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/action-bar": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/action-bar": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -216,7 +220,8 @@ "component/textarea": "enabled", "component/tab-title": "enabled", "component/card": "enabled", - "component/tabs": "enabled" + "component/tabs": "enabled", + "component/action-bar": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 5567cab2875..502e4959565 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1210,6 +1210,16 @@ "type": "color" } } + }, + "action-bar": { + "border": { + "value": "$action-bar.border.dark", + "type": "color" + }, + "background": { + "value": "$action-bar.background.dark", + "type": "color" + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index b4434249d0c..de1e4489d78 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1246,6 +1246,16 @@ "type": "color" } } + }, + "action-bar": { + "border": { + "value": "$action-bar.border.light", + "type": "color" + }, + "background": { + "value": "$action-bar.background.light", + "type": "color" + } } } } diff --git a/tokens/component/action-bar.json b/tokens/component/action-bar.json new file mode 100644 index 00000000000..65cb8169104 --- /dev/null +++ b/tokens/component/action-bar.json @@ -0,0 +1,105 @@ +{ + "action-bar": { + "font": { + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From 6f872ea860c81b3f78478723448a8948156c416b Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 8 Mar 2023 17:58:52 +0000 Subject: [PATCH 451/696] action bar --- tokens/$themes.json | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 19d123b5bcd..712b667d2b7 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/action-bar": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/action-bar": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/action-bar": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/action-bar": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -220,8 +216,7 @@ "component/textarea": "enabled", "component/tab-title": "enabled", "component/card": "enabled", - "component/tabs": "enabled", - "component/action-bar": "disabled" + "component/tabs": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", From 07757063d0da8d4639e2c5b5a413890a3968344e Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:02:50 +0000 Subject: [PATCH 452/696] action pad tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +++-- tokens/component/action-bar.json | 14 ----- tokens/component/action-pad.json | 105 +++++++++++++++++++++++++++++++ 4 files changed, 116 insertions(+), 19 deletions(-) create mode 100644 tokens/component/action-pad.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index e2f5a710fce..1d639068b71 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -37,6 +37,7 @@ "component/switch", "component/[template-comp-name]", "component/action-bar", + "component/action-pad", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/$themes.json b/tokens/$themes.json index 712b667d2b7..6d3b726a5cb 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/action-pad": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/action-pad": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/action-pad": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/action-pad": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -216,7 +220,8 @@ "component/textarea": "enabled", "component/tab-title": "enabled", "component/card": "enabled", - "component/tabs": "enabled" + "component/tabs": "enabled", + "component/action-pad": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/action-bar.json b/tokens/component/action-bar.json index 65cb8169104..4a6799bb4f8 100644 --- a/tokens/component/action-bar.json +++ b/tokens/component/action-bar.json @@ -1,19 +1,5 @@ { "action-bar": { - "font": { - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, "border": { "light": { "value": "$semantic.ui.color.border.1.light", diff --git a/tokens/component/action-pad.json b/tokens/component/action-pad.json new file mode 100644 index 00000000000..ec0f71fbc31 --- /dev/null +++ b/tokens/component/action-pad.json @@ -0,0 +1,105 @@ +{ + "action-pad": { + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "shadow": { + "sm": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "md": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "lg": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + } + } + } +} \ No newline at end of file From 1c94596df43b5807280c681c01670d22f4ed6a2e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 9 Mar 2023 15:20:43 +0100 Subject: [PATCH 453/696] Latest updates to stepper-item --- tokens/$metadata.json | 2 +- tokens/$themes.json | 3 +- tokens/calcite/dark.json | 2 +- tokens/calcite/light.json | 2 +- tokens/component/[template-comp-name].json | 2 +- tokens/component/stepper-item.json | 52 +++++++++++++++------- tokens/component/tab-title.json | 2 +- tokens/semantic.json | 2 +- 8 files changed, 43 insertions(+), 24 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 8dbf6888909..271d36fefe9 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -53,4 +53,4 @@ "brand/light", "brand/dark" ] -} +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index a0a1afad2b8..e27411a691d 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -137,7 +137,6 @@ "component/segmented-control": "source", "component/switch": "source", "component/stepper-item": "source" - }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -776,4 +775,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] +] \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index f56b8ec9cbb..8b5e8cd0b3a 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1233,4 +1233,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 97b89bff720..9da31fcfd2a 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1269,4 +1269,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 28be1f3d8f3..09df0d4a5e2 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index cf6419183c3..b967713c52f 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -20,6 +20,16 @@ "dark": { "value": "$semantic.ui.color.text.1.dark", "type": "color" + }, + "numbered": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "error": { @@ -28,8 +38,18 @@ "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.2.dark", "type": "color" + }, + "numbered": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } }, "complete": { @@ -62,7 +82,7 @@ "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "$semantic.ui.color.text.3.dark", "type": "color" } }, @@ -72,7 +92,7 @@ "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.2.dark", "type": "color" } }, @@ -82,7 +102,7 @@ "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.3.dark", "type": "color" } }, @@ -92,7 +112,7 @@ "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "$semantic.ui.color.text.3.dark", "type": "color" } }, @@ -112,7 +132,7 @@ "context": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.2.light", "type": "color" }, "dark": { @@ -126,23 +146,23 @@ "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.2.dark", "type": "color" } }, "error": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.2.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.2.dark", "type": "color" } }, "complete": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.2.light", "type": "color" }, "dark": { @@ -199,11 +219,11 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", "type": "color" } }, @@ -369,4 +389,4 @@ "type": "opacity" } } -} +} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 042fe740f66..6e0e9800f70 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -250,4 +250,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 3ac92afce5a..6f678e878b4 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1680,4 +1680,4 @@ } } } -} +} \ No newline at end of file From c2be17c29c7e4cbdafb18c334aae51466b88059d Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 9 Mar 2023 16:59:54 +0100 Subject: [PATCH 454/696] Latest updates to stepper-item --- tokens/component/stepper-item.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index b967713c52f..600680efc8c 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -214,6 +214,16 @@ "value": "$semantic.ui.color.danger.default.dark", "type": "color" } + }, + "complete": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "border": { @@ -246,6 +256,16 @@ "value": "$semantic.ui.color.danger.default.dark", "type": "color" } + }, + "complete": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "background": { From da6518b8c63b6cb24394030d9e7e2b40ee8e5c0c Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 9 Mar 2023 17:19:47 +0000 Subject: [PATCH 455/696] actions tokens --- tokens/$metadata.json | 6 +- tokens/$themes.json | 18 +++-- tokens/calcite/light.json | 30 ++++++++ tokens/component/action-bar-grid.json | 91 ++++++++++++++++++++++ tokens/component/action-pad-grid.json | 105 ++++++++++++++++++++++++++ 5 files changed, 243 insertions(+), 7 deletions(-) create mode 100644 tokens/component/action-bar-grid.json create mode 100644 tokens/component/action-pad-grid.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 1d639068b71..d0dc221fa06 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -5,6 +5,10 @@ "component/accordion-item", "component/accordion", "component/action", + "component/action-bar", + "component/action-bar-grid", + "component/action-pad", + "component/action-pad-grid", "component/alert", "component/avatar", "component/card", @@ -36,8 +40,6 @@ "component/tooltip", "component/switch", "component/[template-comp-name]", - "component/action-bar", - "component/action-pad", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/$themes.json b/tokens/$themes.json index 6d3b726a5cb..521810a5d3f 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -7,7 +7,8 @@ "semantic": "source", "brand/global": "enabled", "brand/light": "enabled", - "component/action-pad": "disabled" + "component/action-bar-grid": "disabled", + "component/action-pad-grid": "disabled" }, "$figmaStyleReferences": {} }, @@ -19,7 +20,8 @@ "semantic": "source", "brand/global": "enabled", "brand/dark": "enabled", - "component/action-pad": "disabled" + "component/action-bar-grid": "disabled", + "component/action-pad-grid": "disabled" }, "$figmaStyleReferences": {} }, @@ -38,7 +40,8 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/action-pad": "disabled" + "component/action-bar-grid": "disabled", + "component/action-pad-grid": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -116,7 +119,8 @@ "component/radio": "source", "component/rating": "source", "component/tooltip": "source", - "component/action-pad": "disabled" + "component/action-bar-grid": "disabled", + "component/action-pad-grid": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -221,7 +225,11 @@ "component/tab-title": "enabled", "component/card": "enabled", "component/tabs": "enabled", - "component/action-pad": "disabled" + "component/action-bar": "enabled", + "component/action": "enabled", + "component/action-pad": "enabled", + "component/action-bar-grid": "enabled", + "component/action-pad-grid": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index de1e4489d78..2764106040c 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1256,6 +1256,36 @@ "value": "$action-bar.background.light", "type": "color" } + }, + "action-pad": { + "border": { + "value": "$action-pad.border.light", + "type": "color" + }, + "background": { + "value": "$action-pad.background.light", + "type": "color" + } + }, + "action-bar-grid": { + "border": { + "value": "$action-bar-grid.border.light", + "type": "color" + }, + "background": { + "value": "$action-bar-grid.background.light", + "type": "color" + } + }, + "action-pad-grid": { + "border": { + "value": "$action-pad-grid.border.light", + "type": "color" + }, + "background": { + "value": "$action-pad-grid.background.light", + "type": "color" + } } } } diff --git a/tokens/component/action-bar-grid.json b/tokens/component/action-bar-grid.json new file mode 100644 index 00000000000..f6cb19c3db7 --- /dev/null +++ b/tokens/component/action-bar-grid.json @@ -0,0 +1,91 @@ +{ + "action-bar-grid": { + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/action-pad-grid.json b/tokens/component/action-pad-grid.json new file mode 100644 index 00000000000..f8e082ace07 --- /dev/null +++ b/tokens/component/action-pad-grid.json @@ -0,0 +1,105 @@ +{ + "action-pad-grid": { + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "shadow": { + "sm": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "md": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "lg": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + } + } + } +} \ No newline at end of file From 9d50ba550e9764faef2bdae804806b8c02a9f51d Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 9 Mar 2023 17:21:18 +0000 Subject: [PATCH 456/696] tokens --- tokens/$themes.json | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 521810a5d3f..9bcea17b402 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,9 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/action-bar-grid": "disabled", - "component/action-pad-grid": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -19,9 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/action-bar-grid": "disabled", - "component/action-pad-grid": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -39,9 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/action-bar-grid": "disabled", - "component/action-pad-grid": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -118,9 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/action-bar-grid": "disabled", - "component/action-pad-grid": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", From 29e1c92b597a10a3bb637d17620aa2c059018699 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 9 Mar 2023 23:14:25 +0100 Subject: [PATCH 457/696] Latest updates to stepper-item --- tokens/$metadata.json | 17 +- tokens/$themes.json | 51 +- tokens/calcite/dark.json | 42 +- tokens/calcite/light.json | 64 +- tokens/component/[template-comp-name].json | 2 +- tokens/component/accordion_backup_Copy.json | 238 -------- tokens/component/action-bar-grid.json | 91 +++ tokens/component/action-bar.json | 91 +++ tokens/component/action-pad-grid.json | 105 ++++ tokens/component/action-pad.json | 105 ++++ tokens/component/action.json | 86 +-- .../component/{pagination.json => block.json} | 2 +- tokens/component/button.json | 578 ------------------ tokens/component/combobox.json | 152 ----- tokens/component/dropdown.json | 177 ------ tokens/component/fab.json | 524 ---------------- tokens/component/link.json | 44 -- tokens/component/segmented-control.json | 154 ----- tokens/component/stepper-item.json | 412 ------------- tokens/component/stepper.json | 152 ----- tokens/component/tab-title.json | 4 +- tokens/component/tabs.json | 168 ++--- 22 files changed, 522 insertions(+), 2737 deletions(-) delete mode 100644 tokens/component/accordion_backup_Copy.json create mode 100644 tokens/component/action-bar-grid.json create mode 100644 tokens/component/action-bar.json create mode 100644 tokens/component/action-pad-grid.json create mode 100644 tokens/component/action-pad.json rename tokens/component/{pagination.json => block.json} (99%) delete mode 100644 tokens/component/button.json delete mode 100644 tokens/component/combobox.json delete mode 100644 tokens/component/dropdown.json delete mode 100644 tokens/component/fab.json delete mode 100644 tokens/component/link.json delete mode 100644 tokens/component/segmented-control.json delete mode 100644 tokens/component/stepper-item.json delete mode 100644 tokens/component/stepper.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 271d36fefe9..d41ab35ec83 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -5,15 +5,16 @@ "component/accordion-item", "component/accordion", "component/action", + "component/action-bar", + "component/action-bar-grid", + "component/action-pad", + "component/action-pad-grid", "component/alert", + "component/block", "component/avatar", - "component/button", - "component/fab", "component/card", "component/checkbox", "component/chip", - "component/combobox", - "component/dropdown", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -31,22 +32,16 @@ "component/textarea", "component/date-picker", "component/label", - "component/link", "component/loader", "component/radio", + "component/rating", "component/tab-title", "component/tabs", - "component/rating", "component/tip", "component/tooltip", - "component/pagination", - "component/segmented-control", - "component/stepper", - "component/stepper-item", "component/switch", "component/[template-comp-name]", "component/accordion_backup", - "component/accordion_backup_Copy", "calcite/light", "calcite/dark", "brand/global", diff --git a/tokens/$themes.json b/tokens/$themes.json index e27411a691d..82abde81eb4 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -25,29 +25,17 @@ "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", "name": "Calcite - Dark", "selectedTokenSets": { + "core": "source", + "semantic": "source", "calcite/dark": "enabled", + "component/label": "source", "component/avatar": "source", - "component/button": "source", "component/checkbox": "source", "component/chip": "source", - "component/color-picker": "source", - "component/combobox": "source", - "component/dropdown": "source", - "component/fab": "source", - "component/input-datetime-local": "source", - "component/label": "source", - "component/link": "source", "component/loader": "source", - "component/pagination": "source", "component/radio": "source", "component/rating": "source", - "component/segmented-control": "source", - "component/stepper-item": "source", - "component/stepper": "source", - "component/switch": "source", - "component/tooltip": "source", - "core": "source", - "semantic": "source" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -124,19 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/combobox": "source", - "component/button": "source", - "component/dropdown": "source", - "component/color-picker": "source", - "component/input-datetime-local": "source", - "component/link": "source", - "component/fab": "source", - "component/stepper": "source", - "component/pagination": "source", - "component/segmented-control": "source", - "component/switch": "source", - "component/stepper-item": "source" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -227,16 +203,7 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", - "component/combobox": "enabled", - "component/button": "enabled", - "component/dropdown": "enabled", "component/input-datetime-local": "enabled", - "component/link": "enabled", - "component/fab": "enabled", - "component/stepper": "enabled", - "component/pagination": "enabled", - "component/segmented-control": "enabled", - "component/stepper-item": "enabled", "component/input-email": "enabled", "component/input-file": "enabled", "component/input-month": "enabled", @@ -247,9 +214,15 @@ "component/input-text": "enabled", "component/input-week": "enabled", "component/textarea": "enabled", + "component/tab-title": "enabled", "component/card": "enabled", "component/tabs": "enabled", - "component/tab-title": "enabled" + "component/action-bar": "enabled", + "component/action": "enabled", + "component/action-pad": "enabled", + "component/action-bar-grid": "enabled", + "component/action-pad-grid": "enabled", + "component/block": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 8b5e8cd0b3a..502e4959565 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1192,42 +1192,32 @@ } }, "action": { - "background": { - "default": { - "value": "$action.background.default.light", - "type": "color" - }, - "active": { - "value": "$action.background.active.light", - "type": "color" - } - }, - "indicator": { - "value": "$action.indicator.light", - "type": "color" - }, "font": { - "default": { - "value": "$action.font.default.light", - "type": "color" - }, - "active": { - "value": "$action.font.active.light", - "type": "color" - } + "value": "$action.font.dark", + "type": "color" }, "icon": { + "value": "$action.icon.dark", + "type": "color" + }, + "background": { "default": { - "value": "$action.icon.default.light", + "value": "$action.background.default.dark", "type": "color" }, "active": { - "value": "$action.icon.active.light", + "value": "$action.background.active.dark", "type": "color" } + } + }, + "action-bar": { + "border": { + "value": "$action-bar.border.dark", + "type": "color" }, - "loader": { - "value": "$action.loader-icon.light", + "background": { + "value": "$action-bar.background.dark", "type": "color" } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 9da31fcfd2a..2764106040c 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1228,6 +1228,14 @@ } }, "action": { + "font": { + "value": "$action.font.light", + "type": "color" + }, + "icon": { + "value": "$action.icon.light", + "type": "color" + }, "background": { "default": { "value": "$action.background.default.light", @@ -1237,33 +1245,45 @@ "value": "$action.background.active.light", "type": "color" } + } + }, + "action-bar": { + "border": { + "value": "$action-bar.border.light", + "type": "color" }, - "indicator": { - "value": "$action.indicator.light", + "background": { + "value": "$action-bar.background.light", + "type": "color" + } + }, + "action-pad": { + "border": { + "value": "$action-pad.border.light", "type": "color" }, - "font": { - "default": { - "value": "$action.font.default.light", - "type": "color" - }, - "active": { - "value": "$action.font.active.light", - "type": "color" - } + "background": { + "value": "$action-pad.background.light", + "type": "color" + } + }, + "action-bar-grid": { + "border": { + "value": "$action-bar-grid.border.light", + "type": "color" }, - "icon": { - "default": { - "value": "$action.icon.default.light", - "type": "color" - }, - "active": { - "value": "$action.icon.active.light", - "type": "color" - } + "background": { + "value": "$action-bar-grid.background.light", + "type": "color" + } + }, + "action-pad-grid": { + "border": { + "value": "$action-pad-grid.border.light", + "type": "color" }, - "loader": { - "value": "$action.loader-icon.light", + "background": { + "value": "$action-pad-grid.background.light", "type": "color" } } diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 09df0d4a5e2..bf4896dbc5a 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -10,7 +10,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "$semantic.font.default.bold.-3h", "type": "typography" }, "md": { diff --git a/tokens/component/accordion_backup_Copy.json b/tokens/component/accordion_backup_Copy.json deleted file mode 100644 index 5a67f8416b4..00000000000 --- a/tokens/component/accordion_backup_Copy.json +++ /dev/null @@ -1,238 +0,0 @@ -{ - "accordion": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "expanded": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "default": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - } - } - }, - "minimal": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.none}", - "type": "spacing" - } - } - } - }, - "border-width": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/action-bar-grid.json b/tokens/component/action-bar-grid.json new file mode 100644 index 00000000000..f6cb19c3db7 --- /dev/null +++ b/tokens/component/action-bar-grid.json @@ -0,0 +1,91 @@ +{ + "action-bar-grid": { + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/action-bar.json b/tokens/component/action-bar.json new file mode 100644 index 00000000000..4a6799bb4f8 --- /dev/null +++ b/tokens/component/action-bar.json @@ -0,0 +1,91 @@ +{ + "action-bar": { + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/action-pad-grid.json b/tokens/component/action-pad-grid.json new file mode 100644 index 00000000000..f8e082ace07 --- /dev/null +++ b/tokens/component/action-pad-grid.json @@ -0,0 +1,105 @@ +{ + "action-pad-grid": { + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "shadow": { + "sm": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "md": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "lg": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/action-pad.json b/tokens/component/action-pad.json new file mode 100644 index 00000000000..ec0f71fbc31 --- /dev/null +++ b/tokens/component/action-pad.json @@ -0,0 +1,105 @@ +{ + "action-pad": { + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "shadow": { + "sm": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "md": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "lg": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/action.json b/tokens/component/action.json index 1903170631b..f1895d8666a 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -1,6 +1,14 @@ { "action": { "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, "sm": { "value": "$semantic.font.default.regular.-2h", "type": "typography" @@ -12,48 +20,16 @@ "lg": { "value": "$semantic.font.default.regular.0h", "type": "typography" - }, - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } } }, "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" } }, "background": { @@ -144,40 +120,6 @@ "type": "composition" } } - }, - "indicator-size": { - "sm": { - "value": "$core.sizing.3", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.3", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.3", - "type": "sizing" - } - }, - "indicator": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "loader-icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } } } } \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/block.json similarity index 99% rename from tokens/component/pagination.json rename to tokens/component/block.json index 8525fb9be8a..bf4896dbc5a 100644 --- a/tokens/component/pagination.json +++ b/tokens/component/block.json @@ -1,5 +1,5 @@ { - "pagination": { + "[comp-name]": { "font": { "light": { "value": "$semantic.ui.color.text.3.light", diff --git a/tokens/component/button.json b/tokens/component/button.json deleted file mode 100644 index 5669c1ba910..00000000000 --- a/tokens/component/button.json +++ /dev/null @@ -1,578 +0,0 @@ -{ - "button": { - "font": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "icon": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - } - }, - "border": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline-fill": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "background": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json deleted file mode 100644 index 8d724bffabd..00000000000 --- a/tokens/component/combobox.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "combobox": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json deleted file mode 100644 index b4e2f0a5bb1..00000000000 --- a/tokens/component/dropdown.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "dropdown": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json deleted file mode 100644 index 1c3606de43d..00000000000 --- a/tokens/component/fab.json +++ /dev/null @@ -1,524 +0,0 @@ -{ - "fab": { - "font": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "icon": { - "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "outline": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - } - }, - "border": { - "brand": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "danger": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "background": { - "brand": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "danger": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json deleted file mode 100644 index 4bd7249b874..00000000000 --- a/tokens/component/link.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "link": { - "font": { - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - }, - "regular": { - "value": "$semantic.font.wrap.regular.0", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "bottom": { - "border-width": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json deleted file mode 100644 index b661574f032..00000000000 --- a/tokens/component/segmented-control.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "segmented-control": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "checked": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json deleted file mode 100644 index 600680efc8c..00000000000 --- a/tokens/component/stepper-item.json +++ /dev/null @@ -1,412 +0,0 @@ -{ - "stepper-item": { - "font": { - "heading": { - "default": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "numbered": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "error": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "numbered": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "complete": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.1h", - "type": "typography" - } - }, - "description": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "error": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "complete": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "context": { - "default": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "error": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "complete": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "error": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "complete": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "border": { - "default": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "error": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, - "complete": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "left": { - "sm": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.none", - "type": "spacing" - } - }, - "right": { - "sm": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.8", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.8", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.9", - "type": "spacing" - } - } - }, - "disabled": { - "value": "{core.opacity.50}", - "type": "opacity" - } - } -} \ No newline at end of file diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json deleted file mode 100644 index 76ca139ef90..00000000000 --- a/tokens/component/stepper.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "stepper": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 6e0e9800f70..1696efd71e3 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -70,7 +70,7 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.background.light", "type": "color" }, "dark": { @@ -90,7 +90,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "$core.spacing.1", "type": "spacing" } }, diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index 78f91e3e9bc..ec3ebc8abf8 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -1,61 +1,5 @@ { "tabs": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "active": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, "bordered": { "border": { "light": { @@ -74,7 +18,7 @@ "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } } @@ -86,7 +30,7 @@ "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "$core.spacing.3", "type": "spacing" }, "lg": { @@ -96,32 +40,32 @@ }, "top-bottom": { "sm": { - "value": "$core.spacing.1", + "value": "$core.spacing.7", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "$core.spacing.7", "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "$core.spacing.10", "type": "spacing" } } - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } } }, "border-width": { @@ -136,63 +80,21 @@ "lg": { "value": "$core.border.border-width.0", "type": "borderWidth" - }, - "active": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - } - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" } }, "default": { "space-around": { "left-right": { "sm": { - "value": "$core.spacing.1", + "value": "$core.spacing.none", "type": "spacing" }, "md": { - "value": "$core.spacing.1", + "value": "$core.spacing.none", "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "$core.spacing.none", "type": "spacing" } }, @@ -206,10 +108,24 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "$core.spacing.5", "type": "spacing" } } + }, + "space-between": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.8", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.9", + "type": "spacing" + } } }, "[specific-element]": { @@ -236,18 +152,6 @@ "type": "composition" } } - }, - "border": { - "active": { - "light": { - "value": "{semantic.ui.color.brand.default.light}", - "type": "color" - }, - "dark": { - "value": "{semantic.ui.color.brand.default.dark}", - "type": "color" - } - } } } } \ No newline at end of file From 07ac86fa0eaf51548f66149e339a5465a4300fb5 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 13 Mar 2023 12:17:29 +0000 Subject: [PATCH 458/696] block tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++- tokens/component/block.json | 205 ++++++++++++++++++++++++++++++++++++ 3 files changed, 216 insertions(+), 5 deletions(-) create mode 100644 tokens/component/block.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index d0dc221fa06..be871e2092f 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -11,6 +11,7 @@ "component/action-pad-grid", "component/alert", "component/avatar", + "component/block", "component/card", "component/checkbox", "component/chip", diff --git a/tokens/$themes.json b/tokens/$themes.json index 9bcea17b402..b90e7c2bf17 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/block": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/block": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/block": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/block": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -221,7 +225,8 @@ "component/action": "enabled", "component/action-pad": "enabled", "component/action-bar-grid": "enabled", - "component/action-pad-grid": "enabled" + "component/action-pad-grid": "enabled", + "component/block": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/block.json b/tokens/component/block.json new file mode 100644 index 00000000000..e5fa9505523 --- /dev/null +++ b/tokens/component/block.json @@ -0,0 +1,205 @@ +{ + "block": { + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } + }, + "dscription": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "content": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + } + }, + "description": { + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + } + } + }, + "icon": { + "idle": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "valid": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-around": { + "block": { + "top-down-left": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "right": { + "md": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + }, + "block-content": { + "right-left": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "top-down": { + "md": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "chevron-size": { + "md": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "drag-size": { + "md": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "drag-handle": { + "space-around": { + "dragg": { + "right-left": { + "md": { + "value": "$core.spacing.1", + "type": "spacing" + } + } + } + } + } + } +} \ No newline at end of file From e5990a9b1d6abac7c3c625fac0ebc756804096c9 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 13 Mar 2023 13:16:31 +0000 Subject: [PATCH 459/696] block color tokens --- tokens/$themes.json | 12 ++--- tokens/calcite/light.json | 92 +++++++++++++++++++++++++++++++++++++ tokens/component/block.json | 32 ++++++++++--- 3 files changed, 121 insertions(+), 15 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index b90e7c2bf17..82abde81eb4 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/block": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/block": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/block": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/block": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 2764106040c..d50dcc265b5 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1286,6 +1286,98 @@ "value": "$action-pad-grid.background.light", "type": "color" } + }, + "block": { + "font": { + "heading": { + "value": "$block.font.heading.light", + "type": "color" + }, + "description": { + "value": "$block.font.description.light", + "type": "color" + }, + "content": { + "value": "$block.font.content.light", + "type": "color" + } + }, + "icon": { + "idle": { + "value": "$block.icon.idle.light", + "type": "color" + }, + "valid": { + "value": "$block.icon.valid.light", + "type": "color" + }, + "invalid": { + "value": "$block.icon.invalid.light", + "type": "color" + }, + "drag-handle": { + "value": "$block.icon.drag-handle.light", + "type": "color" + }, + "chevron": { + "value": "$block.icon.chevron.light", + "type": "color" + } + }, + "border": { + "value": "$block.border.light", + "type": "color" + }, + "background": { + "value": "$block.background.light", + "type": "color" + } + } + }, + "block": { + "font": { + "heading": { + "value": "$block.font.heading.light", + "type": "color" + }, + "description": { + "value": "$block.font.description.light", + "type": "color" + }, + "content": { + "value": "$block.font.content.light", + "type": "color" + } + }, + "icon": { + "idle": { + "value": "$block.icon.idle.light", + "type": "color" + }, + "valid": { + "value": "$block.icon.valid.light", + "type": "color" + }, + "invalid": { + "value": "$block.icon.invalid.light", + "type": "color" + }, + "drag-handle": { + "value": "$block.icon.drag-handle.light", + "type": "color" + }, + "chevron": { + "value": "$block.icon.chevron.light", + "type": "color" + } + }, + "border": { + "value": "$block.border.light", + "type": "color" + }, + "background": { + "value": "$block.background.light", + "type": "color" } } } diff --git a/tokens/component/block.json b/tokens/component/block.json index e5fa9505523..b9aa4ffe2fd 100644 --- a/tokens/component/block.json +++ b/tokens/component/block.json @@ -15,7 +15,7 @@ "type": "typography" } }, - "dscription": { + "description": { "light": { "value": "$semantic.ui.color.text.3.light", "type": "color" @@ -23,6 +23,10 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" + }, + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" } }, "content": { @@ -38,12 +42,6 @@ "value": "$semantic.font.default.regular.-1h", "type": "typography" } - }, - "description": { - "md": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - } } }, "icon": { @@ -76,6 +74,26 @@ "value": "$semantic.ui.color.danger.default.dark", "type": "color" } + }, + "drag-handle": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "chevron": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } } }, "border": { From d08eacbed7f9e985872f537d197c0bf060f26794 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 13 Mar 2023 13:36:17 +0000 Subject: [PATCH 460/696] color tokens clock --- tokens/component/block.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/component/block.json b/tokens/component/block.json index b9aa4ffe2fd..fb41f9d3a45 100644 --- a/tokens/component/block.json +++ b/tokens/component/block.json @@ -197,7 +197,7 @@ }, "chevron-size": { "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" } }, From 34a0860b1d5e25a4bf2b1e22496c831b2fdd6466 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 15 Mar 2023 19:25:57 +0000 Subject: [PATCH 461/696] block-section tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/component/block-section.json | 223 ++++++++++++++++++++++++++++ 3 files changed, 234 insertions(+), 5 deletions(-) create mode 100644 tokens/component/block-section.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index be871e2092f..30c8c86ff4e 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -12,6 +12,7 @@ "component/alert", "component/avatar", "component/block", + "component/block-section", "component/card", "component/checkbox", "component/chip", diff --git a/tokens/$themes.json b/tokens/$themes.json index 82abde81eb4..dc4ca898314 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/block-section": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/block-section": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/block-section": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/block-section": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -222,7 +226,8 @@ "component/action-pad": "enabled", "component/action-bar-grid": "enabled", "component/action-pad-grid": "enabled", - "component/block": "enabled" + "component/block": "enabled", + "component/block-section": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/block-section.json b/tokens/component/block-section.json new file mode 100644 index 00000000000..31a8efbace2 --- /dev/null +++ b/tokens/component/block-section.json @@ -0,0 +1,223 @@ +{ + "block": { + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } + }, + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + } + }, + "content": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + } + } + }, + "icon": { + "idle": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "valid": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "drag-handle": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "chevron": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-around": { + "block": { + "top-down-left": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "right": { + "md": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + }, + "block-content": { + "right-left": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "top-down": { + "md": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "chevron-size": { + "md": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "drag-size": { + "md": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "drag-handle": { + "space-around": { + "dragg": { + "right-left": { + "md": { + "value": "$core.spacing.1", + "type": "spacing" + } + } + } + } + } + } +} \ No newline at end of file From 62b646a84060c0d11f0b326127cc39fa6644c662 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Wed, 15 Mar 2023 19:33:38 +0000 Subject: [PATCH 462/696] block section tokens --- tokens/$themes.json | 12 ++++------ tokens/component/block-section.json | 34 ++++++++++------------------- 2 files changed, 16 insertions(+), 30 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index dc4ca898314..3cc5a62ab87 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/block-section": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/block-section": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/block-section": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/block-section": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", diff --git a/tokens/component/block-section.json b/tokens/component/block-section.json index 31a8efbace2..78edfc4452a 100644 --- a/tokens/component/block-section.json +++ b/tokens/component/block-section.json @@ -1,5 +1,5 @@ { - "block": { + "block-section": { "font": { "heading": { "light": { @@ -136,23 +136,17 @@ }, "space-between": { "md": { - "value": "$core.spacing.5", + "value": "$core.spacing.none", "type": "spacing" } }, "space-around": { - "block": { - "top-down-left": { + "block-text": { + "right-left": { "md": { "value": "$core.spacing.5", "type": "spacing" } - }, - "right": { - "md": { - "value": "$core.spacing.7", - "type": "spacing" - } } }, "block-content": { @@ -168,6 +162,14 @@ "type": "spacing" } } + }, + "block-section": { + "top-down": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + } } }, "[specific-element]": { @@ -206,18 +208,6 @@ "value": "$core.sizing.9", "type": "sizing" } - }, - "drag-handle": { - "space-around": { - "dragg": { - "right-left": { - "md": { - "value": "$core.spacing.1", - "type": "spacing" - } - } - } - } } } } \ No newline at end of file From 2156332e0978c79895177e9aa301b968daa06fb8 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 16 Mar 2023 12:18:55 +0000 Subject: [PATCH 463/696] colors tokens --- tokens/calcite/dark.json | 100 ++++++++++++++++++++++++++++ tokens/calcite/light.json | 58 +++++----------- tokens/component/block-section.json | 98 ++++----------------------- 3 files changed, 130 insertions(+), 126 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 502e4959565..cb60859c535 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1220,6 +1220,106 @@ "value": "$action-bar.background.dark", "type": "color" } + }, + "action-pad": { + "border": { + "value": "$action-pad.border.dark", + "type": "color" + }, + "background": { + "value": "$action-pad.background.dark", + "type": "color" + } + }, + "action-bar-grid": { + "border": { + "value": "$action-bar-grid.border.dark", + "type": "color" + }, + "background": { + "value": "$action-bar-grid.background.dark", + "type": "color" + } + }, + "action-pad-grid": { + "border": { + "value": "$action-pad-grid.border.dark", + "type": "color" + }, + "background": { + "value": "$action-pad-grid.background.dark", + "type": "color" + } + }, + "block": { + "font": { + "heading": { + "value": "$block.font.heading.dark", + "type": "color" + }, + "description": { + "value": "$block.font.description.dark", + "type": "color" + }, + "content": { + "value": "$block.font.content.dark", + "type": "color" + } + }, + "icon": { + "idle": { + "value": "$block.icon.idle.dark", + "type": "color" + }, + "valid": { + "value": "$block.icon.valid.dark", + "type": "color" + }, + "invalid": { + "value": "$block.icon.invalid.dark", + "type": "color" + }, + "drag-handle": { + "value": "$block.icon.drag-handle.dark", + "type": "color" + }, + "chevron": { + "value": "$block.icon.chevron.dark", + "type": "color" + } + }, + "border": { + "value": "$block.border.light", + "type": "color" + }, + "background": { + "value": "$block.background.dark", + "type": "color" + } + }, + "block-section": { + "font": { + "value": "$block-section.font.dark", + "type": "color" + }, + "icon": { + "valid": { + "value": "$block-section.icon.valid.dark", + "type": "color" + }, + "invalid": { + "value": "$block-section.icon.invalid.dark", + "type": "color" + }, + "chevron": { + "value": "$block-section.icon.chevron.dark", + "type": "color" + } + }, + "background": { + "value": "$block-section.background.dark", + "type": "color" + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index d50dcc265b5..3741b3bcf6e 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1332,52 +1332,30 @@ "value": "$block.background.light", "type": "color" } - } - }, - "block": { - "font": { - "heading": { - "value": "$block.font.heading.light", - "type": "color" - }, - "description": { - "value": "$block.font.description.light", - "type": "color" - }, - "content": { - "value": "$block.font.content.light", - "type": "color" - } }, - "icon": { - "idle": { - "value": "$block.icon.idle.light", - "type": "color" - }, - "valid": { - "value": "$block.icon.valid.light", - "type": "color" - }, - "invalid": { - "value": "$block.icon.invalid.light", + "block-section": { + "font": { + "value": "$block-section.font.light", "type": "color" }, - "drag-handle": { - "value": "$block.icon.drag-handle.light", - "type": "color" + "icon": { + "valid": { + "value": "$block-section.icon.valid.light", + "type": "color" + }, + "invalid": { + "value": "$block-section.icon.invalid.light", + "type": "color" + }, + "chevron": { + "value": "$block-section.icon.chevron.light", + "type": "color" + } }, - "chevron": { - "value": "$block.icon.chevron.light", + "background": { + "value": "$block-section.background.light", "type": "color" } - }, - "border": { - "value": "$block.border.light", - "type": "color" - }, - "background": { - "value": "$block.background.light", - "type": "color" } } } diff --git a/tokens/component/block-section.json b/tokens/component/block-section.json index 78edfc4452a..13fb99e861f 100644 --- a/tokens/component/block-section.json +++ b/tokens/component/block-section.json @@ -1,60 +1,20 @@ { "block-section": { "font": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - } + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "md": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - } + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" }, - "content": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - } + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" } }, "icon": { - "idle": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - }, "valid": { "light": { "value": "$semantic.ui.color.success.default.light", @@ -75,16 +35,6 @@ "type": "color" } }, - "drag-handle": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, "chevron": { "light": { "value": "$semantic.ui.color.text.3.light", @@ -96,16 +46,6 @@ } } }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, "background": { "light": { "value": "$semantic.ui.color.foreground.1.light", @@ -150,17 +90,9 @@ } }, "block-content": { - "right-left": { - "md": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "top-down": { - "md": { - "value": "$core.spacing.3", - "type": "spacing" - } + "md": { + "value": "$core.spacing.none", + "type": "spacing" } }, "block-section": { @@ -202,12 +134,6 @@ "value": "$core.sizing.7", "type": "sizing" } - }, - "drag-size": { - "md": { - "value": "$core.sizing.9", - "type": "sizing" - } } } } \ No newline at end of file From b72b234f9fcc04a55887c87bab001303370162ea Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 16 Mar 2023 12:35:35 +0000 Subject: [PATCH 464/696] block section corretions --- tokens/component/block-section.json | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/tokens/component/block-section.json b/tokens/component/block-section.json index 13fb99e861f..5910a5c22f0 100644 --- a/tokens/component/block-section.json +++ b/tokens/component/block-section.json @@ -10,7 +10,7 @@ "type": "color" }, "md": { - "value": "$semantic.font.default.medium.-1h", + "value": "$semantic.font.wrap.medium.-1", "type": "typography" } }, @@ -62,12 +62,6 @@ "type": "borderRadius" } }, - "border-width": { - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, "icon-size": { "md": { "value": "$core.sizing.7", @@ -96,12 +90,28 @@ } }, "block-section": { - "top-down": { + "top-bottom": { "md": { "value": "$core.spacing.5", "type": "spacing" } } + }, + "icon": { + "left": { + "md": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "switch": { + "left": { + "md": { + "value": "$core.spacing.1", + "type": "spacing" + } + } } }, "[specific-element]": { From 770d4497e1ebce076b48a06314e007c746d08411 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 16 Mar 2023 12:50:34 +0000 Subject: [PATCH 465/696] notice tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/component/notice.json | 258 +++++++++++++++++++++++++++++++++++ 3 files changed, 269 insertions(+), 5 deletions(-) create mode 100644 tokens/component/notice.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 30c8c86ff4e..30f7c6cc486 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -30,6 +30,7 @@ "component/input-time", "component/input-text", "component/input-week", + "component/notice", "component/textarea", "component/date-picker", "component/label", diff --git a/tokens/$themes.json b/tokens/$themes.json index 3cc5a62ab87..54737c0df64 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/notice": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/notice": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/notice": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/notice": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -223,7 +227,8 @@ "component/action-bar-grid": "enabled", "component/action-pad-grid": "enabled", "component/block": "enabled", - "component/block-section": "enabled" + "component/block-section": "enabled", + "component/notice": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/notice.json b/tokens/component/notice.json new file mode 100644 index 00000000000..698b1e3e623 --- /dev/null +++ b/tokens/component/notice.json @@ -0,0 +1,258 @@ +{ + "alert": { + "font": { + "title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.1h", + "type": "typography" + } + }, + "message": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "icon": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "highlight": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "space-between": { + "sm": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "space-around": { + "top": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "bottom": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "left": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + } + }, + "shadow": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + } + } +} \ No newline at end of file From c104967b2612ddef0802ac9fd6acc209564e096d Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Fri, 17 Mar 2023 15:30:33 +0100 Subject: [PATCH 466/696] Error test --- tokens/$metadata.json | 4 +- tokens/$themes.json | 4 +- tokens/calcite/dark.json | 100 +++++++++++ tokens/calcite/light.json | 70 ++++++++ tokens/component/block-section.json | 149 ++++++++++++++++ tokens/component/block.json | 244 +++++++++++++++----------- tokens/component/notice.json | 258 ++++++++++++++++++++++++++++ 7 files changed, 728 insertions(+), 101 deletions(-) create mode 100644 tokens/component/block-section.json create mode 100644 tokens/component/notice.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index d41ab35ec83..30f7c6cc486 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -10,8 +10,9 @@ "component/action-pad", "component/action-pad-grid", "component/alert", - "component/block", "component/avatar", + "component/block", + "component/block-section", "component/card", "component/checkbox", "component/chip", @@ -29,6 +30,7 @@ "component/input-time", "component/input-text", "component/input-week", + "component/notice", "component/textarea", "component/date-picker", "component/label", diff --git a/tokens/$themes.json b/tokens/$themes.json index 82abde81eb4..a061ba6323e 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -222,7 +222,9 @@ "component/action-pad": "enabled", "component/action-bar-grid": "enabled", "component/action-pad-grid": "enabled", - "component/block": "enabled" + "component/block": "enabled", + "component/block-section": "enabled", + "component/notice": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 502e4959565..cb60859c535 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1220,6 +1220,106 @@ "value": "$action-bar.background.dark", "type": "color" } + }, + "action-pad": { + "border": { + "value": "$action-pad.border.dark", + "type": "color" + }, + "background": { + "value": "$action-pad.background.dark", + "type": "color" + } + }, + "action-bar-grid": { + "border": { + "value": "$action-bar-grid.border.dark", + "type": "color" + }, + "background": { + "value": "$action-bar-grid.background.dark", + "type": "color" + } + }, + "action-pad-grid": { + "border": { + "value": "$action-pad-grid.border.dark", + "type": "color" + }, + "background": { + "value": "$action-pad-grid.background.dark", + "type": "color" + } + }, + "block": { + "font": { + "heading": { + "value": "$block.font.heading.dark", + "type": "color" + }, + "description": { + "value": "$block.font.description.dark", + "type": "color" + }, + "content": { + "value": "$block.font.content.dark", + "type": "color" + } + }, + "icon": { + "idle": { + "value": "$block.icon.idle.dark", + "type": "color" + }, + "valid": { + "value": "$block.icon.valid.dark", + "type": "color" + }, + "invalid": { + "value": "$block.icon.invalid.dark", + "type": "color" + }, + "drag-handle": { + "value": "$block.icon.drag-handle.dark", + "type": "color" + }, + "chevron": { + "value": "$block.icon.chevron.dark", + "type": "color" + } + }, + "border": { + "value": "$block.border.light", + "type": "color" + }, + "background": { + "value": "$block.background.dark", + "type": "color" + } + }, + "block-section": { + "font": { + "value": "$block-section.font.dark", + "type": "color" + }, + "icon": { + "valid": { + "value": "$block-section.icon.valid.dark", + "type": "color" + }, + "invalid": { + "value": "$block-section.icon.invalid.dark", + "type": "color" + }, + "chevron": { + "value": "$block-section.icon.chevron.dark", + "type": "color" + } + }, + "background": { + "value": "$block-section.background.dark", + "type": "color" + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 2764106040c..3741b3bcf6e 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1286,6 +1286,76 @@ "value": "$action-pad-grid.background.light", "type": "color" } + }, + "block": { + "font": { + "heading": { + "value": "$block.font.heading.light", + "type": "color" + }, + "description": { + "value": "$block.font.description.light", + "type": "color" + }, + "content": { + "value": "$block.font.content.light", + "type": "color" + } + }, + "icon": { + "idle": { + "value": "$block.icon.idle.light", + "type": "color" + }, + "valid": { + "value": "$block.icon.valid.light", + "type": "color" + }, + "invalid": { + "value": "$block.icon.invalid.light", + "type": "color" + }, + "drag-handle": { + "value": "$block.icon.drag-handle.light", + "type": "color" + }, + "chevron": { + "value": "$block.icon.chevron.light", + "type": "color" + } + }, + "border": { + "value": "$block.border.light", + "type": "color" + }, + "background": { + "value": "$block.background.light", + "type": "color" + } + }, + "block-section": { + "font": { + "value": "$block-section.font.light", + "type": "color" + }, + "icon": { + "valid": { + "value": "$block-section.icon.valid.light", + "type": "color" + }, + "invalid": { + "value": "$block-section.icon.invalid.light", + "type": "color" + }, + "chevron": { + "value": "$block-section.icon.chevron.light", + "type": "color" + } + }, + "background": { + "value": "$block-section.background.light", + "type": "color" + } } } } diff --git a/tokens/component/block-section.json b/tokens/component/block-section.json new file mode 100644 index 00000000000..5910a5c22f0 --- /dev/null +++ b/tokens/component/block-section.json @@ -0,0 +1,149 @@ +{ + "block-section": { + "font": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.wrap.medium.-1", + "type": "typography" + } + }, + "icon": { + "valid": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "chevron": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "md": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "block-text": { + "right-left": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "block-content": { + "md": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "block-section": { + "top-bottom": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "icon": { + "left": { + "md": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "switch": { + "left": { + "md": { + "value": "$core.spacing.1", + "type": "spacing" + } + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "chevron-size": { + "md": { + "value": "$core.sizing.7", + "type": "sizing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/block.json b/tokens/component/block.json index bf4896dbc5a..fb41f9d3a45 100644 --- a/tokens/component/block.json +++ b/tokens/component/block.json @@ -1,151 +1,173 @@ { - "[comp-name]": { + "block": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" + "heading": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" + "description": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + } }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" + "content": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + } } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "idle": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "valid": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "invalid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "drag-handle": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "chevron": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.text.3.dark}", + "type": "color" + } } }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "$semantic.ui.color.border.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "$semantic.ui.color.border.3.dark", "type": "color" } }, "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "$semantic.ui.color.background.dark", "type": "color" } }, "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" } }, "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, "md": { "value": "$core.sizing.9", "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" } }, "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.5", "type": "spacing" } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "block": { + "top-down-left": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "right": { + "md": { + "value": "$core.spacing.7", + "type": "spacing" + } + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "block-content": { + "right-left": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "top-down": { + "md": { + "value": "$core.spacing.3", + "type": "spacing" + } + } } }, "[specific-element]": { @@ -172,6 +194,30 @@ "type": "composition" } } + }, + "chevron-size": { + "md": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "drag-size": { + "md": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "drag-handle": { + "space-around": { + "dragg": { + "right-left": { + "md": { + "value": "$core.spacing.1", + "type": "spacing" + } + } + } + } } } } \ No newline at end of file diff --git a/tokens/component/notice.json b/tokens/component/notice.json new file mode 100644 index 00000000000..698b1e3e623 --- /dev/null +++ b/tokens/component/notice.json @@ -0,0 +1,258 @@ +{ + "alert": { + "font": { + "title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.1h", + "type": "typography" + } + }, + "message": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "icon": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "highlight": { + "blue": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "green": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "yellow": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + }, + "red": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "space-between": { + "sm": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "space-around": { + "top": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "bottom": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "left": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "{core.spacing.4}", + "type": "spacing" + }, + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + }, + "lg": { + "value": "{core.spacing.8}", + "type": "spacing" + } + } + }, + "shadow": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + } + } +} \ No newline at end of file From 41c0311bdb02499e0dc960bb809f02ee7fbd62fb Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Sat, 18 Mar 2023 16:33:28 +0000 Subject: [PATCH 467/696] notice tokens --- tokens/$themes.json | 12 ++--- tokens/component/notice.json | 92 ++++++++++++++++-------------------- 2 files changed, 44 insertions(+), 60 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 54737c0df64..a061ba6323e 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/notice": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/notice": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/notice": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/notice": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", diff --git a/tokens/component/notice.json b/tokens/component/notice.json index 698b1e3e623..21ae420c8e5 100644 --- a/tokens/component/notice.json +++ b/tokens/component/notice.json @@ -1,5 +1,5 @@ { - "alert": { + "notice": { "font": { "title": { "light": { @@ -11,29 +11,29 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-1h", + "value": "$semantic.font.wrap.medium.-1", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.0h", + "value": "$semantic.font.wrap.medium.0", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.1h", + "value": "$semantic.font.wrap.medium.1", "type": "typography" } }, "message": { "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "$semantic.font.wrap.regular.-1", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "$semantic.font.wrap.regular.-1", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "$semantic.font.wrap.regular.0", "type": "typography" }, "light": { @@ -56,27 +56,17 @@ "type": "color" } }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, "border-radius": { "sm": { - "value": "$core.border.border-radius.1", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.1", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.1", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, @@ -178,81 +168,79 @@ } } }, - "space-between": { - "sm": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.7}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.8}", - "type": "spacing" - } - }, - "space-around": { - "top": { + "content": { + "space-between": { "sm": { - "value": "{core.spacing.4}", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "{core.spacing.5}", + "value": "$core.spacing.1", "type": "spacing" }, "lg": { - "value": "{core.spacing.8}", + "value": "$core.spacing.1", "type": "spacing" } - }, - "bottom": { + } + }, + "space-around": { + "top-bottom": { "sm": { - "value": "{core.spacing.4}", + "value": "$core.spacing.4", "type": "spacing" }, "md": { - "value": "{core.spacing.5}", + "value": "$core.spacing.6", "type": "spacing" }, "lg": { - "value": "{core.spacing.8}", + "value": "$core.spacing.7", "type": "spacing" } }, "left": { "sm": { - "value": "{core.spacing.4}", + "value": "$core.spacing.5", "type": "spacing" }, "md": { - "value": "{core.spacing.5}", + "value": "$core.spacing.7", "type": "spacing" }, "lg": { - "value": "{core.spacing.8}", + "value": "$core.spacing.8", "type": "spacing" } }, "right": { "sm": { - "value": "{core.spacing.4}", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "{core.spacing.5}", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "{core.spacing.8}", + "value": "$core.spacing.7", "type": "spacing" } } }, "shadow": { - "value": "{core.box-shadow.2}", - "type": "boxShadow" + "sm": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "md": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "lg": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + } } } } \ No newline at end of file From 372adcd500ffe13ed4dbd77ff986ab3815bd9de2 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 20 Mar 2023 14:29:29 +0000 Subject: [PATCH 468/696] notice token --- tokens/calcite/light.json | 16 ++++++++++++++++ tokens/component/notice.json | 36 ++++++++++++++++++++++++++++-------- 2 files changed, 44 insertions(+), 8 deletions(-) diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 3741b3bcf6e..6d7bfa15e1d 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1356,6 +1356,22 @@ "value": "$block-section.background.light", "type": "color" } + }, + "notice": { + "font": { + "title": { + "value": "$notice.font.title.light", + "type": "color" + }, + "message": { + "value": "$notice.font.message.light", + "type": "color" + } + }, + "background": { + "value": "$notice.background.light", + "type": "color" + } } } } diff --git a/tokens/component/notice.json b/tokens/component/notice.json index 21ae420c8e5..4298c26d3a7 100644 --- a/tokens/component/notice.json +++ b/tokens/component/notice.json @@ -85,7 +85,7 @@ } }, "icon": { - "blue": { + "info": { "light": { "value": "$semantic.ui.color.info.default.light", "type": "color" @@ -95,7 +95,7 @@ "type": "color" } }, - "green": { + "success": { "light": { "value": "$semantic.ui.color.success.default.light", "type": "color" @@ -105,7 +105,7 @@ "type": "color" } }, - "yellow": { + "warning": { "light": { "value": "$semantic.ui.color.warning.default.light", "type": "color" @@ -115,7 +115,7 @@ "type": "color" } }, - "red": { + "danger": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -124,10 +124,20 @@ "value": "$semantic.ui.color.danger.default.dark", "type": "color" } + }, + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "highlight": { - "blue": { + "info": { "light": { "value": "$semantic.ui.color.info.default.light", "type": "color" @@ -137,7 +147,7 @@ "type": "color" } }, - "green": { + "success": { "light": { "value": "$semantic.ui.color.success.default.light", "type": "color" @@ -147,7 +157,7 @@ "type": "color" } }, - "yellow": { + "warning": { "light": { "value": "$semantic.ui.color.warning.default.light", "type": "color" @@ -157,7 +167,7 @@ "type": "color" } }, - "red": { + "danger": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -166,6 +176,16 @@ "value": "$semantic.ui.color.danger.default.dark", "type": "color" } + }, + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "content": { From 377c2f1a099a4a2980abc15cf2c7aa3890707ce6 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 20 Mar 2023 14:58:41 +0000 Subject: [PATCH 469/696] Notice tokens --- tokens/calcite/dark.json | 60 ++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 44 ++++++++++++++++++++++++++ tokens/component/notice.json | 16 +++++++++- 3 files changed, 119 insertions(+), 1 deletion(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index cb60859c535..0842b6e4dab 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1320,6 +1320,66 @@ "value": "$block-section.background.dark", "type": "color" } + }, + "notice": { + "font": { + "title": { + "value": "$notice.font.title.dark", + "type": "color" + }, + "message": { + "value": "$notice.font.message.dark", + "type": "color" + } + }, + "background": { + "value": "$notice.background.dark", + "type": "color" + }, + "icon": { + "info": { + "value": "$notice.icon.info.dark", + "type": "color" + }, + "success": { + "value": "$notice.icon.success.dark", + "type": "color" + }, + "warning": { + "value": "$notice.icon.warning.dark", + "type": "color" + }, + "danger": { + "value": "$notice.icon.danger.dark", + "type": "color" + }, + "brand": { + "value": "$notice.icon.brand.dark", + "type": "color" + } + }, + "highlight": { + "info": { + "value": "$notice.highlight.info.dark", + "type": "color" + }, + "success": { + "value": "$notice.highlight.success.dark", + "type": "color" + }, + "warning": { + "value": "$notice.highlight.warning.dark", + "type": "color" + }, + "danger": { + "value": "$notice.highlight.danger.dark", + "type": "color" + }, + "brand": { + "value": "$notice.highlight.brand.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 6d7bfa15e1d..479c38049c4 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1371,6 +1371,50 @@ "background": { "value": "$notice.background.light", "type": "color" + }, + "icon": { + "info": { + "value": "$notice.icon.info.light", + "type": "color" + }, + "success": { + "value": "$notice.icon.success.light", + "type": "color" + }, + "warning": { + "value": "$notice.icon.warning.light", + "type": "color" + }, + "danger": { + "value": "$notice.icon.danger.light", + "type": "color" + }, + "brand": { + "value": "$notice.icon.brand.light", + "type": "color" + } + }, + "highlight": { + "info": { + "value": "$notice.highlight.info.light", + "type": "color" + }, + "success": { + "value": "$notice.highlight.success.light", + "type": "color" + }, + "warning": { + "value": "$notice.highlight.warning.light", + "type": "color" + }, + "danger": { + "value": "$notice.highlight.danger.light", + "type": "color" + }, + "brand": { + "value": "$notice.highlight.brand.light", + "type": "color" + } } } } diff --git a/tokens/component/notice.json b/tokens/component/notice.json index 4298c26d3a7..2ee2de108a2 100644 --- a/tokens/component/notice.json +++ b/tokens/component/notice.json @@ -25,7 +25,7 @@ }, "message": { "sm": { - "value": "$semantic.font.wrap.regular.-1", + "value": "$semantic.font.wrap.regular.-2", "type": "typography" }, "md": { @@ -186,6 +186,20 @@ "value": "$semantic.ui.color.brand.default.dark", "type": "color" } + }, + "border": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } } }, "content": { From 06e88561bf6e8c08cc97da5eabafcc90dba53dac Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 20 Mar 2023 15:02:34 +0000 Subject: [PATCH 470/696] modal medium tokens --- tokens/$metadata.json | 3 +- tokens/$themes.json | 15 ++- tokens/component/modal-medium.json | 177 +++++++++++++++++++++++++++++ 3 files changed, 189 insertions(+), 6 deletions(-) create mode 100644 tokens/component/modal-medium.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 30f7c6cc486..f415b66a4fc 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -16,6 +16,7 @@ "component/card", "component/checkbox", "component/chip", + "component/date-picker", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -30,9 +31,9 @@ "component/input-time", "component/input-text", "component/input-week", + "component/modal-medium", "component/notice", "component/textarea", - "component/date-picker", "component/label", "component/loader", "component/radio", diff --git a/tokens/$themes.json b/tokens/$themes.json index a061ba6323e..61fcdf8ff9f 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/modal-medium": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/modal-medium": "disabled" }, "$figmaStyleReferences": {} }, @@ -35,7 +37,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/modal-medium": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +115,8 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/modal-medium": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -224,7 +228,8 @@ "component/action-pad-grid": "enabled", "component/block": "enabled", "component/block-section": "enabled", - "component/notice": "enabled" + "component/notice": "enabled", + "component/modal-medium": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/modal-medium.json b/tokens/component/modal-medium.json new file mode 100644 index 00000000000..4c8b828e451 --- /dev/null +++ b/tokens/component/modal-medium.json @@ -0,0 +1,177 @@ +{ + "modal-medium": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From 2f7685602f426151ce562f0e434df496f2f56067 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 20 Mar 2023 17:05:48 +0100 Subject: [PATCH 471/696] Update --- tokens/$metadata.json | 3 +- tokens/calcite/dark.json | 60 ++++++++++ tokens/calcite/light.json | 60 ++++++++++ tokens/component/modal-medium.json | 177 +++++++++++++++++++++++++++++ tokens/component/notice.json | 138 ++++++++++++---------- 5 files changed, 379 insertions(+), 59 deletions(-) create mode 100644 tokens/component/modal-medium.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 30f7c6cc486..f415b66a4fc 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -16,6 +16,7 @@ "component/card", "component/checkbox", "component/chip", + "component/date-picker", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -30,9 +31,9 @@ "component/input-time", "component/input-text", "component/input-week", + "component/modal-medium", "component/notice", "component/textarea", - "component/date-picker", "component/label", "component/loader", "component/radio", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index cb60859c535..0842b6e4dab 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1320,6 +1320,66 @@ "value": "$block-section.background.dark", "type": "color" } + }, + "notice": { + "font": { + "title": { + "value": "$notice.font.title.dark", + "type": "color" + }, + "message": { + "value": "$notice.font.message.dark", + "type": "color" + } + }, + "background": { + "value": "$notice.background.dark", + "type": "color" + }, + "icon": { + "info": { + "value": "$notice.icon.info.dark", + "type": "color" + }, + "success": { + "value": "$notice.icon.success.dark", + "type": "color" + }, + "warning": { + "value": "$notice.icon.warning.dark", + "type": "color" + }, + "danger": { + "value": "$notice.icon.danger.dark", + "type": "color" + }, + "brand": { + "value": "$notice.icon.brand.dark", + "type": "color" + } + }, + "highlight": { + "info": { + "value": "$notice.highlight.info.dark", + "type": "color" + }, + "success": { + "value": "$notice.highlight.success.dark", + "type": "color" + }, + "warning": { + "value": "$notice.highlight.warning.dark", + "type": "color" + }, + "danger": { + "value": "$notice.highlight.danger.dark", + "type": "color" + }, + "brand": { + "value": "$notice.highlight.brand.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 3741b3bcf6e..479c38049c4 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1356,6 +1356,66 @@ "value": "$block-section.background.light", "type": "color" } + }, + "notice": { + "font": { + "title": { + "value": "$notice.font.title.light", + "type": "color" + }, + "message": { + "value": "$notice.font.message.light", + "type": "color" + } + }, + "background": { + "value": "$notice.background.light", + "type": "color" + }, + "icon": { + "info": { + "value": "$notice.icon.info.light", + "type": "color" + }, + "success": { + "value": "$notice.icon.success.light", + "type": "color" + }, + "warning": { + "value": "$notice.icon.warning.light", + "type": "color" + }, + "danger": { + "value": "$notice.icon.danger.light", + "type": "color" + }, + "brand": { + "value": "$notice.icon.brand.light", + "type": "color" + } + }, + "highlight": { + "info": { + "value": "$notice.highlight.info.light", + "type": "color" + }, + "success": { + "value": "$notice.highlight.success.light", + "type": "color" + }, + "warning": { + "value": "$notice.highlight.warning.light", + "type": "color" + }, + "danger": { + "value": "$notice.highlight.danger.light", + "type": "color" + }, + "brand": { + "value": "$notice.highlight.brand.light", + "type": "color" + } + } } } } diff --git a/tokens/component/modal-medium.json b/tokens/component/modal-medium.json new file mode 100644 index 00000000000..4c8b828e451 --- /dev/null +++ b/tokens/component/modal-medium.json @@ -0,0 +1,177 @@ +{ + "modal-medium": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/notice.json b/tokens/component/notice.json index 698b1e3e623..2ee2de108a2 100644 --- a/tokens/component/notice.json +++ b/tokens/component/notice.json @@ -1,5 +1,5 @@ { - "alert": { + "notice": { "font": { "title": { "light": { @@ -11,29 +11,29 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.medium.-1h", + "value": "$semantic.font.wrap.medium.-1", "type": "typography" }, "md": { - "value": "$semantic.font.default.medium.0h", + "value": "$semantic.font.wrap.medium.0", "type": "typography" }, "lg": { - "value": "$semantic.font.default.medium.1h", + "value": "$semantic.font.wrap.medium.1", "type": "typography" } }, "message": { "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "$semantic.font.wrap.regular.-2", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "$semantic.font.wrap.regular.-1", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "$semantic.font.wrap.regular.0", "type": "typography" }, "light": { @@ -56,27 +56,17 @@ "type": "color" } }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, "border-radius": { "sm": { - "value": "$core.border.border-radius.1", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.1", + "value": "$core.border.border-radius.none", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.1", + "value": "$core.border.border-radius.none", "type": "borderRadius" } }, @@ -95,7 +85,7 @@ } }, "icon": { - "blue": { + "info": { "light": { "value": "$semantic.ui.color.info.default.light", "type": "color" @@ -105,7 +95,7 @@ "type": "color" } }, - "green": { + "success": { "light": { "value": "$semantic.ui.color.success.default.light", "type": "color" @@ -115,7 +105,7 @@ "type": "color" } }, - "yellow": { + "warning": { "light": { "value": "$semantic.ui.color.warning.default.light", "type": "color" @@ -125,7 +115,7 @@ "type": "color" } }, - "red": { + "danger": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -134,10 +124,20 @@ "value": "$semantic.ui.color.danger.default.dark", "type": "color" } + }, + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "highlight": { - "blue": { + "info": { "light": { "value": "$semantic.ui.color.info.default.light", "type": "color" @@ -147,7 +147,7 @@ "type": "color" } }, - "green": { + "success": { "light": { "value": "$semantic.ui.color.success.default.light", "type": "color" @@ -157,7 +157,7 @@ "type": "color" } }, - "yellow": { + "warning": { "light": { "value": "$semantic.ui.color.warning.default.light", "type": "color" @@ -167,7 +167,7 @@ "type": "color" } }, - "red": { + "danger": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -176,83 +176,105 @@ "value": "$semantic.ui.color.danger.default.dark", "type": "color" } - } - }, - "space-between": { - "sm": { - "value": "{core.spacing.5}", - "type": "spacing" }, - "md": { - "value": "{core.spacing.7}", - "type": "spacing" + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } }, - "lg": { - "value": "{core.spacing.8}", - "type": "spacing" + "border": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } } }, - "space-around": { - "top": { + "content": { + "space-between": { "sm": { - "value": "{core.spacing.4}", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "{core.spacing.5}", + "value": "$core.spacing.1", "type": "spacing" }, "lg": { - "value": "{core.spacing.8}", + "value": "$core.spacing.1", "type": "spacing" } - }, - "bottom": { + } + }, + "space-around": { + "top-bottom": { "sm": { - "value": "{core.spacing.4}", + "value": "$core.spacing.4", "type": "spacing" }, "md": { - "value": "{core.spacing.5}", + "value": "$core.spacing.6", "type": "spacing" }, "lg": { - "value": "{core.spacing.8}", + "value": "$core.spacing.7", "type": "spacing" } }, "left": { "sm": { - "value": "{core.spacing.4}", + "value": "$core.spacing.5", "type": "spacing" }, "md": { - "value": "{core.spacing.5}", + "value": "$core.spacing.7", "type": "spacing" }, "lg": { - "value": "{core.spacing.8}", + "value": "$core.spacing.8", "type": "spacing" } }, "right": { "sm": { - "value": "{core.spacing.4}", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "{core.spacing.5}", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "{core.spacing.8}", + "value": "$core.spacing.7", "type": "spacing" } } }, "shadow": { - "value": "{core.box-shadow.2}", - "type": "boxShadow" + "sm": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "md": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + }, + "lg": { + "value": "{core.box-shadow.1}", + "type": "boxShadow" + } } } } \ No newline at end of file From 1eb726981f16908d8d57a8626d1588312552bef9 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 20 Mar 2023 16:32:15 +0000 Subject: [PATCH 472/696] notice tokens --- tokens/$themes.json | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 61fcdf8ff9f..105ecae58d7 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/modal-medium": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/modal-medium": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -37,8 +35,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/modal-medium": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -115,8 +112,7 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source", - "component/modal-medium": "disabled" + "component/tooltip": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -229,7 +225,7 @@ "component/block": "enabled", "component/block-section": "enabled", "component/notice": "enabled", - "component/modal-medium": "disabled" + "component/modal-medium": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", From aba93d18191a6f2895dac84fa87beb08bb3c1dd9 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 21 Mar 2023 09:20:16 -0700 Subject: [PATCH 473/696] chore: restore files from mixed up merge conflict --- tokens/$metadata.json | 9 +- tokens/$themes.json | 44 +- tokens/component/[template-comp-name].json | 2 +- tokens/component/action.json | 78 ++- tokens/component/button.json | 578 +++++++++++++++++++++ tokens/component/combobox.json | 152 ++++++ tokens/component/dropdown.json | 177 +++++++ tokens/component/fab.json | 524 +++++++++++++++++++ tokens/component/link.json | 44 ++ tokens/component/pagination.json | 177 +++++++ tokens/component/segmented-control.json | 154 ++++++ tokens/component/stepper-item.json | 372 +++++++++++++ tokens/component/stepper.json | 152 ++++++ tokens/component/tab-title.json | 6 +- tokens/component/tabs.json | 129 ++++- tokens/semantic.json | 2 +- 16 files changed, 2569 insertions(+), 31 deletions(-) create mode 100644 tokens/component/button.json create mode 100644 tokens/component/combobox.json create mode 100644 tokens/component/dropdown.json create mode 100644 tokens/component/fab.json create mode 100644 tokens/component/link.json create mode 100644 tokens/component/pagination.json create mode 100644 tokens/component/segmented-control.json create mode 100644 tokens/component/stepper-item.json create mode 100644 tokens/component/stepper.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index aaf3393d7d4..a5cd6a5ff2b 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -41,13 +41,20 @@ "component/notice", "component/textarea", "component/label", + "component/link", "component/loader", "component/radio", + "component/tab-title", + "component/tabs", "component/rating", "component/tab-title", "component/tabs", "component/tip", "component/tooltip", + "component/pagination", + "component/segmented-control", + "component/stepper", + "component/stepper-item", "component/switch", "component/[template-comp-name]", "component/accordion_backup", @@ -57,4 +64,4 @@ "brand/light", "brand/dark" ] -} \ No newline at end of file +} diff --git a/tokens/$themes.json b/tokens/$themes.json index 105ecae58d7..430d9e80f5c 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -25,17 +25,29 @@ "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", "name": "Calcite - Dark", "selectedTokenSets": { - "core": "source", - "semantic": "source", "calcite/dark": "enabled", - "component/label": "source", "component/avatar": "source", + "component/button": "source", "component/checkbox": "source", "component/chip": "source", + "component/color-picker": "source", + "component/combobox": "source", + "component/dropdown": "source", + "component/fab": "source", + "component/input-datetime-local": "source", + "component/label": "source", + "component/link": "source", "component/loader": "source", + "component/pagination": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/segmented-control": "source", + "component/stepper-item": "source", + "component/stepper": "source", + "component/switch": "source", + "component/tooltip": "source", + "core": "source", + "semantic": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -112,7 +124,20 @@ "component/loader": "source", "component/radio": "source", "component/rating": "source", - "component/tooltip": "source" + "component/tooltip": "source", + "component/combobox": "source", + "component/button": "source", + "component/dropdown": "source", + "component/color-picker": "source", + "component/input-datetime-local": "source", + "component/link": "source", + "component/fab": "source", + "component/stepper": "source", + "component/pagination": "source", + "component/segmented-control": "source", + "component/switch": "source", + "component/stepper-item": "source" + }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -203,7 +228,16 @@ "component/color-picker": "enabled", "component/date-picker": "enabled", "component/input-date-picker": "enabled", + "component/combobox": "enabled", + "component/button": "enabled", + "component/dropdown": "enabled", "component/input-datetime-local": "enabled", + "component/link": "enabled", + "component/fab": "enabled", + "component/stepper": "enabled", + "component/pagination": "enabled", + "component/segmented-control": "enabled", + "component/stepper-item": "enabled", "component/input-email": "enabled", "component/input-file": "enabled", "component/input-month": "enabled", diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index bf4896dbc5a..09df0d4a5e2 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -10,7 +10,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "md": { diff --git a/tokens/component/action.json b/tokens/component/action.json index f1895d8666a..59b04a09b57 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -20,16 +20,48 @@ "lg": { "value": "$semantic.font.default.regular.0h", "type": "typography" + }, + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } } }, "background": { @@ -120,6 +152,40 @@ "type": "composition" } } + }, + "indicator-size": { + "sm": { + "value": "$core.sizing.3", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.3", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.3", + "type": "sizing" + } + }, + "indicator": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "loader-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } } } } \ No newline at end of file diff --git a/tokens/component/button.json b/tokens/component/button.json new file mode 100644 index 00000000000..5669c1ba910 --- /dev/null +++ b/tokens/component/button.json @@ -0,0 +1,578 @@ +{ + "button": { + "font": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "icon": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } + }, + "border": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "background": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json new file mode 100644 index 00000000000..8d724bffabd --- /dev/null +++ b/tokens/component/combobox.json @@ -0,0 +1,152 @@ +{ + "combobox": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json new file mode 100644 index 00000000000..b4e2f0a5bb1 --- /dev/null +++ b/tokens/component/dropdown.json @@ -0,0 +1,177 @@ +{ + "dropdown": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json new file mode 100644 index 00000000000..1c3606de43d --- /dev/null +++ b/tokens/component/fab.json @@ -0,0 +1,524 @@ +{ + "fab": { + "font": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "icon": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "clear": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "border": { + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "danger": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "background": { + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "inverse": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "neutral": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "danger": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json new file mode 100644 index 00000000000..4bd7249b874 --- /dev/null +++ b/tokens/component/link.json @@ -0,0 +1,44 @@ +{ + "link": { + "font": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + }, + "regular": { + "value": "$semantic.font.wrap.regular.0", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "bottom": { + "border-width": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json new file mode 100644 index 00000000000..8525fb9be8a --- /dev/null +++ b/tokens/component/pagination.json @@ -0,0 +1,177 @@ +{ + "pagination": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json new file mode 100644 index 00000000000..b661574f032 --- /dev/null +++ b/tokens/component/segmented-control.json @@ -0,0 +1,154 @@ +{ + "segmented-control": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "checked": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json new file mode 100644 index 00000000000..cf6419183c3 --- /dev/null +++ b/tokens/component/stepper-item.json @@ -0,0 +1,372 @@ +{ + "stepper-item": { + "font": { + "heading": { + "default": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "error": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "complete": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.1h", + "type": "typography" + } + }, + "description": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "error": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "complete": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "context": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "error": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "complete": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "error": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "error": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "left": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.8", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.8", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.9", + "type": "spacing" + } + } + }, + "disabled": { + "value": "{core.opacity.50}", + "type": "opacity" + } + } +} diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json new file mode 100644 index 00000000000..76ca139ef90 --- /dev/null +++ b/tokens/component/stepper.json @@ -0,0 +1,152 @@ +{ + "stepper": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 1696efd71e3..042fe740f66 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -70,7 +70,7 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { @@ -90,7 +90,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.1", + "value": "$core.spacing.7", "type": "spacing" } }, @@ -250,4 +250,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index 6ac79f84233..b9152e66ef3 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -1,5 +1,61 @@ { "tabs": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, "bordered": { "border": { "light": { @@ -30,7 +86,7 @@ "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { @@ -62,19 +118,9 @@ "value": "$core.border.border-radius.none", "type": "borderRadius" }, - "space-between": { - "sm": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.none", - "type": "spacing" - } + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" } }, "space-between": { @@ -104,6 +150,48 @@ "lg": { "value": "$core.border.border-width.0", "type": "borderWidth" + }, + "active": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" } }, "default": { @@ -119,6 +207,7 @@ }, "lg": { "value": "$core.spacing.none", + "type": "spacing" } }, @@ -176,6 +265,18 @@ "type": "composition" } } + }, + "border": { + "active": { + "light": { + "value": "{semantic.ui.color.brand.default.light}", + "type": "color" + }, + "dark": { + "value": "{semantic.ui.color.brand.default.dark}", + "type": "color" + } + } } } } \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 6f678e878b4..3ac92afce5a 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1680,4 +1680,4 @@ } } } -} \ No newline at end of file +} From 351bd1353ffdfab61d0474e21b9fd2429228d81e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Mar 2023 14:44:41 +0100 Subject: [PATCH 474/696] Fail solution test --- tokens/$metadata.json | 12 +- tokens/$themes.json | 3 - tokens/calcite/dark.json | 1487 --------------------------- tokens/calcite/light.json | 1502 ---------------------------- tokens/component/stepper-item.json | 12 +- tokens/component/tab-title.json | 2 +- tokens/component/tabs.json | 27 +- tokens/semantic.json | 2 +- 8 files changed, 24 insertions(+), 3023 deletions(-) delete mode 100644 tokens/calcite/dark.json delete mode 100644 tokens/calcite/light.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index a5cd6a5ff2b..5956145bf0b 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -19,8 +19,6 @@ "component/block", "component/block-section", "component/card", - "component/checkbox", - "component/chip", "component/date-picker", "component/color-picker", "component/input-date-picker", @@ -36,7 +34,6 @@ "component/input-time", "component/input-text", "component/input-week", - "component/date-picker", "component/modal-medium", "component/notice", "component/textarea", @@ -47,8 +44,6 @@ "component/tab-title", "component/tabs", "component/rating", - "component/tab-title", - "component/tabs", "component/tip", "component/tooltip", "component/pagination", @@ -58,10 +53,9 @@ "component/switch", "component/[template-comp-name]", "component/accordion_backup", - "calcite/light", - "calcite/dark", "brand/global", "brand/light", - "brand/dark" + "brand/dark", + "component/combobox" ] -} +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index 430d9e80f5c..e4f15268f9c 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -25,7 +25,6 @@ "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", "name": "Calcite - Dark", "selectedTokenSets": { - "calcite/dark": "enabled", "component/avatar": "source", "component/button": "source", "component/checkbox": "source", @@ -116,7 +115,6 @@ "selectedTokenSets": { "core": "source", "semantic": "source", - "calcite/light": "enabled", "component/label": "source", "component/avatar": "source", "component/checkbox": "source", @@ -137,7 +135,6 @@ "component/segmented-control": "source", "component/switch": "source", "component/stepper-item": "source" - }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json deleted file mode 100644 index 7037496668a..00000000000 --- a/tokens/calcite/dark.json +++ /dev/null @@ -1,1487 +0,0 @@ -{ - "color": { - "brand": { - "default": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.brand.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.brand.press.dark", - "type": "color" - } - }, - "background": { - "1": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - }, - "foreground": { - "1": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - }, - "3": { - "value": "{semantic.ui.color.foreground.current.dark}", - "type": "color" - } - }, - "text": { - "1": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "inverse": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - }, - "link": { - "value": "$semantic.ui.color.text.link.dark", - "type": "color" - } - }, - "border": { - "1": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - }, - "input": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - } - }, - "info": { - "default": { - "value": "$semantic.ui.color.info.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.info.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.info.press.dark", - "type": "color" - } - }, - "success": { - "default": { - "value": "$semantic.ui.color.success.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.success.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.success.press.dark", - "type": "color" - } - }, - "warning": { - "default": { - "value": "$semantic.ui.color.warning.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.warning.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.warning.press.dark", - "type": "color" - } - }, - "danger": { - "default": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.danger.hover.dark", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.danger.press.dark", - "type": "color" - } - }, - "inverse": { - "default": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "component": { - "avatar": { - "font": { - "value": "$avatar.font.dark", - "type": "color" - }, - "icon": { - "value": "$avatar.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$avatar.background.default.dark", - "type": "color" - }, - "red": { - "value": "$avatar.background.red.dark", - "type": "color" - }, - "teal": { - "value": "$avatar.background.teal.dark", - "type": "color" - }, - "blue": { - "value": "$avatar.background.blue.dark", - "type": "color" - }, - "green": { - "value": "$avatar.background.green.dark", - "type": "color" - }, - "yellow": { - "value": "$avatar.background.yellow.dark", - "type": "color" - } - } - }, - "checkbox": { - "font": { - "value": "$checkbox.font.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$checkbox.background.default.dark", - "type": "color" - }, - "selected": { - "value": "$checkbox.background.selected.dark", - "type": "color" - } - }, - "icon": { - "value": "$checkbox.icon.dark", - "type": "color" - }, - "border": { - "value": "$checkbox.border.dark", - "type": "color" - } - }, - "radio": { - "font": { - "value": "$radio.font.dark", - "type": "color" - }, - "background": { - "value": "$radio.background.dark", - "type": "color" - }, - "border": { - "unchecked": { - "value": "$radio.border.unchecked.dark", - "type": "color" - }, - "checked": { - "value": "$radio.border.checked.dark", - "type": "color" - } - } - }, - "chip": { - "font": { - "clear": { - "value": "$chip.font.clear.dark", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.font.solid.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.font.solid.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.font.solid.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.font.solid.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.font.solid.green.dark", - "type": "color" - } - } - }, - "icon": { - "clear": { - "value": "$chip.icon.clear.dark", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.icon.solid.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.icon.solid.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.icon.solid.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.icon.solid.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.icon.solid.green.dark", - "type": "color" - } - } - }, - "closable-icon": { - "value": "$chip.closable-icon.dark", - "type": "color" - }, - "background": { - "solid": { - "grey": { - "value": "$chip.background.solid.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.background.solid.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.background.solid.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.background.solid.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.background.solid.green.dark", - "type": "color" - } - } - }, - "border": { - "clear": { - "grey": { - "value": "$chip.border.clear.grey.dark", - "type": "color" - }, - "blue": { - "value": "$chip.border.clear.blue.dark", - "type": "color" - }, - "red": { - "value": "$chip.border.clear.red.dark", - "type": "color" - }, - "yellow": { - "value": "$chip.border.clear.yellow.dark", - "type": "color" - }, - "green": { - "value": "$chip.border.clear.green.dark", - "type": "color" - } - } - } - }, - "label": { - "font": { - "value": "$label.font.dark", - "type": "color" - } - }, - "loader": { - "font": { - "value": "$loader.font.dark", - "type": "color" - }, - "default": { - "foreground": { - "value": "$loader.default.foreground.dark", - "type": "color" - } - }, - "inline": { - "foreground": { - "indeterminate": { - "value": "$loader.inline.foreground.indeterminate.dark", - "type": "color" - }, - "determinate": { - "value": "$loader.inline.foreground.determinate.dark", - "type": "color" - } - } - } - }, - "rating": { - "star": { - "background": { - "default": { - "value": "$rating.star.background.default.dark", - "type": "color" - }, - "active": { - "value": "$rating.star.background.active.dark", - "type": "color" - }, - "average": { - "value": "$rating.star.background.average.dark", - "type": "color" - } - } - }, - "chip": { - "value-text": { - "font": { - "value": "$rating.chip.value-text.font.dark", - "type": "color" - } - }, - "count": { - "font": { - "value": "$rating.chip.count.font.dark", - "type": "color" - } - }, - "foreground": { - "value": "$rating.chip.foreground.dark", - "type": "color" - } - } - }, - "tooltip": { - "foreground": { - "value": "$tooltip.foreground.dark", - "type": "color" - }, - "border": { - "value": "$tooltip.border.dark", - "type": "color" - }, - "font": { - "value": "$tooltip.font.dark", - "type": "color" - } - }, - "accordion-item": { - "font": { - "heading": { - "value": "$accordion-item.font.heading.dark", - "type": "color" - }, - "description": { - "value": "$accordion-item.font.description.dark", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$accordion-item.icon.default.dark", - "type": "color" - }, - "expanded": { - "value": "$accordion-item.icon.expanded.dark", - "type": "color" - } - }, - "background": { - "value": "$accordion-item.background.default.dark", - "type": "color" - }, - "border": { - "value": "$accordion-item.border.dark", - "type": "color" - } - }, - "input-message": { - "font": { - "value": "$input-message.font.dark", - "type": "color" - }, - "icon": { - "idle": { - "value": "$input-message.icon.idle.dark", - "type": "color" - }, - "invalid": { - "value": "$input-message.icon.invalid.dark", - "type": "color" - }, - "valid": { - "value": "$input-message.icon.valid.dark", - "type": "color" - } - } - }, - "alert": { - "font": { - "title": { - "value": "$alert.font.title.dark", - "type": "color" - }, - "message": { - "value": "$alert.font.message.dark", - "type": "color" - } - }, - "background": { - "value": "$alert.background.dark", - "type": "color" - }, - "border": { - "value": "$alert.border.dark", - "type": "color" - }, - "icon": { - "blue": { - "value": "$alert.icon.blue.dark", - "type": "color" - }, - "green": { - "value": "$alert.icon.green.dark", - "type": "color" - }, - "yellow": { - "value": "$alert.icon.yellow.dark", - "type": "color" - }, - "red": { - "value": "$alert.icon.red.dark", - "type": "color" - } - }, - "highlight": { - "blue": { - "value": "$alert.icon.blue.dark", - "type": "color" - }, - "green": { - "value": "$alert.icon.green.dark", - "type": "color" - }, - "yellow": { - "value": "$alert.icon.yellow.dark", - "type": "color" - }, - "red": { - "value": "$alert.icon.red.dark", - "type": "color" - } - } - }, - "color-picker": { - "font": { - "label": { - "value": "$color-picker.font.label.dark", - "type": "color" - } - }, - "icon": { - "value": "$color-picker.icon.dark", - "type": "color" - }, - "border": { - "value": "$color-picker.border.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$color-picker.background.default.dark", - "type": "color" - } - } - }, - "date-picker": { - "font": { - "date": { - "value": "$date-picker.font.date.dark", - "type": "color" - }, - "day": { - "value": "$date-picker.font.day.dark", - "type": "color" - }, - "month": { - "value": "$date-picker.font.month.dark", - "type": "color" - }, - "range": { - "date": { - "value": "$date-picker.font.range.date.dark", - "type": "color" - } - }, - "selected": { - "date": { - "value": "$date-picker.font.selected.date.dark", - "type": "color" - } - }, - "active": { - "date": { - "value": "$date-picker.font.active.date.dark", - "type": "color" - } - } - }, - "icon": { - "value": "$date-picker.icon.dark", - "type": "color" - }, - "border": { - "value": "$date-picker.border.dark", - "type": "color" - }, - "date": { - "active": { - "border": { - "value": "$date-picker.date.active.border.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "value": "$date-picker.background.default.dark", - "type": "color" - }, - "date": { - "range": { - "value": "$date-picker.background.date.range.dark", - "type": "color" - }, - "active": { - "value": "$date-picker.background.date.active.dark", - "type": "color" - } - } - } - }, - "input-date-picker": { - "font": { - "placeholder-value": { - "value": "$input-date-picker.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-date-picker.font.label.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-date-picker.icon.dark", - "type": "color" - }, - "border": { - "value": "$input-date-picker.border.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-date-picker.background.default.dark", - "type": "color" - }, - "arrow": { - "value": "$input-date-picker.background.arrow.dark", - "type": "color" - }, - "read-only": { - "value": "$input-date-picker.background.read-only.dark", - "type": "color" - } - } - }, - "input-datetime-local": { - "font": { - "placeholder-value": { - "value": "$input-datetime-local.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-datetime-local.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-datetime-local.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-datetime-local.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-datetime-local.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-datetime-local.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-datetime-local.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-datetime-local.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-datetime-local.border.invalid.dark", - "type": "color" - } - } - }, - "input-email": { - "font": { - "placeholder-value": { - "value": "$input-email.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-email.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-email.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-email.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-email.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-email.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-email.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-email.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-email.border.invalid.dark", - "type": "color" - } - } - }, - "input-file": { - "font": { - "placeholder-value": { - "value": "$input-file.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-file.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-file.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-file.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-file.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-file.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-file.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-file.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-file.border.invalid.dark", - "type": "color" - } - } - }, - "input-month": { - "font": { - "placeholder-value": { - "value": "$input-month.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-month.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-month.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-month.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-month.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-month.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-month.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-month.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-month.border.invalid.dark", - "type": "color" - } - } - }, - "input-number": { - "font": { - "placeholder-value": { - "value": "$input-number.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-number.font.label.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-number.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-number.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-number.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-number.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-number.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-number.border.invalid.dark", - "type": "color" - } - } - }, - "input-password": { - "font": { - "placeholder-value": { - "value": "$input-password.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-password.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-password.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-password.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-password.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-password.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-password.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-password.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-password.border.invalid.dark", - "type": "color" - } - } - }, - "input-search": { - "font": { - "placeholder-value": { - "value": "$input-search.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-search.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-search.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-search.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-search.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-search.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-search.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-search.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-search.border.invalid.dark", - "type": "color" - } - } - }, - "input-telephone": { - "font": { - "placeholder-value": { - "value": "$input-telephone.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-telephone.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-telephone.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-telephone.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-telephone.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-telephone.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-telephone.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-telephone.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-telephone.border.invalid.dark", - "type": "color" - } - } - }, - "input-text": { - "font": { - "placeholder-value": { - "value": "$input-text.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-text.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-text.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-text.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-text.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-text.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-text.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-text.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-text.border.invalid.dark", - "type": "color" - } - } - }, - "input-week": { - "font": { - "placeholder-value": { - "value": "$input-week.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$input-week.font.label.dark", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-week.font.prefix-suffix.dark", - "type": "color" - } - }, - "icon": { - "value": "$input-week.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$input-week.background.default.dark", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-week.background.prefix-suffix.dark", - "type": "color" - }, - "read-only": { - "value": "$input-week.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-week.border.default.dark", - "type": "color" - }, - "invalid": { - "value": "$input-week.border.invalid.dark", - "type": "color" - } - } - }, - "textarea": { - "font": { - "placeholder-value": { - "value": "$textarea.font.placeholder-value.dark", - "type": "color" - }, - "label": { - "value": "$textarea.font.label.dark", - "type": "color" - }, - "chat-limit": { - "value": "$textarea.font.chat-limit.dark", - "type": "color" - } - }, - "icon": { - "value": "$textarea.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$textarea.background.default.dark", - "type": "color" - }, - "read-only": { - "value": "$textarea.background.read-only.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$textarea.border.dark", - "type": "color" - } - } - }, - "tab-title": { - "font": { - "default": { - "value": "$tab-title.font.default.dark", - "type": "color" - }, - "active": { - "value": "$tab-title.font.active.dark", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$tab-title.icon.default.dark", - "type": "color" - }, - "active": { - "value": "$tab-title.icon.active.dark", - "type": "color" - } - }, - "bordered": { - "border": { - "value": "$tab-title.bordered.border.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$tab-title.bordered.background.default.dark", - "type": "color" - } - } - }, - "border": { - "active": { - "value": "$tab-title.border.active.dark", - "type": "color" - } - } - }, - "tabs": { - "bordered": { - "border": { - "value": "$tabs.bordered.border.dark", - "type": "color" - }, - "background": { - "value": "$tabs.bordered.background.default.dark", - "type": "color" - } - } - }, - "card": { - "font": { - "title": { - "value": "$card.font.title.dark", - "type": "color" - }, - "subtitle": { - "value": "$card.font.subtitle.dark", - "type": "color" - }, - "description": { - "value": "$card.font.description.dark", - "type": "color" - } - }, - "border": { - "default": { - "value": "$card.border.default.dark", - "type": "color" - }, - "active": { - "value": "$card.border.active.dark", - "type": "color" - } - }, - "background": { - "default": { - "value": "$card.background.default.dark", - "type": "color" - } - } - }, - "action": { - "indicator": { - "value": "$action.indicator.dark", - "type": "color" - }, - "font": { - "value": "$action.font.dark", - "type": "color" - }, - "icon": { - "value": "$action.icon.dark", - "type": "color" - }, - "background": { - "default": { - "value": "$action.background.default.dark", - "type": "color" - }, - "active": { - "value": "$action.background.active.dark", - "type": "color" - } - } - }, - "action-bar": { - "border": { - "value": "$action-bar.border.dark", - "type": "color" - }, - "background": { - "value": "$action-bar.background.dark", - "type": "color" - } - }, - "action-pad": { - "border": { - "value": "$action-pad.border.dark", - "type": "color" - }, - "background": { - "value": "$action-pad.background.dark", - "type": "color" - } - }, - "action-bar-grid": { - "border": { - "value": "$action-bar-grid.border.dark", - "type": "color" - }, - "background": { - "value": "$action-bar-grid.background.dark", - "type": "color" - } - }, - "action-pad-grid": { - "border": { - "value": "$action-pad-grid.border.dark", - "type": "color" - }, - "background": { - "value": "$action-pad-grid.background.dark", - "type": "color" - } - }, - "block": { - "font": { - "heading": { - "value": "$block.font.heading.dark", - "type": "color" - }, - "description": { - "value": "$block.font.description.dark", - "type": "color" - }, - "content": { - "value": "$block.font.content.dark", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$action.icon.default.dark", - "type": "color" - }, - "active": { - "value": "$action.icon.active.dark", - "type": "color" - } - }, - "loader": { - "value": "$action.loader-icon.dark", - "type": "color" - } - "idle": { - "value": "$block.icon.idle.dark", - "type": "color" - }, - "valid": { - "value": "$block.icon.valid.dark", - "type": "color" - }, - "invalid": { - "value": "$block.icon.invalid.dark", - "type": "color" - }, - "drag-handle": { - "value": "$block.icon.drag-handle.dark", - "type": "color" - }, - "chevron": { - "value": "$block.icon.chevron.dark", - "type": "color" - } - }, - "border": { - "value": "$block.border.light", - "type": "color" - }, - "background": { - "value": "$block.background.dark", - "type": "color" - } - }, - "block-section": { - "font": { - "value": "$block-section.font.dark", - "type": "color" - }, - "icon": { - "valid": { - "value": "$block-section.icon.valid.dark", - "type": "color" - }, - "invalid": { - "value": "$block-section.icon.invalid.dark", - "type": "color" - }, - "chevron": { - "value": "$block-section.icon.chevron.dark", - "type": "color" - } - }, - "background": { - "value": "$block-section.background.dark", - "type": "color" - } - }, - "notice": { - "font": { - "title": { - "value": "$notice.font.title.dark", - "type": "color" - }, - "message": { - "value": "$notice.font.message.dark", - "type": "color" - } - }, - "background": { - "value": "$notice.background.dark", - "type": "color" - }, - "icon": { - "info": { - "value": "$notice.icon.info.dark", - "type": "color" - }, - "success": { - "value": "$notice.icon.success.dark", - "type": "color" - }, - "warning": { - "value": "$notice.icon.warning.dark", - "type": "color" - }, - "danger": { - "value": "$notice.icon.danger.dark", - "type": "color" - }, - "brand": { - "value": "$notice.icon.brand.dark", - "type": "color" - } - }, - "highlight": { - "info": { - "value": "$notice.highlight.info.dark", - "type": "color" - }, - "success": { - "value": "$notice.highlight.success.dark", - "type": "color" - }, - "warning": { - "value": "$notice.highlight.warning.dark", - "type": "color" - }, - "danger": { - "value": "$notice.highlight.danger.dark", - "type": "color" - }, - "brand": { - "value": "$notice.highlight.brand.dark", - "type": "color" - } - } - }, - "block-section": { - "font": { - "value": "$block-section.font.dark", - "type": "color" - }, - "icon": { - "valid": { - "value": "$block-section.icon.valid.dark", - "type": "color" - }, - "invalid": { - "value": "$block-section.icon.invalid.dark", - "type": "color" - }, - "chevron": { - "value": "$block-section.icon.chevron.dark", - "type": "color" - } - }, - "background": { - "value": "$block-section.background.dark", - "type": "color" - } - }, - "notice": { - "font": { - "title": { - "value": "$notice.font.title.dark", - "type": "color" - }, - "message": { - "value": "$notice.font.message.dark", - "type": "color" - } - }, - "background": { - "value": "$notice.background.dark", - "type": "color" - }, - "icon": { - "info": { - "value": "$notice.icon.info.dark", - "type": "color" - }, - "success": { - "value": "$notice.icon.success.dark", - "type": "color" - }, - "warning": { - "value": "$notice.icon.warning.dark", - "type": "color" - }, - "danger": { - "value": "$notice.icon.danger.dark", - "type": "color" - }, - "brand": { - "value": "$notice.icon.brand.dark", - "type": "color" - } - }, - "highlight": { - "info": { - "value": "$notice.highlight.info.dark", - "type": "color" - }, - "success": { - "value": "$notice.highlight.success.dark", - "type": "color" - }, - "warning": { - "value": "$notice.highlight.warning.dark", - "type": "color" - }, - "danger": { - "value": "$notice.highlight.danger.dark", - "type": "color" - }, - "brand": { - "value": "$notice.highlight.brand.dark", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json deleted file mode 100644 index 8e39849da2a..00000000000 --- a/tokens/calcite/light.json +++ /dev/null @@ -1,1502 +0,0 @@ -{ - "color": { - "brand": { - "default": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.brand.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.brand.press.light", - "type": "color" - } - }, - "background": { - "1": { - "value": "$semantic.ui.color.background.light", - "type": "color" - } - }, - "foreground": { - "1": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "3": { - "value": "{semantic.ui.color.foreground.current.light}", - "type": "color" - } - }, - "text": { - "1": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "inverse": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "link": { - "value": "$semantic.ui.color.text.link.light", - "type": "color" - } - }, - "border": { - "1": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "2": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "3": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "input": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - } - }, - "info": { - "default": { - "value": "$semantic.ui.color.info.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.info.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.info.press.light", - "type": "color" - } - }, - "success": { - "default": { - "value": "$semantic.ui.color.success.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.success.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.success.press.light", - "type": "color" - } - }, - "warning": { - "default": { - "value": "$semantic.ui.color.warning.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.warning.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.warning.press.light", - "type": "color" - } - }, - "danger": { - "default": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "hover": { - "value": "$semantic.ui.color.danger.hover.light", - "type": "color" - }, - "press": { - "value": "$semantic.ui.color.danger.press.light", - "type": "color" - } - }, - "inverse": { - "default": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - } - }, - "component": { - "avatar": { - "font": { - "value": "$avatar.font.light", - "type": "color" - }, - "icon": { - "value": "$avatar.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$avatar.background.default.light", - "type": "color" - }, - "red": { - "value": "$avatar.background.red.light", - "type": "color" - }, - "teal": { - "value": "$avatar.background.teal.light", - "type": "color" - }, - "blue": { - "value": "$avatar.background.blue.light", - "type": "color" - }, - "green": { - "value": "$avatar.background.green.light", - "type": "color" - }, - "yellow": { - "value": "$avatar.background.yellow.light", - "type": "color" - } - } - }, - "checkbox": { - "font": { - "value": "$checkbox.font.light", - "type": "color" - }, - "background": { - "default": { - "value": "$checkbox.background.default.light", - "type": "color" - }, - "selected": { - "value": "$checkbox.background.selected.light", - "type": "color" - } - }, - "icon": { - "value": "$checkbox.icon.light", - "type": "color" - }, - "border": { - "value": "$checkbox.border.light", - "type": "color" - } - }, - "radio": { - "font": { - "value": "$radio.font.light", - "type": "color" - }, - "background": { - "value": "$radio.background.light", - "type": "color" - }, - "border": { - "unchecked": { - "value": "$radio.border.unchecked.light", - "type": "color" - }, - "checked": { - "value": "$radio.border.checked.light", - "type": "color" - } - } - }, - "chip": { - "font": { - "clear": { - "value": "$chip.font.clear.light", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.font.solid.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.font.solid.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.font.solid.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.font.solid.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.font.solid.green.light", - "type": "color" - } - } - }, - "icon": { - "clear": { - "value": "$chip.icon.clear.light", - "type": "color" - }, - "solid": { - "grey": { - "value": "$chip.icon.solid.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.icon.solid.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.icon.solid.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.icon.solid.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.icon.solid.green.light", - "type": "color" - } - } - }, - "closable-icon": { - "value": "$chip.closable-icon.light", - "type": "color" - }, - "background": { - "solid": { - "grey": { - "value": "$chip.background.solid.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.background.solid.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.background.solid.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.background.solid.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.background.solid.green.light", - "type": "color" - } - } - }, - "border": { - "clear": { - "grey": { - "value": "$chip.border.clear.grey.light", - "type": "color" - }, - "blue": { - "value": "$chip.border.clear.blue.light", - "type": "color" - }, - "red": { - "value": "$chip.border.clear.red.light", - "type": "color" - }, - "yellow": { - "value": "$chip.border.clear.yellow.light", - "type": "color" - }, - "green": { - "value": "$chip.border.clear.green.light", - "type": "color" - } - } - } - }, - "label": { - "font": { - "value": "$label.font.light", - "type": "color" - } - }, - "loader": { - "font": { - "value": "$loader.font.light", - "type": "color" - }, - "default": { - "foreground": { - "value": "$loader.default.foreground.light", - "type": "color" - } - }, - "inline": { - "foreground": { - "indeterminate": { - "value": "$loader.inline.foreground.indeterminate.light", - "type": "color" - }, - "determinate": { - "value": "$loader.inline.foreground.determinate.light", - "type": "color" - } - } - } - }, - "rating": { - "star": { - "background": { - "default": { - "value": "$rating.star.background.default.light", - "type": "color" - }, - "active": { - "value": "$rating.star.background.active.light", - "type": "color" - }, - "average": { - "value": "$rating.star.background.average.light", - "type": "color" - } - } - }, - "chip": { - "value-text": { - "font": { - "value": "$rating.chip.value-text.font.light", - "type": "color" - } - }, - "count": { - "font": { - "value": "$rating.chip.count.font.light", - "type": "color" - } - }, - "foreground": { - "value": "$rating.chip.foreground.light", - "type": "color" - } - } - }, - "tooltip": { - "foreground": { - "value": "$tooltip.foreground.light", - "type": "color" - }, - "border": { - "value": "$tooltip.border.light", - "type": "color" - }, - "font": { - "value": "$tooltip.font.light", - "type": "color" - } - }, - "accordion-item": { - "font": { - "heading": { - "value": "$accordion-item.font.heading.light", - "type": "color" - }, - "description": { - "value": "$accordion-item.font.description.light", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$accordion-item.icon.default.light", - "type": "color" - }, - "expanded": { - "value": "$accordion-item.icon.expanded.light", - "type": "color" - } - }, - "background": { - "value": "$accordion-item.background.default.light", - "type": "color" - }, - "border": { - "value": "$accordion-item.border.light", - "type": "color" - } - }, - "input-message": { - "font": { - "value": "$input-message.font.light", - "type": "color" - }, - "icon": { - "idle": { - "value": "$input-message.icon.idle.light", - "type": "color" - }, - "invalid": { - "value": "$input-message.icon.invalid.light", - "type": "color" - }, - "valid": { - "value": "$input-message.icon.valid.light", - "type": "color" - } - } - }, - "alert": { - "font": { - "title": { - "value": "$alert.font.title.light", - "type": "color" - }, - "message": { - "value": "$alert.font.message.light", - "type": "color" - } - }, - "background": { - "value": "$alert.background.light", - "type": "color" - }, - "border": { - "value": "$alert.border.light", - "type": "color" - }, - "icon": { - "blue": { - "value": "$alert.icon.blue.light", - "type": "color" - }, - "green": { - "value": "$alert.icon.green.light", - "type": "color" - }, - "yellow": { - "value": "$alert.icon.yellow.light", - "type": "color" - }, - "red": { - "value": "$alert.icon.red.light", - "type": "color" - } - }, - "highlight": { - "blue": { - "value": "$alert.highlight.blue.light", - "type": "color" - }, - "green": { - "value": "$alert.highlight.green.light", - "type": "color" - }, - "yellow": { - "value": "$alert.highlight.yellow.light", - "type": "color" - }, - "red": { - "value": "$alert.highlight.red.light", - "type": "color" - } - } - }, - "tip": { - "font": { - "heading": { - "value": "$tip.font.heading.light", - "type": "color" - }, - "description": { - "value": "$tip.font.description.light", - "type": "color" - } - }, - "icon": { - "value": "$tip.icon.light", - "type": "color" - }, - "background": { - "default": { - "light": { - "value": "$tip.background.default.light", - "type": "color" - } - } - }, - "border": { - "default": { - "value": "$tip.border.default.light", - "type": "color" - } - } - }, - "color-picker": { - "font": { - "label": { - "value": "$color-picker.font.label.light", - "type": "color" - } - }, - "icon": { - "value": "$color-picker.icon.light", - "type": "color" - }, - "border": { - "value": "$color-picker.border.light", - "type": "color" - }, - "background": { - "default": { - "value": "$color-picker.background.default.light", - "type": "color" - } - } - }, - "date-picker": { - "font": { - "date": { - "value": "$date-picker.font.date.light", - "type": "color" - }, - "range": { - "date": { - "value": "$date-picker.font.range.date.light", - "type": "color" - } - }, - "day": { - "value": "{date-picker.font.day.light}", - "type": "color" - }, - "month": { - "value": "$date-picker.font.month.light", - "type": "color" - }, - "selected": { - "date": { - "value": "$date-picker.font.selected.date.light", - "type": "color" - } - }, - "active": { - "date": { - "value": "$date-picker.font.active.date.light", - "type": "color" - } - } - }, - "icon": { - "value": "$date-picker.icon.light", - "type": "color" - }, - "border": { - "value": "$date-picker.border.light", - "type": "color" - }, - "date": { - "active": { - "border": { - "value": "$date-picker.date.active.border.light", - "type": "color" - } - } - }, - "background": { - "default": { - "value": "$date-picker.background.default.light", - "type": "color" - }, - "date": { - "range": { - "value": "$date-picker.background.date.range.light", - "type": "color" - }, - "active": { - "light": { - "value": "$date-picker.background.date.active.light", - "type": "color" - } - } - } - } - }, - "input-date-picker": { - "font": { - "placeholder-value": { - "value": "$input-date-picker.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-date-picker.font.label.light", - "type": "color" - } - }, - "icon": { - "value": "$input-date-picker.icon.light", - "type": "color" - }, - "border": { - "value": "$input-date-picker.border.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-date-picker.background.default.light", - "type": "color" - }, - "arrow": { - "value": "$input-date-picker.background.arrow.light", - "type": "color" - }, - "read-only": { - "value": "$input-date-picker.background.read-only.light", - "type": "color" - } - } - }, - "input-datetime-local": { - "font": { - "placeholder-value": { - "value": "$input-datetime-local.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-datetime-local.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-datetime-local.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-datetime-local.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-datetime-local.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-datetime-local.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-datetime-local.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-datetime-local.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-datetime-local.border.invalid.light", - "type": "color" - } - } - }, - "input-email": { - "font": { - "placeholder-value": { - "value": "$input-email.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-email.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-email.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-email.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-email.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-email.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-email.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-email.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-email.border.invalid.light", - "type": "color" - } - } - }, - "input-file": { - "font": { - "placeholder-value": { - "value": "$input-file.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-file.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-file.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-file.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-file.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-file.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-file.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-file.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-file.border.invalid.light", - "type": "color" - } - } - }, - "input-month": { - "font": { - "placeholder-value": { - "value": "$input-month.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-month.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-month.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-month.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-month.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-month.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-month.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-month.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-month.border.invalid.light", - "type": "color" - } - } - }, - "input-number": { - "font": { - "placeholder-value": { - "value": "$input-number.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-number.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-number.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-number.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-number.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-number.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-number.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-number.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-number.border.invalid.light", - "type": "color" - } - } - }, - "input-password": { - "font": { - "placeholder-value": { - "value": "$input-password.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-password.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-password.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-password.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-password.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-password.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-password.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-password.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-password.border.invalid.light", - "type": "color" - } - } - }, - "input-search": { - "font": { - "placeholder-value": { - "value": "$input-search.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-search.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-search.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-search.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-search.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-search.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-search.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-search.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-search.border.invalid.light", - "type": "color" - } - } - }, - "input-telephone": { - "font": { - "placeholder-value": { - "value": "$input-telephone.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-telephone.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-telephone.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-telephone.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-telephone.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-telephone.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-telephone.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-telephone.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-telephone.border.invalid.light", - "type": "color" - } - } - }, - "input-text": { - "font": { - "placeholder-value": { - "value": "$input-text.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-text.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-text.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-text.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-text.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-text.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-text.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-text.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-text.border.invalid.light", - "type": "color" - } - } - }, - "input-week": { - "font": { - "placeholder-value": { - "value": "$input-week.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$input-week.font.label.light", - "type": "color" - }, - "prefix-suffix": { - "value": "$input-week.font.prefix-suffix.light", - "type": "color" - } - }, - "icon": { - "value": "$input-week.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$input-week.background.default.light", - "type": "color" - }, - "prefix-sufix": { - "value": "$input-week.background.prefix-suffix.light", - "type": "color" - }, - "read-only": { - "value": "$input-week.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$input-week.border.default.light", - "type": "color" - }, - "invalid": { - "value": "$input-week.border.invalid.light", - "type": "color" - } - } - }, - "textarea": { - "font": { - "placeholder-value": { - "value": "$textarea.font.placeholder-value.light", - "type": "color" - }, - "label": { - "value": "$textarea.font.label.light", - "type": "color" - }, - "chat-limit": { - "value": "$textarea.font.chat-limit.light", - "type": "color" - } - }, - "icon": { - "value": "$textarea.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$textarea.background.default.light", - "type": "color" - }, - "read-only": { - "value": "$textarea.background.read-only.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "{textarea.border.light}", - "type": "color" - } - } - }, - "tab-title": { - "font": { - "default": { - "value": "$tab-title.font.default.light", - "type": "color" - }, - "active": { - "value": "$tab-title.font.active.light", - "type": "color" - } - }, - "icon": { - "default": { - "value": "$tab-title.icon.default.light", - "type": "color" - }, - "active": { - "value": "$tab-title.icon.active.light", - "type": "color" - } - }, - "bordered": { - "border": { - "value": "$tab-title.bordered.border.light", - "type": "color" - }, - "background": { - "default": { - "value": "$tab-title.bordered.background.default.light", - "type": "color" - } - } - }, - "border": { - "active": { - "value": "$tab-title.border.active.light", - "type": "color" - } - } - }, - "tabs": { - "bordered": { - "border": { - "value": "$tabs.bordered.border.light", - "type": "color" - }, - "background": { - "value": "$tabs.bordered.background.default.light", - "type": "color" - } - } - }, - "card": { - "font": { - "title": { - "value": "$card.font.title.light", - "type": "color" - }, - "subtitle": { - "value": "$card.font.subtitle.light", - "type": "color" - }, - "description": { - "value": "$card.font.description.light", - "type": "color" - } - }, - "border": { - "default": { - "value": "$card.border.default.light", - "type": "color" - }, - "active": { - "value": "$card.border.active.light", - "type": "color" - } - }, - "background": { - "default": { - "value": "$card.background.default.light", - "type": "color" - } - } - }, - "action": { - "font": { - "value": "$action.font.light", - "type": "color" - }, - "icon": { - "value": "$action.icon.light", - "type": "color" - }, - "background": { - "default": { - "value": "$action.background.default.light", - "type": "color" - }, - "active": { - "value": "$action.background.active.light", - "type": "color" - } - } - }, - "action-bar": { - "border": { - "value": "$action-bar.border.light", - "type": "color" - }, - "background": { - "value": "$action-bar.background.light", - "type": "color" - } - }, - "action-pad": { - "border": { - "value": "$action-pad.border.light", - "type": "color" - }, - "background": { - "value": "$action-pad.background.light", - "type": "color" - } - }, - "action-bar-grid": { - "border": { - "value": "$action-bar-grid.border.light", - "type": "color" - }, - "background": { - "value": "$action-bar-grid.background.light", - "type": "color" - } - }, - "action-pad-grid": { - "border": { - "value": "$action-pad-grid.border.light", - "type": "color" - }, - "background": { - "value": "$action-pad-grid.background.light", - "type": "color" - } - }, - "block": { - "font": { - "heading": { - "value": "$block.font.heading.light", - "type": "color" - }, - "active": { - "value": "$action.font.active.light", - - } - }, - "action-bar": { - "border": { - "value": "$action-bar.border.light", - "type": "color" - }, - "background": { - "value": "$action-bar.background.light", - "type": "color" - } - }, - "action-pad": { - "border": { - "value": "$action-pad.border.light", - "type": "color" - }, - "background": { - "value": "$action-pad.background.light", - "type": "color" - } - }, - "action-bar-grid": { - "border": { - "value": "$action-bar-grid.border.light", - "type": "color" - }, - "background": { - "value": "$action-bar-grid.background.light", - "type": "color" - } - }, - "action-pad-grid": { - "border": { - "value": "$action-pad-grid.border.light", - "type": "color" - }, - "background": { - "value": "$action-pad-grid.background.light", - "type": "color" - } - }, - "block": { - "font": { - "heading": { - "value": "$block.font.heading.light", - "type": "color" - }, - "description": { - "value": "$block.font.description.light", - "type": "color" - }, - "content": { - "value": "$block.font.content.light", - "type": "color" - } - }, - "icon": { - "idle": { - "value": "$block.icon.idle.light", - "type": "color" - }, - "valid": { - "value": "$block.icon.valid.light", - "type": "color" - }, - "invalid": { - "value": "$block.icon.invalid.light", - "type": "color" - }, - "drag-handle": { - "value": "$block.icon.drag-handle.light", - "type": "color" - }, - "chevron": { - "value": "$block.icon.chevron.light", - "type": "color" - } - }, - "border": { - "value": "$block.border.light", - "type": "color" - }, - "background": { - "value": "$block.background.light", - "type": "color" - } - "idle": { - "value": "$block.icon.idle.light", - "type": "color" - }, - "valid": { - "value": "$block.icon.valid.light", - "type": "color" - }, - "invalid": { - "value": "$block.icon.invalid.light", - "type": "color" - }, - "drag-handle": { - "value": "$block.icon.drag-handle.light", - "type": "color" - }, - "chevron": { - "value": "$block.icon.chevron.light", - "type": "color" - } - }, - "border": { - "value": "$block.border.light", - "type": "color" - }, - "background": { - "value": "$block.background.light", - "type": "color" - } - }, - "block-section": { - "font": { - "value": "$block-section.font.light", - "type": "color" - }, - "icon": { - "valid": { - "value": "$block-section.icon.valid.light", - "type": "color" - }, - "invalid": { - "value": "$block-section.icon.invalid.light", - "type": "color" - }, - "chevron": { - "value": "$block-section.icon.chevron.light", - "type": "color" - } - }, - "background": { - "value": "$block-section.background.light", - "type": "color" - } - }, - "notice": { - "font": { - "title": { - "value": "$notice.font.title.light", - "type": "color" - }, - "message": { - "value": "$notice.font.message.light", - "type": "color" - } - }, - "background": { - "value": "$notice.background.light", - "type": "color" - }, - "icon": { - "info": { - "value": "$notice.icon.info.light", - "type": "color" - }, - "success": { - "value": "$notice.icon.success.light", - "type": "color" - }, - "warning": { - "value": "$notice.icon.warning.light", - "type": "color" - }, - "danger": { - "value": "$notice.icon.danger.light", - "type": "color" - }, - "brand": { - "value": "$notice.icon.brand.light", - "type": "color" - } - }, - "highlight": { - "info": { - "value": "$notice.highlight.info.light", - "type": "color" - }, - "success": { - "value": "$notice.highlight.success.light", - "type": "color" - }, - "warning": { - "value": "$notice.highlight.warning.light", - "type": "color" - }, - "danger": { - "value": "$notice.highlight.danger.light", - "type": "color" - }, - "brand": { - "value": "$notice.highlight.brand.light", - "type": "color" - } - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index cf6419183c3..837a28961c6 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -199,11 +199,11 @@ "border": { "default": { "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", "type": "color" } }, @@ -369,4 +369,4 @@ "type": "opacity" } } -} +} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 042fe740f66..6e0e9800f70 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -250,4 +250,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index b9152e66ef3..461acf06414 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -109,20 +109,20 @@ } } }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } - }, "space-between": { "sm": { "value": "$core.spacing.none", @@ -207,7 +207,6 @@ }, "lg": { "value": "$core.spacing.none", - "type": "spacing" } }, diff --git a/tokens/semantic.json b/tokens/semantic.json index 3ac92afce5a..6f678e878b4 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1680,4 +1680,4 @@ } } } -} +} \ No newline at end of file From 78d51dd877dc99876bf4d0e091df8a28112642f6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Mar 2023 09:17:38 -0700 Subject: [PATCH 475/696] fix: token studio makes odd decisions about merges This paritally reverts commit 351bd1353ffdfab61d0474e21b9fd2429228d81e. --- tokens/$metadata.json | 13 +- tokens/$themes.json | 3 + tokens/calcite/dark.json | 1487 ++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 1502 +++++++++++++++++++++++++++++++++++++ 4 files changed, 3002 insertions(+), 3 deletions(-) create mode 100644 tokens/calcite/dark.json create mode 100644 tokens/calcite/light.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 5956145bf0b..2369fec4f6b 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -19,6 +19,9 @@ "component/block", "component/block-section", "component/card", + "component/checkbox", + "component/chip", + "component/combobox", "component/date-picker", "component/color-picker", "component/input-date-picker", @@ -34,6 +37,7 @@ "component/input-time", "component/input-text", "component/input-week", + "component/date-picker", "component/modal-medium", "component/notice", "component/textarea", @@ -44,6 +48,8 @@ "component/tab-title", "component/tabs", "component/rating", + "component/tab-title", + "component/tabs", "component/tip", "component/tooltip", "component/pagination", @@ -53,9 +59,10 @@ "component/switch", "component/[template-comp-name]", "component/accordion_backup", + "calcite/light", + "calcite/dark", "brand/global", "brand/light", - "brand/dark", - "component/combobox" + "brand/dark" ] -} \ No newline at end of file +} diff --git a/tokens/$themes.json b/tokens/$themes.json index e4f15268f9c..430d9e80f5c 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -25,6 +25,7 @@ "id": "dde8954f0b730e49860d3c5e7608e7601dd1ed8a", "name": "Calcite - Dark", "selectedTokenSets": { + "calcite/dark": "enabled", "component/avatar": "source", "component/button": "source", "component/checkbox": "source", @@ -115,6 +116,7 @@ "selectedTokenSets": { "core": "source", "semantic": "source", + "calcite/light": "enabled", "component/label": "source", "component/avatar": "source", "component/checkbox": "source", @@ -135,6 +137,7 @@ "component/segmented-control": "source", "component/switch": "source", "component/stepper-item": "source" + }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json new file mode 100644 index 00000000000..7037496668a --- /dev/null +++ b/tokens/calcite/dark.json @@ -0,0 +1,1487 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.dark", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + }, + "3": { + "value": "{semantic.ui.color.foreground.current.dark}", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.dark", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.dark", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.dark", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.dark", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.dark", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.dark", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.dark", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.dark", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.dark", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.dark", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.dark", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.dark", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.dark", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.dark", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.dark", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.dark", + "type": "color" + }, + "border": { + "value": "$checkbox.border.dark", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.dark", + "type": "color" + }, + "background": { + "value": "$radio.background.dark", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.dark", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.dark", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.dark", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.dark", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.dark", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.dark", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.dark", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.dark", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.dark", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.dark", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.dark", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.dark", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.dark", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.dark", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.dark", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.dark", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.dark", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.dark", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.dark", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.dark", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.dark", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.dark", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.dark", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.dark", + "type": "color" + }, + "border": { + "value": "$tooltip.border.dark", + "type": "color" + }, + "font": { + "value": "$tooltip.font.dark", + "type": "color" + } + }, + "accordion-item": { + "font": { + "heading": { + "value": "$accordion-item.font.heading.dark", + "type": "color" + }, + "description": { + "value": "$accordion-item.font.description.dark", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$accordion-item.icon.default.dark", + "type": "color" + }, + "expanded": { + "value": "$accordion-item.icon.expanded.dark", + "type": "color" + } + }, + "background": { + "value": "$accordion-item.background.default.dark", + "type": "color" + }, + "border": { + "value": "$accordion-item.border.dark", + "type": "color" + } + }, + "input-message": { + "font": { + "value": "$input-message.font.dark", + "type": "color" + }, + "icon": { + "idle": { + "value": "$input-message.icon.idle.dark", + "type": "color" + }, + "invalid": { + "value": "$input-message.icon.invalid.dark", + "type": "color" + }, + "valid": { + "value": "$input-message.icon.valid.dark", + "type": "color" + } + } + }, + "alert": { + "font": { + "title": { + "value": "$alert.font.title.dark", + "type": "color" + }, + "message": { + "value": "$alert.font.message.dark", + "type": "color" + } + }, + "background": { + "value": "$alert.background.dark", + "type": "color" + }, + "border": { + "value": "$alert.border.dark", + "type": "color" + }, + "icon": { + "blue": { + "value": "$alert.icon.blue.dark", + "type": "color" + }, + "green": { + "value": "$alert.icon.green.dark", + "type": "color" + }, + "yellow": { + "value": "$alert.icon.yellow.dark", + "type": "color" + }, + "red": { + "value": "$alert.icon.red.dark", + "type": "color" + } + }, + "highlight": { + "blue": { + "value": "$alert.icon.blue.dark", + "type": "color" + }, + "green": { + "value": "$alert.icon.green.dark", + "type": "color" + }, + "yellow": { + "value": "$alert.icon.yellow.dark", + "type": "color" + }, + "red": { + "value": "$alert.icon.red.dark", + "type": "color" + } + } + }, + "color-picker": { + "font": { + "label": { + "value": "$color-picker.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$color-picker.icon.dark", + "type": "color" + }, + "border": { + "value": "$color-picker.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$color-picker.background.default.dark", + "type": "color" + } + } + }, + "date-picker": { + "font": { + "date": { + "value": "$date-picker.font.date.dark", + "type": "color" + }, + "day": { + "value": "$date-picker.font.day.dark", + "type": "color" + }, + "month": { + "value": "$date-picker.font.month.dark", + "type": "color" + }, + "range": { + "date": { + "value": "$date-picker.font.range.date.dark", + "type": "color" + } + }, + "selected": { + "date": { + "value": "$date-picker.font.selected.date.dark", + "type": "color" + } + }, + "active": { + "date": { + "value": "$date-picker.font.active.date.dark", + "type": "color" + } + } + }, + "icon": { + "value": "$date-picker.icon.dark", + "type": "color" + }, + "border": { + "value": "$date-picker.border.dark", + "type": "color" + }, + "date": { + "active": { + "border": { + "value": "$date-picker.date.active.border.dark", + "type": "color" + } + } + }, + "background": { + "default": { + "value": "$date-picker.background.default.dark", + "type": "color" + }, + "date": { + "range": { + "value": "$date-picker.background.date.range.dark", + "type": "color" + }, + "active": { + "value": "$date-picker.background.date.active.dark", + "type": "color" + } + } + } + }, + "input-date-picker": { + "font": { + "placeholder-value": { + "value": "$input-date-picker.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-date-picker.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-date-picker.icon.dark", + "type": "color" + }, + "border": { + "value": "$input-date-picker.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-date-picker.background.default.dark", + "type": "color" + }, + "arrow": { + "value": "$input-date-picker.background.arrow.dark", + "type": "color" + }, + "read-only": { + "value": "$input-date-picker.background.read-only.dark", + "type": "color" + } + } + }, + "input-datetime-local": { + "font": { + "placeholder-value": { + "value": "$input-datetime-local.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-datetime-local.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-datetime-local.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-datetime-local.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-datetime-local.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-datetime-local.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-datetime-local.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-datetime-local.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-datetime-local.border.invalid.dark", + "type": "color" + } + } + }, + "input-email": { + "font": { + "placeholder-value": { + "value": "$input-email.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-email.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-email.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-email.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-email.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-email.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-email.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-email.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-email.border.invalid.dark", + "type": "color" + } + } + }, + "input-file": { + "font": { + "placeholder-value": { + "value": "$input-file.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-file.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-file.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-file.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-file.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-file.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-file.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-file.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-file.border.invalid.dark", + "type": "color" + } + } + }, + "input-month": { + "font": { + "placeholder-value": { + "value": "$input-month.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-month.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-month.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-month.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-month.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-month.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-month.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-month.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-month.border.invalid.dark", + "type": "color" + } + } + }, + "input-number": { + "font": { + "placeholder-value": { + "value": "$input-number.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-number.font.label.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-number.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-number.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-number.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-number.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-number.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-number.border.invalid.dark", + "type": "color" + } + } + }, + "input-password": { + "font": { + "placeholder-value": { + "value": "$input-password.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-password.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-password.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-password.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-password.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-password.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-password.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-password.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-password.border.invalid.dark", + "type": "color" + } + } + }, + "input-search": { + "font": { + "placeholder-value": { + "value": "$input-search.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-search.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-search.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-search.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-search.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-search.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-search.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-search.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-search.border.invalid.dark", + "type": "color" + } + } + }, + "input-telephone": { + "font": { + "placeholder-value": { + "value": "$input-telephone.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-telephone.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-telephone.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-telephone.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-telephone.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-telephone.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-telephone.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-telephone.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-telephone.border.invalid.dark", + "type": "color" + } + } + }, + "input-text": { + "font": { + "placeholder-value": { + "value": "$input-text.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-text.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-text.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-text.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-text.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-text.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-text.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-text.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-text.border.invalid.dark", + "type": "color" + } + } + }, + "input-week": { + "font": { + "placeholder-value": { + "value": "$input-week.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$input-week.font.label.dark", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-week.font.prefix-suffix.dark", + "type": "color" + } + }, + "icon": { + "value": "$input-week.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$input-week.background.default.dark", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-week.background.prefix-suffix.dark", + "type": "color" + }, + "read-only": { + "value": "$input-week.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-week.border.default.dark", + "type": "color" + }, + "invalid": { + "value": "$input-week.border.invalid.dark", + "type": "color" + } + } + }, + "textarea": { + "font": { + "placeholder-value": { + "value": "$textarea.font.placeholder-value.dark", + "type": "color" + }, + "label": { + "value": "$textarea.font.label.dark", + "type": "color" + }, + "chat-limit": { + "value": "$textarea.font.chat-limit.dark", + "type": "color" + } + }, + "icon": { + "value": "$textarea.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$textarea.background.default.dark", + "type": "color" + }, + "read-only": { + "value": "$textarea.background.read-only.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$textarea.border.dark", + "type": "color" + } + } + }, + "tab-title": { + "font": { + "default": { + "value": "$tab-title.font.default.dark", + "type": "color" + }, + "active": { + "value": "$tab-title.font.active.dark", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$tab-title.icon.default.dark", + "type": "color" + }, + "active": { + "value": "$tab-title.icon.active.dark", + "type": "color" + } + }, + "bordered": { + "border": { + "value": "$tab-title.bordered.border.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$tab-title.bordered.background.default.dark", + "type": "color" + } + } + }, + "border": { + "active": { + "value": "$tab-title.border.active.dark", + "type": "color" + } + } + }, + "tabs": { + "bordered": { + "border": { + "value": "$tabs.bordered.border.dark", + "type": "color" + }, + "background": { + "value": "$tabs.bordered.background.default.dark", + "type": "color" + } + } + }, + "card": { + "font": { + "title": { + "value": "$card.font.title.dark", + "type": "color" + }, + "subtitle": { + "value": "$card.font.subtitle.dark", + "type": "color" + }, + "description": { + "value": "$card.font.description.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$card.border.default.dark", + "type": "color" + }, + "active": { + "value": "$card.border.active.dark", + "type": "color" + } + }, + "background": { + "default": { + "value": "$card.background.default.dark", + "type": "color" + } + } + }, + "action": { + "indicator": { + "value": "$action.indicator.dark", + "type": "color" + }, + "font": { + "value": "$action.font.dark", + "type": "color" + }, + "icon": { + "value": "$action.icon.dark", + "type": "color" + }, + "background": { + "default": { + "value": "$action.background.default.dark", + "type": "color" + }, + "active": { + "value": "$action.background.active.dark", + "type": "color" + } + } + }, + "action-bar": { + "border": { + "value": "$action-bar.border.dark", + "type": "color" + }, + "background": { + "value": "$action-bar.background.dark", + "type": "color" + } + }, + "action-pad": { + "border": { + "value": "$action-pad.border.dark", + "type": "color" + }, + "background": { + "value": "$action-pad.background.dark", + "type": "color" + } + }, + "action-bar-grid": { + "border": { + "value": "$action-bar-grid.border.dark", + "type": "color" + }, + "background": { + "value": "$action-bar-grid.background.dark", + "type": "color" + } + }, + "action-pad-grid": { + "border": { + "value": "$action-pad-grid.border.dark", + "type": "color" + }, + "background": { + "value": "$action-pad-grid.background.dark", + "type": "color" + } + }, + "block": { + "font": { + "heading": { + "value": "$block.font.heading.dark", + "type": "color" + }, + "description": { + "value": "$block.font.description.dark", + "type": "color" + }, + "content": { + "value": "$block.font.content.dark", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$action.icon.default.dark", + "type": "color" + }, + "active": { + "value": "$action.icon.active.dark", + "type": "color" + } + }, + "loader": { + "value": "$action.loader-icon.dark", + "type": "color" + } + "idle": { + "value": "$block.icon.idle.dark", + "type": "color" + }, + "valid": { + "value": "$block.icon.valid.dark", + "type": "color" + }, + "invalid": { + "value": "$block.icon.invalid.dark", + "type": "color" + }, + "drag-handle": { + "value": "$block.icon.drag-handle.dark", + "type": "color" + }, + "chevron": { + "value": "$block.icon.chevron.dark", + "type": "color" + } + }, + "border": { + "value": "$block.border.light", + "type": "color" + }, + "background": { + "value": "$block.background.dark", + "type": "color" + } + }, + "block-section": { + "font": { + "value": "$block-section.font.dark", + "type": "color" + }, + "icon": { + "valid": { + "value": "$block-section.icon.valid.dark", + "type": "color" + }, + "invalid": { + "value": "$block-section.icon.invalid.dark", + "type": "color" + }, + "chevron": { + "value": "$block-section.icon.chevron.dark", + "type": "color" + } + }, + "background": { + "value": "$block-section.background.dark", + "type": "color" + } + }, + "notice": { + "font": { + "title": { + "value": "$notice.font.title.dark", + "type": "color" + }, + "message": { + "value": "$notice.font.message.dark", + "type": "color" + } + }, + "background": { + "value": "$notice.background.dark", + "type": "color" + }, + "icon": { + "info": { + "value": "$notice.icon.info.dark", + "type": "color" + }, + "success": { + "value": "$notice.icon.success.dark", + "type": "color" + }, + "warning": { + "value": "$notice.icon.warning.dark", + "type": "color" + }, + "danger": { + "value": "$notice.icon.danger.dark", + "type": "color" + }, + "brand": { + "value": "$notice.icon.brand.dark", + "type": "color" + } + }, + "highlight": { + "info": { + "value": "$notice.highlight.info.dark", + "type": "color" + }, + "success": { + "value": "$notice.highlight.success.dark", + "type": "color" + }, + "warning": { + "value": "$notice.highlight.warning.dark", + "type": "color" + }, + "danger": { + "value": "$notice.highlight.danger.dark", + "type": "color" + }, + "brand": { + "value": "$notice.highlight.brand.dark", + "type": "color" + } + } + }, + "block-section": { + "font": { + "value": "$block-section.font.dark", + "type": "color" + }, + "icon": { + "valid": { + "value": "$block-section.icon.valid.dark", + "type": "color" + }, + "invalid": { + "value": "$block-section.icon.invalid.dark", + "type": "color" + }, + "chevron": { + "value": "$block-section.icon.chevron.dark", + "type": "color" + } + }, + "background": { + "value": "$block-section.background.dark", + "type": "color" + } + }, + "notice": { + "font": { + "title": { + "value": "$notice.font.title.dark", + "type": "color" + }, + "message": { + "value": "$notice.font.message.dark", + "type": "color" + } + }, + "background": { + "value": "$notice.background.dark", + "type": "color" + }, + "icon": { + "info": { + "value": "$notice.icon.info.dark", + "type": "color" + }, + "success": { + "value": "$notice.icon.success.dark", + "type": "color" + }, + "warning": { + "value": "$notice.icon.warning.dark", + "type": "color" + }, + "danger": { + "value": "$notice.icon.danger.dark", + "type": "color" + }, + "brand": { + "value": "$notice.icon.brand.dark", + "type": "color" + } + }, + "highlight": { + "info": { + "value": "$notice.highlight.info.dark", + "type": "color" + }, + "success": { + "value": "$notice.highlight.success.dark", + "type": "color" + }, + "warning": { + "value": "$notice.highlight.warning.dark", + "type": "color" + }, + "danger": { + "value": "$notice.highlight.danger.dark", + "type": "color" + }, + "brand": { + "value": "$notice.highlight.brand.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json new file mode 100644 index 00000000000..8e39849da2a --- /dev/null +++ b/tokens/calcite/light.json @@ -0,0 +1,1502 @@ +{ + "color": { + "brand": { + "default": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.brand.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.brand.press.light", + "type": "color" + } + }, + "background": { + "1": { + "value": "$semantic.ui.color.background.light", + "type": "color" + } + }, + "foreground": { + "1": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "3": { + "value": "{semantic.ui.color.foreground.current.light}", + "type": "color" + } + }, + "text": { + "1": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "inverse": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "link": { + "value": "$semantic.ui.color.text.link.light", + "type": "color" + } + }, + "border": { + "1": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "2": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "3": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "input": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + } + }, + "info": { + "default": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.info.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.info.press.light", + "type": "color" + } + }, + "success": { + "default": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.success.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.success.press.light", + "type": "color" + } + }, + "warning": { + "default": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.warning.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.warning.press.light", + "type": "color" + } + }, + "danger": { + "default": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "hover": { + "value": "$semantic.ui.color.danger.hover.light", + "type": "color" + }, + "press": { + "value": "$semantic.ui.color.danger.press.light", + "type": "color" + } + }, + "inverse": { + "default": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + } + }, + "component": { + "avatar": { + "font": { + "value": "$avatar.font.light", + "type": "color" + }, + "icon": { + "value": "$avatar.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$avatar.background.default.light", + "type": "color" + }, + "red": { + "value": "$avatar.background.red.light", + "type": "color" + }, + "teal": { + "value": "$avatar.background.teal.light", + "type": "color" + }, + "blue": { + "value": "$avatar.background.blue.light", + "type": "color" + }, + "green": { + "value": "$avatar.background.green.light", + "type": "color" + }, + "yellow": { + "value": "$avatar.background.yellow.light", + "type": "color" + } + } + }, + "checkbox": { + "font": { + "value": "$checkbox.font.light", + "type": "color" + }, + "background": { + "default": { + "value": "$checkbox.background.default.light", + "type": "color" + }, + "selected": { + "value": "$checkbox.background.selected.light", + "type": "color" + } + }, + "icon": { + "value": "$checkbox.icon.light", + "type": "color" + }, + "border": { + "value": "$checkbox.border.light", + "type": "color" + } + }, + "radio": { + "font": { + "value": "$radio.font.light", + "type": "color" + }, + "background": { + "value": "$radio.background.light", + "type": "color" + }, + "border": { + "unchecked": { + "value": "$radio.border.unchecked.light", + "type": "color" + }, + "checked": { + "value": "$radio.border.checked.light", + "type": "color" + } + } + }, + "chip": { + "font": { + "clear": { + "value": "$chip.font.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.font.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.font.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.font.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.font.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.font.solid.green.light", + "type": "color" + } + } + }, + "icon": { + "clear": { + "value": "$chip.icon.clear.light", + "type": "color" + }, + "solid": { + "grey": { + "value": "$chip.icon.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.icon.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.icon.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.icon.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.icon.solid.green.light", + "type": "color" + } + } + }, + "closable-icon": { + "value": "$chip.closable-icon.light", + "type": "color" + }, + "background": { + "solid": { + "grey": { + "value": "$chip.background.solid.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.background.solid.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.background.solid.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.background.solid.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.background.solid.green.light", + "type": "color" + } + } + }, + "border": { + "clear": { + "grey": { + "value": "$chip.border.clear.grey.light", + "type": "color" + }, + "blue": { + "value": "$chip.border.clear.blue.light", + "type": "color" + }, + "red": { + "value": "$chip.border.clear.red.light", + "type": "color" + }, + "yellow": { + "value": "$chip.border.clear.yellow.light", + "type": "color" + }, + "green": { + "value": "$chip.border.clear.green.light", + "type": "color" + } + } + } + }, + "label": { + "font": { + "value": "$label.font.light", + "type": "color" + } + }, + "loader": { + "font": { + "value": "$loader.font.light", + "type": "color" + }, + "default": { + "foreground": { + "value": "$loader.default.foreground.light", + "type": "color" + } + }, + "inline": { + "foreground": { + "indeterminate": { + "value": "$loader.inline.foreground.indeterminate.light", + "type": "color" + }, + "determinate": { + "value": "$loader.inline.foreground.determinate.light", + "type": "color" + } + } + } + }, + "rating": { + "star": { + "background": { + "default": { + "value": "$rating.star.background.default.light", + "type": "color" + }, + "active": { + "value": "$rating.star.background.active.light", + "type": "color" + }, + "average": { + "value": "$rating.star.background.average.light", + "type": "color" + } + } + }, + "chip": { + "value-text": { + "font": { + "value": "$rating.chip.value-text.font.light", + "type": "color" + } + }, + "count": { + "font": { + "value": "$rating.chip.count.font.light", + "type": "color" + } + }, + "foreground": { + "value": "$rating.chip.foreground.light", + "type": "color" + } + } + }, + "tooltip": { + "foreground": { + "value": "$tooltip.foreground.light", + "type": "color" + }, + "border": { + "value": "$tooltip.border.light", + "type": "color" + }, + "font": { + "value": "$tooltip.font.light", + "type": "color" + } + }, + "accordion-item": { + "font": { + "heading": { + "value": "$accordion-item.font.heading.light", + "type": "color" + }, + "description": { + "value": "$accordion-item.font.description.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$accordion-item.icon.default.light", + "type": "color" + }, + "expanded": { + "value": "$accordion-item.icon.expanded.light", + "type": "color" + } + }, + "background": { + "value": "$accordion-item.background.default.light", + "type": "color" + }, + "border": { + "value": "$accordion-item.border.light", + "type": "color" + } + }, + "input-message": { + "font": { + "value": "$input-message.font.light", + "type": "color" + }, + "icon": { + "idle": { + "value": "$input-message.icon.idle.light", + "type": "color" + }, + "invalid": { + "value": "$input-message.icon.invalid.light", + "type": "color" + }, + "valid": { + "value": "$input-message.icon.valid.light", + "type": "color" + } + } + }, + "alert": { + "font": { + "title": { + "value": "$alert.font.title.light", + "type": "color" + }, + "message": { + "value": "$alert.font.message.light", + "type": "color" + } + }, + "background": { + "value": "$alert.background.light", + "type": "color" + }, + "border": { + "value": "$alert.border.light", + "type": "color" + }, + "icon": { + "blue": { + "value": "$alert.icon.blue.light", + "type": "color" + }, + "green": { + "value": "$alert.icon.green.light", + "type": "color" + }, + "yellow": { + "value": "$alert.icon.yellow.light", + "type": "color" + }, + "red": { + "value": "$alert.icon.red.light", + "type": "color" + } + }, + "highlight": { + "blue": { + "value": "$alert.highlight.blue.light", + "type": "color" + }, + "green": { + "value": "$alert.highlight.green.light", + "type": "color" + }, + "yellow": { + "value": "$alert.highlight.yellow.light", + "type": "color" + }, + "red": { + "value": "$alert.highlight.red.light", + "type": "color" + } + } + }, + "tip": { + "font": { + "heading": { + "value": "$tip.font.heading.light", + "type": "color" + }, + "description": { + "value": "$tip.font.description.light", + "type": "color" + } + }, + "icon": { + "value": "$tip.icon.light", + "type": "color" + }, + "background": { + "default": { + "light": { + "value": "$tip.background.default.light", + "type": "color" + } + } + }, + "border": { + "default": { + "value": "$tip.border.default.light", + "type": "color" + } + } + }, + "color-picker": { + "font": { + "label": { + "value": "$color-picker.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$color-picker.icon.light", + "type": "color" + }, + "border": { + "value": "$color-picker.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$color-picker.background.default.light", + "type": "color" + } + } + }, + "date-picker": { + "font": { + "date": { + "value": "$date-picker.font.date.light", + "type": "color" + }, + "range": { + "date": { + "value": "$date-picker.font.range.date.light", + "type": "color" + } + }, + "day": { + "value": "{date-picker.font.day.light}", + "type": "color" + }, + "month": { + "value": "$date-picker.font.month.light", + "type": "color" + }, + "selected": { + "date": { + "value": "$date-picker.font.selected.date.light", + "type": "color" + } + }, + "active": { + "date": { + "value": "$date-picker.font.active.date.light", + "type": "color" + } + } + }, + "icon": { + "value": "$date-picker.icon.light", + "type": "color" + }, + "border": { + "value": "$date-picker.border.light", + "type": "color" + }, + "date": { + "active": { + "border": { + "value": "$date-picker.date.active.border.light", + "type": "color" + } + } + }, + "background": { + "default": { + "value": "$date-picker.background.default.light", + "type": "color" + }, + "date": { + "range": { + "value": "$date-picker.background.date.range.light", + "type": "color" + }, + "active": { + "light": { + "value": "$date-picker.background.date.active.light", + "type": "color" + } + } + } + } + }, + "input-date-picker": { + "font": { + "placeholder-value": { + "value": "$input-date-picker.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-date-picker.font.label.light", + "type": "color" + } + }, + "icon": { + "value": "$input-date-picker.icon.light", + "type": "color" + }, + "border": { + "value": "$input-date-picker.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-date-picker.background.default.light", + "type": "color" + }, + "arrow": { + "value": "$input-date-picker.background.arrow.light", + "type": "color" + }, + "read-only": { + "value": "$input-date-picker.background.read-only.light", + "type": "color" + } + } + }, + "input-datetime-local": { + "font": { + "placeholder-value": { + "value": "$input-datetime-local.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-datetime-local.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-datetime-local.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-datetime-local.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-datetime-local.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-datetime-local.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-datetime-local.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-datetime-local.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-datetime-local.border.invalid.light", + "type": "color" + } + } + }, + "input-email": { + "font": { + "placeholder-value": { + "value": "$input-email.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-email.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-email.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-email.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-email.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-email.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-email.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-email.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-email.border.invalid.light", + "type": "color" + } + } + }, + "input-file": { + "font": { + "placeholder-value": { + "value": "$input-file.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-file.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-file.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-file.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-file.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-file.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-file.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-file.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-file.border.invalid.light", + "type": "color" + } + } + }, + "input-month": { + "font": { + "placeholder-value": { + "value": "$input-month.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-month.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-month.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-month.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-month.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-month.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-month.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-month.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-month.border.invalid.light", + "type": "color" + } + } + }, + "input-number": { + "font": { + "placeholder-value": { + "value": "$input-number.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-number.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-number.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-number.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-number.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-number.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-number.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-number.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-number.border.invalid.light", + "type": "color" + } + } + }, + "input-password": { + "font": { + "placeholder-value": { + "value": "$input-password.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-password.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-password.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-password.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-password.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-password.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-password.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-password.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-password.border.invalid.light", + "type": "color" + } + } + }, + "input-search": { + "font": { + "placeholder-value": { + "value": "$input-search.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-search.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-search.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-search.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-search.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-search.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-search.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-search.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-search.border.invalid.light", + "type": "color" + } + } + }, + "input-telephone": { + "font": { + "placeholder-value": { + "value": "$input-telephone.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-telephone.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-telephone.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-telephone.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-telephone.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-telephone.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-telephone.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-telephone.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-telephone.border.invalid.light", + "type": "color" + } + } + }, + "input-text": { + "font": { + "placeholder-value": { + "value": "$input-text.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-text.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-text.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-text.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-text.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-text.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-text.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-text.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-text.border.invalid.light", + "type": "color" + } + } + }, + "input-week": { + "font": { + "placeholder-value": { + "value": "$input-week.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$input-week.font.label.light", + "type": "color" + }, + "prefix-suffix": { + "value": "$input-week.font.prefix-suffix.light", + "type": "color" + } + }, + "icon": { + "value": "$input-week.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$input-week.background.default.light", + "type": "color" + }, + "prefix-sufix": { + "value": "$input-week.background.prefix-suffix.light", + "type": "color" + }, + "read-only": { + "value": "$input-week.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$input-week.border.default.light", + "type": "color" + }, + "invalid": { + "value": "$input-week.border.invalid.light", + "type": "color" + } + } + }, + "textarea": { + "font": { + "placeholder-value": { + "value": "$textarea.font.placeholder-value.light", + "type": "color" + }, + "label": { + "value": "$textarea.font.label.light", + "type": "color" + }, + "chat-limit": { + "value": "$textarea.font.chat-limit.light", + "type": "color" + } + }, + "icon": { + "value": "$textarea.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$textarea.background.default.light", + "type": "color" + }, + "read-only": { + "value": "$textarea.background.read-only.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "{textarea.border.light}", + "type": "color" + } + } + }, + "tab-title": { + "font": { + "default": { + "value": "$tab-title.font.default.light", + "type": "color" + }, + "active": { + "value": "$tab-title.font.active.light", + "type": "color" + } + }, + "icon": { + "default": { + "value": "$tab-title.icon.default.light", + "type": "color" + }, + "active": { + "value": "$tab-title.icon.active.light", + "type": "color" + } + }, + "bordered": { + "border": { + "value": "$tab-title.bordered.border.light", + "type": "color" + }, + "background": { + "default": { + "value": "$tab-title.bordered.background.default.light", + "type": "color" + } + } + }, + "border": { + "active": { + "value": "$tab-title.border.active.light", + "type": "color" + } + } + }, + "tabs": { + "bordered": { + "border": { + "value": "$tabs.bordered.border.light", + "type": "color" + }, + "background": { + "value": "$tabs.bordered.background.default.light", + "type": "color" + } + } + }, + "card": { + "font": { + "title": { + "value": "$card.font.title.light", + "type": "color" + }, + "subtitle": { + "value": "$card.font.subtitle.light", + "type": "color" + }, + "description": { + "value": "$card.font.description.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$card.border.default.light", + "type": "color" + }, + "active": { + "value": "$card.border.active.light", + "type": "color" + } + }, + "background": { + "default": { + "value": "$card.background.default.light", + "type": "color" + } + } + }, + "action": { + "font": { + "value": "$action.font.light", + "type": "color" + }, + "icon": { + "value": "$action.icon.light", + "type": "color" + }, + "background": { + "default": { + "value": "$action.background.default.light", + "type": "color" + }, + "active": { + "value": "$action.background.active.light", + "type": "color" + } + } + }, + "action-bar": { + "border": { + "value": "$action-bar.border.light", + "type": "color" + }, + "background": { + "value": "$action-bar.background.light", + "type": "color" + } + }, + "action-pad": { + "border": { + "value": "$action-pad.border.light", + "type": "color" + }, + "background": { + "value": "$action-pad.background.light", + "type": "color" + } + }, + "action-bar-grid": { + "border": { + "value": "$action-bar-grid.border.light", + "type": "color" + }, + "background": { + "value": "$action-bar-grid.background.light", + "type": "color" + } + }, + "action-pad-grid": { + "border": { + "value": "$action-pad-grid.border.light", + "type": "color" + }, + "background": { + "value": "$action-pad-grid.background.light", + "type": "color" + } + }, + "block": { + "font": { + "heading": { + "value": "$block.font.heading.light", + "type": "color" + }, + "active": { + "value": "$action.font.active.light", + + } + }, + "action-bar": { + "border": { + "value": "$action-bar.border.light", + "type": "color" + }, + "background": { + "value": "$action-bar.background.light", + "type": "color" + } + }, + "action-pad": { + "border": { + "value": "$action-pad.border.light", + "type": "color" + }, + "background": { + "value": "$action-pad.background.light", + "type": "color" + } + }, + "action-bar-grid": { + "border": { + "value": "$action-bar-grid.border.light", + "type": "color" + }, + "background": { + "value": "$action-bar-grid.background.light", + "type": "color" + } + }, + "action-pad-grid": { + "border": { + "value": "$action-pad-grid.border.light", + "type": "color" + }, + "background": { + "value": "$action-pad-grid.background.light", + "type": "color" + } + }, + "block": { + "font": { + "heading": { + "value": "$block.font.heading.light", + "type": "color" + }, + "description": { + "value": "$block.font.description.light", + "type": "color" + }, + "content": { + "value": "$block.font.content.light", + "type": "color" + } + }, + "icon": { + "idle": { + "value": "$block.icon.idle.light", + "type": "color" + }, + "valid": { + "value": "$block.icon.valid.light", + "type": "color" + }, + "invalid": { + "value": "$block.icon.invalid.light", + "type": "color" + }, + "drag-handle": { + "value": "$block.icon.drag-handle.light", + "type": "color" + }, + "chevron": { + "value": "$block.icon.chevron.light", + "type": "color" + } + }, + "border": { + "value": "$block.border.light", + "type": "color" + }, + "background": { + "value": "$block.background.light", + "type": "color" + } + "idle": { + "value": "$block.icon.idle.light", + "type": "color" + }, + "valid": { + "value": "$block.icon.valid.light", + "type": "color" + }, + "invalid": { + "value": "$block.icon.invalid.light", + "type": "color" + }, + "drag-handle": { + "value": "$block.icon.drag-handle.light", + "type": "color" + }, + "chevron": { + "value": "$block.icon.chevron.light", + "type": "color" + } + }, + "border": { + "value": "$block.border.light", + "type": "color" + }, + "background": { + "value": "$block.background.light", + "type": "color" + } + }, + "block-section": { + "font": { + "value": "$block-section.font.light", + "type": "color" + }, + "icon": { + "valid": { + "value": "$block-section.icon.valid.light", + "type": "color" + }, + "invalid": { + "value": "$block-section.icon.invalid.light", + "type": "color" + }, + "chevron": { + "value": "$block-section.icon.chevron.light", + "type": "color" + } + }, + "background": { + "value": "$block-section.background.light", + "type": "color" + } + }, + "notice": { + "font": { + "title": { + "value": "$notice.font.title.light", + "type": "color" + }, + "message": { + "value": "$notice.font.message.light", + "type": "color" + } + }, + "background": { + "value": "$notice.background.light", + "type": "color" + }, + "icon": { + "info": { + "value": "$notice.icon.info.light", + "type": "color" + }, + "success": { + "value": "$notice.icon.success.light", + "type": "color" + }, + "warning": { + "value": "$notice.icon.warning.light", + "type": "color" + }, + "danger": { + "value": "$notice.icon.danger.light", + "type": "color" + }, + "brand": { + "value": "$notice.icon.brand.light", + "type": "color" + } + }, + "highlight": { + "info": { + "value": "$notice.highlight.info.light", + "type": "color" + }, + "success": { + "value": "$notice.highlight.success.light", + "type": "color" + }, + "warning": { + "value": "$notice.highlight.warning.light", + "type": "color" + }, + "danger": { + "value": "$notice.highlight.danger.light", + "type": "color" + }, + "brand": { + "value": "$notice.highlight.brand.light", + "type": "color" + } + } + } + } + } +} \ No newline at end of file From 0b1cfe0d04b533f19a7162d06ed4722625c986a8 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Mar 2023 10:32:02 -0700 Subject: [PATCH 476/696] fix: tokens JSON structure --- tokens/calcite/light.json | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 8e39849da2a..8750ca543e1 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1379,35 +1379,6 @@ "value": "$block.border.light", "type": "color" }, - "background": { - "value": "$block.background.light", - "type": "color" - } - "idle": { - "value": "$block.icon.idle.light", - "type": "color" - }, - "valid": { - "value": "$block.icon.valid.light", - "type": "color" - }, - "invalid": { - "value": "$block.icon.invalid.light", - "type": "color" - }, - "drag-handle": { - "value": "$block.icon.drag-handle.light", - "type": "color" - }, - "chevron": { - "value": "$block.icon.chevron.light", - "type": "color" - } - }, - "border": { - "value": "$block.border.light", - "type": "color" - }, "background": { "value": "$block.background.light", "type": "color" @@ -1499,4 +1470,4 @@ } } } -} \ No newline at end of file +} From 8f2d5f6ba509abdf8d41120b12e0c548bd65f501 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 23 Mar 2023 12:05:11 -0700 Subject: [PATCH 477/696] fix: JSON schema --- tokens/$themes.json | 2 +- tokens/brand/light.json | 2 +- tokens/calcite/dark.json | 97 ++-------------------- tokens/calcite/light.json | 50 +---------- tokens/component/[template-comp-name].json | 2 +- tokens/component/accordion-item.json | 2 +- tokens/component/accordion.json | 2 +- tokens/component/accordion_backup.json | 2 +- tokens/component/action-bar-grid.json | 2 +- tokens/component/action-bar.json | 2 +- tokens/component/action-pad-grid.json | 2 +- tokens/component/action-pad.json | 2 +- tokens/component/action.json | 2 +- tokens/component/alert.json | 2 +- tokens/component/avatar.json | 2 +- tokens/component/block-section.json | 2 +- tokens/component/block.json | 4 +- tokens/component/button.json | 2 +- tokens/component/card.json | 2 +- tokens/component/checkbox.json | 2 +- tokens/component/color-picker.json | 2 +- tokens/component/combobox.json | 2 +- tokens/component/date-picker.json | 2 +- tokens/component/dropdown.json | 2 +- tokens/component/fab.json | 2 +- tokens/component/input-date-picker.json | 2 +- tokens/component/input-datetime-local.json | 2 +- tokens/component/input-email.json | 2 +- tokens/component/input-file.json | 2 +- tokens/component/input-message.json | 2 +- tokens/component/input-month.json | 2 +- tokens/component/input-number.json | 2 +- tokens/component/input-password.json | 2 +- tokens/component/input-search.json | 2 +- tokens/component/input-telephone.json | 2 +- tokens/component/input-text.json | 2 +- tokens/component/input-week.json | 2 +- tokens/component/label.json | 2 +- tokens/component/link.json | 2 +- tokens/component/loader.json | 2 +- tokens/component/modal-medium.json | 2 +- tokens/component/notice.json | 2 +- tokens/component/pagination.json | 2 +- tokens/component/radio.json | 2 +- tokens/component/rating.json | 4 +- tokens/component/segmented-control.json | 2 +- tokens/component/stepper-item.json | 2 +- tokens/component/stepper.json | 2 +- tokens/component/switch.json | 2 +- tokens/component/tab-title.json | 2 +- tokens/component/tabs.json | 2 +- tokens/component/textarea.json | 2 +- tokens/component/tip.json | 2 +- tokens/component/tooltip.json | 2 +- tokens/core.json | 2 +- tokens/semantic.json | 2 +- 56 files changed, 63 insertions(+), 196 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 430d9e80f5c..2d63ff78d49 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -785,4 +785,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] \ No newline at end of file +] diff --git a/tokens/brand/light.json b/tokens/brand/light.json index a55d3c5bc32..22b5d0a4a8d 100644 --- a/tokens/brand/light.json +++ b/tokens/brand/light.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 7037496668a..49ba52feacc 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1278,12 +1278,7 @@ "active": { "value": "$action.icon.active.dark", "type": "color" - } - }, - "loader": { - "value": "$action.loader-icon.dark", - "type": "color" - } + }, "idle": { "value": "$block.icon.idle.dark", "type": "color" @@ -1305,6 +1300,10 @@ "type": "color" } }, + "loader": { + "value": "$action.loader-icon.dark", + "type": "color" + }, "border": { "value": "$block.border.light", "type": "color" @@ -1338,90 +1337,6 @@ "type": "color" } }, - "notice": { - "font": { - "title": { - "value": "$notice.font.title.dark", - "type": "color" - }, - "message": { - "value": "$notice.font.message.dark", - "type": "color" - } - }, - "background": { - "value": "$notice.background.dark", - "type": "color" - }, - "icon": { - "info": { - "value": "$notice.icon.info.dark", - "type": "color" - }, - "success": { - "value": "$notice.icon.success.dark", - "type": "color" - }, - "warning": { - "value": "$notice.icon.warning.dark", - "type": "color" - }, - "danger": { - "value": "$notice.icon.danger.dark", - "type": "color" - }, - "brand": { - "value": "$notice.icon.brand.dark", - "type": "color" - } - }, - "highlight": { - "info": { - "value": "$notice.highlight.info.dark", - "type": "color" - }, - "success": { - "value": "$notice.highlight.success.dark", - "type": "color" - }, - "warning": { - "value": "$notice.highlight.warning.dark", - "type": "color" - }, - "danger": { - "value": "$notice.highlight.danger.dark", - "type": "color" - }, - "brand": { - "value": "$notice.highlight.brand.dark", - "type": "color" - } - } - }, - "block-section": { - "font": { - "value": "$block-section.font.dark", - "type": "color" - }, - "icon": { - "valid": { - "value": "$block-section.icon.valid.dark", - "type": "color" - }, - "invalid": { - "value": "$block-section.icon.invalid.dark", - "type": "color" - }, - "chevron": { - "value": "$block-section.icon.chevron.dark", - "type": "color" - } - }, - "background": { - "value": "$block-section.background.dark", - "type": "color" - } - }, "notice": { "font": { "title": { @@ -1484,4 +1399,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 8750ca543e1..c86468cba62 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1294,55 +1294,7 @@ "type": "color" }, "active": { - "value": "$action.font.active.light", - - } - }, - "action-bar": { - "border": { - "value": "$action-bar.border.light", - "type": "color" - }, - "background": { - "value": "$action-bar.background.light", - "type": "color" - } - }, - "action-pad": { - "border": { - "value": "$action-pad.border.light", - "type": "color" - }, - "background": { - "value": "$action-pad.background.light", - "type": "color" - } - }, - "action-bar-grid": { - "border": { - "value": "$action-bar-grid.border.light", - "type": "color" - }, - "background": { - "value": "$action-bar-grid.background.light", - "type": "color" - } - }, - "action-pad-grid": { - "border": { - "value": "$action-pad-grid.border.light", - "type": "color" - }, - "background": { - "value": "$action-pad-grid.background.light", - "type": "color" - } - }, - "block": { - "font": { - "heading": { - "value": "$block.font.heading.light", - "type": "color" + "value": "$action.font.active.light" }, "description": { "value": "$block.font.description.light", diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 09df0d4a5e2..28be1f3d8f3 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -174,4 +174,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index 3e8f1edc798..7e595e97bd5 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -173,4 +173,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/accordion.json b/tokens/component/accordion.json index 044f000b7c8..29370b6401f 100644 --- a/tokens/component/accordion.json +++ b/tokens/component/accordion.json @@ -189,4 +189,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/accordion_backup.json b/tokens/component/accordion_backup.json index 5a67f8416b4..c384a7c7cbd 100644 --- a/tokens/component/accordion_backup.json +++ b/tokens/component/accordion_backup.json @@ -235,4 +235,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action-bar-grid.json b/tokens/component/action-bar-grid.json index f6cb19c3db7..8a749941084 100644 --- a/tokens/component/action-bar-grid.json +++ b/tokens/component/action-bar-grid.json @@ -88,4 +88,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action-bar.json b/tokens/component/action-bar.json index 4a6799bb4f8..6ecd954804c 100644 --- a/tokens/component/action-bar.json +++ b/tokens/component/action-bar.json @@ -88,4 +88,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action-pad-grid.json b/tokens/component/action-pad-grid.json index f8e082ace07..049b053aefa 100644 --- a/tokens/component/action-pad-grid.json +++ b/tokens/component/action-pad-grid.json @@ -102,4 +102,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action-pad.json b/tokens/component/action-pad.json index ec0f71fbc31..1dc431ea4df 100644 --- a/tokens/component/action-pad.json +++ b/tokens/component/action-pad.json @@ -102,4 +102,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action.json b/tokens/component/action.json index 59b04a09b57..ce67b317000 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -188,4 +188,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/alert.json b/tokens/component/alert.json index 698b1e3e623..6389f65c23c 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -255,4 +255,4 @@ "type": "boxShadow" } } -} \ No newline at end of file +} diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json index 5694023e615..7fb35dbf070 100644 --- a/tokens/component/avatar.json +++ b/tokens/component/avatar.json @@ -137,4 +137,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/block-section.json b/tokens/component/block-section.json index 5910a5c22f0..b00dd8e69e8 100644 --- a/tokens/component/block-section.json +++ b/tokens/component/block-section.json @@ -146,4 +146,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/block.json b/tokens/component/block.json index fb41f9d3a45..792ee23c212 100644 --- a/tokens/component/block.json +++ b/tokens/component/block.json @@ -209,7 +209,7 @@ }, "drag-handle": { "space-around": { - "dragg": { + "drag": { "right-left": { "md": { "value": "$core.spacing.1", @@ -220,4 +220,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/button.json b/tokens/component/button.json index 5669c1ba910..0b2dce388c9 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -575,4 +575,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/card.json b/tokens/component/card.json index 558e2289c7d..4c5d9b52f93 100644 --- a/tokens/component/card.json +++ b/tokens/component/card.json @@ -138,4 +138,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json index cfa42420acf..983b205c5b8 100644 --- a/tokens/component/checkbox.json +++ b/tokens/component/checkbox.json @@ -107,4 +107,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/color-picker.json b/tokens/component/color-picker.json index 54946927cf2..bfb2d7acbac 100644 --- a/tokens/component/color-picker.json +++ b/tokens/component/color-picker.json @@ -170,4 +170,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 8d724bffabd..0e85c49cc86 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -149,4 +149,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 122de315f3a..1ac23bcfbe5 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -376,4 +376,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index b4e2f0a5bb1..96a9153f5d8 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -174,4 +174,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/fab.json b/tokens/component/fab.json index 1c3606de43d..da065c76e5c 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -521,4 +521,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json index 66df7cfcad6..527f475ed77 100644 --- a/tokens/component/input-date-picker.json +++ b/tokens/component/input-date-picker.json @@ -246,4 +246,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-datetime-local.json b/tokens/component/input-datetime-local.json index 78d2248098f..fe38c1f122f 100644 --- a/tokens/component/input-datetime-local.json +++ b/tokens/component/input-datetime-local.json @@ -252,4 +252,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-email.json b/tokens/component/input-email.json index 8b318fe2ddd..f8d1a851cd0 100644 --- a/tokens/component/input-email.json +++ b/tokens/component/input-email.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-file.json b/tokens/component/input-file.json index 8b48fab1068..af0aea503cd 100644 --- a/tokens/component/input-file.json +++ b/tokens/component/input-file.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json index 3418886d3d6..3af48dc9ebf 100644 --- a/tokens/component/input-message.json +++ b/tokens/component/input-message.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-month.json b/tokens/component/input-month.json index f72e68c2e95..d19a3456868 100644 --- a/tokens/component/input-month.json +++ b/tokens/component/input-month.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-number.json b/tokens/component/input-number.json index 4410d2c2561..184ce785e4e 100644 --- a/tokens/component/input-number.json +++ b/tokens/component/input-number.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-password.json b/tokens/component/input-password.json index 1fb152a2415..8c35f83cc57 100644 --- a/tokens/component/input-password.json +++ b/tokens/component/input-password.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-search.json b/tokens/component/input-search.json index ea96f88a12d..ace08815333 100644 --- a/tokens/component/input-search.json +++ b/tokens/component/input-search.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-telephone.json b/tokens/component/input-telephone.json index 3116ce7c069..1c029ef0fbb 100644 --- a/tokens/component/input-telephone.json +++ b/tokens/component/input-telephone.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-text.json b/tokens/component/input-text.json index 3116ce7c069..1c029ef0fbb 100644 --- a/tokens/component/input-text.json +++ b/tokens/component/input-text.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-week.json b/tokens/component/input-week.json index 10e3d2af452..6c4766ec929 100644 --- a/tokens/component/input-week.json +++ b/tokens/component/input-week.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/label.json b/tokens/component/label.json index b658a3053ad..d92f1356961 100644 --- a/tokens/component/label.json +++ b/tokens/component/label.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/link.json b/tokens/component/link.json index 4bd7249b874..91504e568a8 100644 --- a/tokens/component/link.json +++ b/tokens/component/link.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/loader.json b/tokens/component/loader.json index 5aa7993e951..8cc68b37918 100644 --- a/tokens/component/loader.json +++ b/tokens/component/loader.json @@ -127,4 +127,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/modal-medium.json b/tokens/component/modal-medium.json index 4c8b828e451..e1ed6edda28 100644 --- a/tokens/component/modal-medium.json +++ b/tokens/component/modal-medium.json @@ -174,4 +174,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/notice.json b/tokens/component/notice.json index 2ee2de108a2..b281901e9ac 100644 --- a/tokens/component/notice.json +++ b/tokens/component/notice.json @@ -277,4 +277,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json index 8525fb9be8a..8aa9787ce6d 100644 --- a/tokens/component/pagination.json +++ b/tokens/component/pagination.json @@ -174,4 +174,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/radio.json b/tokens/component/radio.json index 8c72a63238d..ac338783b8b 100644 --- a/tokens/component/radio.json +++ b/tokens/component/radio.json @@ -121,4 +121,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/rating.json b/tokens/component/rating.json index c6c40e58835..69ad4d6d27e 100644 --- a/tokens/component/rating.json +++ b/tokens/component/rating.json @@ -225,7 +225,7 @@ "type": "spacing" } }, - "space-arround": { + "space-around": { "sm": { "value": "$core.spacing.3", "type": "spacing" @@ -240,4 +240,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json index b661574f032..95f4854a9fc 100644 --- a/tokens/component/segmented-control.json +++ b/tokens/component/segmented-control.json @@ -151,4 +151,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index 837a28961c6..00c53b46670 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -369,4 +369,4 @@ "type": "opacity" } } -} \ No newline at end of file +} diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json index 76ca139ef90..f1d30b3cc93 100644 --- a/tokens/component/stepper.json +++ b/tokens/component/stepper.json @@ -149,4 +149,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/switch.json b/tokens/component/switch.json index 1bfd307ea81..b541b35275b 100644 --- a/tokens/component/switch.json +++ b/tokens/component/switch.json @@ -175,4 +175,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 6e0e9800f70..042fe740f66 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -250,4 +250,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index 461acf06414..7d107540f27 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -278,4 +278,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json index ce0619db8fe..d81a12e450a 100644 --- a/tokens/component/textarea.json +++ b/tokens/component/textarea.json @@ -222,4 +222,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tip.json b/tokens/component/tip.json index 402020b0202..fd3f1dd8476 100644 --- a/tokens/component/tip.json +++ b/tokens/component/tip.json @@ -111,4 +111,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json index 51d50bce707..e35d8e63159 100644 --- a/tokens/component/tooltip.json +++ b/tokens/component/tooltip.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/core.json b/tokens/core.json index f697f4387a2..faf9850e290 100644 --- a/tokens/core.json +++ b/tokens/core.json @@ -1693,4 +1693,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/semantic.json b/tokens/semantic.json index 6f678e878b4..3ac92afce5a 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1680,4 +1680,4 @@ } } } -} \ No newline at end of file +} From 9b411d3635f06d2029025c967a2532352ed5c48f Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Thu, 23 Mar 2023 19:30:14 +0000 Subject: [PATCH 478/696] unsaved changes --- tokens/$metadata.json | 7 +------ tokens/$themes.json | 3 +-- tokens/brand/light.json | 2 +- tokens/calcite/dark.json | 2 +- tokens/calcite/light.json | 5 +++-- tokens/component/[template-comp-name].json | 2 +- tokens/component/accordion-item.json | 2 +- tokens/component/accordion.json | 2 +- tokens/component/accordion_backup.json | 2 +- tokens/component/action-bar-grid.json | 2 +- tokens/component/action-bar.json | 2 +- tokens/component/action-pad-grid.json | 2 +- tokens/component/action-pad.json | 2 +- tokens/component/action.json | 2 +- tokens/component/alert.json | 2 +- tokens/component/avatar.json | 2 +- tokens/component/block-section.json | 2 +- tokens/component/block.json | 2 +- tokens/component/button.json | 2 +- tokens/component/card.json | 2 +- tokens/component/checkbox.json | 2 +- tokens/component/color-picker.json | 2 +- tokens/component/combobox.json | 2 +- tokens/component/date-picker.json | 2 +- tokens/component/dropdown.json | 2 +- tokens/component/fab.json | 2 +- tokens/component/input-date-picker.json | 2 +- tokens/component/input-datetime-local.json | 2 +- tokens/component/input-email.json | 2 +- tokens/component/input-file.json | 2 +- tokens/component/input-message.json | 2 +- tokens/component/input-month.json | 2 +- tokens/component/input-number.json | 2 +- tokens/component/input-password.json | 2 +- tokens/component/input-search.json | 2 +- tokens/component/input-telephone.json | 2 +- tokens/component/input-text.json | 2 +- tokens/component/input-week.json | 2 +- tokens/component/label.json | 2 +- tokens/component/link.json | 2 +- tokens/component/loader.json | 2 +- tokens/component/modal-medium.json | 2 +- tokens/component/notice.json | 2 +- tokens/component/pagination.json | 2 +- tokens/component/radio.json | 2 +- tokens/component/rating.json | 2 +- tokens/component/segmented-control.json | 2 +- tokens/component/stepper-item.json | 2 +- tokens/component/stepper.json | 2 +- tokens/component/switch.json | 2 +- tokens/component/tab-title.json | 2 +- tokens/component/tabs.json | 2 +- tokens/component/textarea.json | 2 +- tokens/component/tip.json | 2 +- tokens/component/tooltip.json | 2 +- tokens/core.json | 2 +- tokens/semantic.json | 2 +- 57 files changed, 59 insertions(+), 64 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 2369fec4f6b..9c6bbfe4cab 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -19,8 +19,6 @@ "component/block", "component/block-section", "component/card", - "component/checkbox", - "component/chip", "component/combobox", "component/date-picker", "component/color-picker", @@ -37,7 +35,6 @@ "component/input-time", "component/input-text", "component/input-week", - "component/date-picker", "component/modal-medium", "component/notice", "component/textarea", @@ -48,8 +45,6 @@ "component/tab-title", "component/tabs", "component/rating", - "component/tab-title", - "component/tabs", "component/tip", "component/tooltip", "component/pagination", @@ -65,4 +60,4 @@ "brand/light", "brand/dark" ] -} +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index 2d63ff78d49..001d59ef15b 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -137,7 +137,6 @@ "component/segmented-control": "source", "component/switch": "source", "component/stepper-item": "source" - }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -785,4 +784,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] +] \ No newline at end of file diff --git a/tokens/brand/light.json b/tokens/brand/light.json index 22b5d0a4a8d..a55d3c5bc32 100644 --- a/tokens/brand/light.json +++ b/tokens/brand/light.json @@ -17,4 +17,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 49ba52feacc..2df706b7644 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1399,4 +1399,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index c86468cba62..5478ba38c6f 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1294,7 +1294,8 @@ "type": "color" }, "active": { - "value": "$action.font.active.light" + "value": "$action.font.active.light", + "type": "color" }, "description": { "value": "$block.font.description.light", @@ -1422,4 +1423,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 28be1f3d8f3..09df0d4a5e2 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index 7e595e97bd5..3e8f1edc798 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -173,4 +173,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/accordion.json b/tokens/component/accordion.json index 29370b6401f..044f000b7c8 100644 --- a/tokens/component/accordion.json +++ b/tokens/component/accordion.json @@ -189,4 +189,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/accordion_backup.json b/tokens/component/accordion_backup.json index c384a7c7cbd..5a67f8416b4 100644 --- a/tokens/component/accordion_backup.json +++ b/tokens/component/accordion_backup.json @@ -235,4 +235,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action-bar-grid.json b/tokens/component/action-bar-grid.json index 8a749941084..f6cb19c3db7 100644 --- a/tokens/component/action-bar-grid.json +++ b/tokens/component/action-bar-grid.json @@ -88,4 +88,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action-bar.json b/tokens/component/action-bar.json index 6ecd954804c..4a6799bb4f8 100644 --- a/tokens/component/action-bar.json +++ b/tokens/component/action-bar.json @@ -88,4 +88,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action-pad-grid.json b/tokens/component/action-pad-grid.json index 049b053aefa..f8e082ace07 100644 --- a/tokens/component/action-pad-grid.json +++ b/tokens/component/action-pad-grid.json @@ -102,4 +102,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action-pad.json b/tokens/component/action-pad.json index 1dc431ea4df..ec0f71fbc31 100644 --- a/tokens/component/action-pad.json +++ b/tokens/component/action-pad.json @@ -102,4 +102,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action.json b/tokens/component/action.json index ce67b317000..59b04a09b57 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -188,4 +188,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/alert.json b/tokens/component/alert.json index 6389f65c23c..698b1e3e623 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -255,4 +255,4 @@ "type": "boxShadow" } } -} +} \ No newline at end of file diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json index 7fb35dbf070..5694023e615 100644 --- a/tokens/component/avatar.json +++ b/tokens/component/avatar.json @@ -137,4 +137,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/block-section.json b/tokens/component/block-section.json index b00dd8e69e8..5910a5c22f0 100644 --- a/tokens/component/block-section.json +++ b/tokens/component/block-section.json @@ -146,4 +146,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/block.json b/tokens/component/block.json index 792ee23c212..df4d97c98a0 100644 --- a/tokens/component/block.json +++ b/tokens/component/block.json @@ -220,4 +220,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/button.json b/tokens/component/button.json index 0b2dce388c9..5669c1ba910 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -575,4 +575,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/card.json b/tokens/component/card.json index 4c5d9b52f93..558e2289c7d 100644 --- a/tokens/component/card.json +++ b/tokens/component/card.json @@ -138,4 +138,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json index 983b205c5b8..cfa42420acf 100644 --- a/tokens/component/checkbox.json +++ b/tokens/component/checkbox.json @@ -107,4 +107,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/color-picker.json b/tokens/component/color-picker.json index bfb2d7acbac..54946927cf2 100644 --- a/tokens/component/color-picker.json +++ b/tokens/component/color-picker.json @@ -170,4 +170,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 0e85c49cc86..8d724bffabd 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -149,4 +149,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 1ac23bcfbe5..122de315f3a 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -376,4 +376,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index 96a9153f5d8..b4e2f0a5bb1 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json index da065c76e5c..1c3606de43d 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -521,4 +521,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json index 527f475ed77..66df7cfcad6 100644 --- a/tokens/component/input-date-picker.json +++ b/tokens/component/input-date-picker.json @@ -246,4 +246,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-datetime-local.json b/tokens/component/input-datetime-local.json index fe38c1f122f..78d2248098f 100644 --- a/tokens/component/input-datetime-local.json +++ b/tokens/component/input-datetime-local.json @@ -252,4 +252,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-email.json b/tokens/component/input-email.json index f8d1a851cd0..8b318fe2ddd 100644 --- a/tokens/component/input-email.json +++ b/tokens/component/input-email.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-file.json b/tokens/component/input-file.json index af0aea503cd..8b48fab1068 100644 --- a/tokens/component/input-file.json +++ b/tokens/component/input-file.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json index 3af48dc9ebf..3418886d3d6 100644 --- a/tokens/component/input-message.json +++ b/tokens/component/input-message.json @@ -69,4 +69,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-month.json b/tokens/component/input-month.json index d19a3456868..f72e68c2e95 100644 --- a/tokens/component/input-month.json +++ b/tokens/component/input-month.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-number.json b/tokens/component/input-number.json index 184ce785e4e..4410d2c2561 100644 --- a/tokens/component/input-number.json +++ b/tokens/component/input-number.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-password.json b/tokens/component/input-password.json index 8c35f83cc57..1fb152a2415 100644 --- a/tokens/component/input-password.json +++ b/tokens/component/input-password.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-search.json b/tokens/component/input-search.json index ace08815333..ea96f88a12d 100644 --- a/tokens/component/input-search.json +++ b/tokens/component/input-search.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-telephone.json b/tokens/component/input-telephone.json index 1c029ef0fbb..3116ce7c069 100644 --- a/tokens/component/input-telephone.json +++ b/tokens/component/input-telephone.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-text.json b/tokens/component/input-text.json index 1c029ef0fbb..3116ce7c069 100644 --- a/tokens/component/input-text.json +++ b/tokens/component/input-text.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-week.json b/tokens/component/input-week.json index 6c4766ec929..10e3d2af452 100644 --- a/tokens/component/input-week.json +++ b/tokens/component/input-week.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/label.json b/tokens/component/label.json index d92f1356961..b658a3053ad 100644 --- a/tokens/component/label.json +++ b/tokens/component/label.json @@ -23,4 +23,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json index 91504e568a8..4bd7249b874 100644 --- a/tokens/component/link.json +++ b/tokens/component/link.json @@ -41,4 +41,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/loader.json b/tokens/component/loader.json index 8cc68b37918..5aa7993e951 100644 --- a/tokens/component/loader.json +++ b/tokens/component/loader.json @@ -127,4 +127,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/modal-medium.json b/tokens/component/modal-medium.json index e1ed6edda28..4c8b828e451 100644 --- a/tokens/component/modal-medium.json +++ b/tokens/component/modal-medium.json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/notice.json b/tokens/component/notice.json index b281901e9ac..2ee2de108a2 100644 --- a/tokens/component/notice.json +++ b/tokens/component/notice.json @@ -277,4 +277,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json index 8aa9787ce6d..8525fb9be8a 100644 --- a/tokens/component/pagination.json +++ b/tokens/component/pagination.json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/radio.json b/tokens/component/radio.json index ac338783b8b..8c72a63238d 100644 --- a/tokens/component/radio.json +++ b/tokens/component/radio.json @@ -121,4 +121,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/rating.json b/tokens/component/rating.json index 69ad4d6d27e..13504a88663 100644 --- a/tokens/component/rating.json +++ b/tokens/component/rating.json @@ -240,4 +240,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json index 95f4854a9fc..b661574f032 100644 --- a/tokens/component/segmented-control.json +++ b/tokens/component/segmented-control.json @@ -151,4 +151,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index 00c53b46670..837a28961c6 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -369,4 +369,4 @@ "type": "opacity" } } -} +} \ No newline at end of file diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json index f1d30b3cc93..76ca139ef90 100644 --- a/tokens/component/stepper.json +++ b/tokens/component/stepper.json @@ -149,4 +149,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/switch.json b/tokens/component/switch.json index b541b35275b..1bfd307ea81 100644 --- a/tokens/component/switch.json +++ b/tokens/component/switch.json @@ -175,4 +175,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 042fe740f66..6e0e9800f70 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -250,4 +250,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index 7d107540f27..461acf06414 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -278,4 +278,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json index d81a12e450a..ce0619db8fe 100644 --- a/tokens/component/textarea.json +++ b/tokens/component/textarea.json @@ -222,4 +222,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/tip.json b/tokens/component/tip.json index fd3f1dd8476..402020b0202 100644 --- a/tokens/component/tip.json +++ b/tokens/component/tip.json @@ -111,4 +111,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json index e35d8e63159..51d50bce707 100644 --- a/tokens/component/tooltip.json +++ b/tokens/component/tooltip.json @@ -63,4 +63,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json index faf9850e290..f697f4387a2 100644 --- a/tokens/core.json +++ b/tokens/core.json @@ -1693,4 +1693,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 3ac92afce5a..6f678e878b4 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1680,4 +1680,4 @@ } } } -} +} \ No newline at end of file From e7d758997fe8c32d8d1de8d3029d6e425bb7063b Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 23 Mar 2023 23:39:48 +0100 Subject: [PATCH 479/696] First push after fix --- tokens/$metadata.json | 9 +- tokens/$themes.json | 20 +- tokens/brand/light.json | 2 +- tokens/calcite/dark.json | 2 +- tokens/calcite/light.json | 5 +- tokens/component/[template-comp-name].json | 2 +- .../component/[template-comp-name]_Copy.json | 177 ++++++++++++++++++ tokens/component/accordion-item.json | 2 +- tokens/component/accordion.json | 2 +- tokens/component/accordion_backup.json | 2 +- tokens/component/action-bar-grid.json | 2 +- tokens/component/action-bar.json | 2 +- tokens/component/action-pad-grid.json | 2 +- tokens/component/action-pad.json | 2 +- tokens/component/action.json | 2 +- tokens/component/alert.json | 2 +- tokens/component/avatar.json | 2 +- tokens/component/block-section.json | 2 +- tokens/component/block.json | 2 +- tokens/component/button.json | 2 +- tokens/component/card.json | 2 +- tokens/component/checkbox.json | 2 +- tokens/component/color-picker.json | 2 +- tokens/component/combobox.json | 2 +- tokens/component/date-picker.json | 2 +- tokens/component/dropdown.json | 27 +-- tokens/component/fab.json | 2 +- tokens/component/input-date-picker.json | 2 +- tokens/component/input-datetime-local.json | 2 +- tokens/component/input-email.json | 2 +- tokens/component/input-file.json | 2 +- tokens/component/input-message.json | 2 +- tokens/component/input-month.json | 2 +- tokens/component/input-number.json | 2 +- tokens/component/input-password.json | 2 +- tokens/component/input-search.json | 2 +- tokens/component/input-telephone.json | 2 +- tokens/component/input-text.json | 2 +- tokens/component/input-week.json | 2 +- tokens/component/label.json | 2 +- tokens/component/link.json | 2 +- tokens/component/list.json | 26 +++ tokens/component/loader.json | 2 +- tokens/component/modal-medium.json | 2 +- tokens/component/notice.json | 2 +- tokens/component/pagination.json | 2 +- tokens/component/radio.json | 2 +- tokens/component/rating.json | 2 +- tokens/component/segmented-control.json | 2 +- tokens/component/stepper-item.json | 2 +- tokens/component/stepper.json | 2 +- tokens/component/switch.json | 2 +- tokens/component/tab-title.json | 2 +- tokens/component/tabs.json | 2 +- tokens/component/textarea.json | 2 +- tokens/component/tip.json | 2 +- tokens/component/tooltip.json | 2 +- tokens/core.json | 2 +- tokens/semantic.json | 2 +- 59 files changed, 276 insertions(+), 94 deletions(-) create mode 100644 tokens/component/[template-comp-name]_Copy.json create mode 100644 tokens/component/list.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 2369fec4f6b..31feda79825 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -19,8 +19,6 @@ "component/block", "component/block-section", "component/card", - "component/checkbox", - "component/chip", "component/combobox", "component/date-picker", "component/color-picker", @@ -37,19 +35,17 @@ "component/input-time", "component/input-text", "component/input-week", - "component/date-picker", "component/modal-medium", "component/notice", "component/textarea", "component/label", + "component/list", "component/link", "component/loader", "component/radio", "component/tab-title", "component/tabs", "component/rating", - "component/tab-title", - "component/tabs", "component/tip", "component/tooltip", "component/pagination", @@ -58,6 +54,7 @@ "component/stepper-item", "component/switch", "component/[template-comp-name]", + "component/[template-comp-name]_Copy", "component/accordion_backup", "calcite/light", "calcite/dark", @@ -65,4 +62,4 @@ "brand/light", "brand/dark" ] -} +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index 2d63ff78d49..cad5289bc42 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,9 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/[template-comp-name]_Copy": "disabled", + "component/list": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +19,9 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/[template-comp-name]_Copy": "disabled", + "component/list": "disabled" }, "$figmaStyleReferences": {} }, @@ -47,7 +51,8 @@ "component/switch": "source", "component/tooltip": "source", "core": "source", - "semantic": "source" + "semantic": "source", + "component/list": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -136,8 +141,8 @@ "component/pagination": "source", "component/segmented-control": "source", "component/switch": "source", - "component/stepper-item": "source" - + "component/stepper-item": "source", + "component/list": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -259,7 +264,8 @@ "component/block": "enabled", "component/block-section": "enabled", "component/notice": "enabled", - "component/modal-medium": "enabled" + "component/modal-medium": "enabled", + "component/list": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -785,4 +791,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] +] \ No newline at end of file diff --git a/tokens/brand/light.json b/tokens/brand/light.json index 22b5d0a4a8d..a55d3c5bc32 100644 --- a/tokens/brand/light.json +++ b/tokens/brand/light.json @@ -17,4 +17,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 49ba52feacc..2df706b7644 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1399,4 +1399,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index c86468cba62..5478ba38c6f 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1294,7 +1294,8 @@ "type": "color" }, "active": { - "value": "$action.font.active.light" + "value": "$action.font.active.light", + "type": "color" }, "description": { "value": "$block.font.description.light", @@ -1422,4 +1423,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 28be1f3d8f3..09df0d4a5e2 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/[template-comp-name]_Copy.json b/tokens/component/[template-comp-name]_Copy.json new file mode 100644 index 00000000000..09df0d4a5e2 --- /dev/null +++ b/tokens/component/[template-comp-name]_Copy.json @@ -0,0 +1,177 @@ +{ + "[comp-name]": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index 7e595e97bd5..3e8f1edc798 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -173,4 +173,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/accordion.json b/tokens/component/accordion.json index 29370b6401f..044f000b7c8 100644 --- a/tokens/component/accordion.json +++ b/tokens/component/accordion.json @@ -189,4 +189,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/accordion_backup.json b/tokens/component/accordion_backup.json index c384a7c7cbd..5a67f8416b4 100644 --- a/tokens/component/accordion_backup.json +++ b/tokens/component/accordion_backup.json @@ -235,4 +235,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action-bar-grid.json b/tokens/component/action-bar-grid.json index 8a749941084..f6cb19c3db7 100644 --- a/tokens/component/action-bar-grid.json +++ b/tokens/component/action-bar-grid.json @@ -88,4 +88,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action-bar.json b/tokens/component/action-bar.json index 6ecd954804c..4a6799bb4f8 100644 --- a/tokens/component/action-bar.json +++ b/tokens/component/action-bar.json @@ -88,4 +88,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action-pad-grid.json b/tokens/component/action-pad-grid.json index 049b053aefa..f8e082ace07 100644 --- a/tokens/component/action-pad-grid.json +++ b/tokens/component/action-pad-grid.json @@ -102,4 +102,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action-pad.json b/tokens/component/action-pad.json index 1dc431ea4df..ec0f71fbc31 100644 --- a/tokens/component/action-pad.json +++ b/tokens/component/action-pad.json @@ -102,4 +102,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/action.json b/tokens/component/action.json index ce67b317000..59b04a09b57 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -188,4 +188,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/alert.json b/tokens/component/alert.json index 6389f65c23c..698b1e3e623 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -255,4 +255,4 @@ "type": "boxShadow" } } -} +} \ No newline at end of file diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json index 7fb35dbf070..5694023e615 100644 --- a/tokens/component/avatar.json +++ b/tokens/component/avatar.json @@ -137,4 +137,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/block-section.json b/tokens/component/block-section.json index b00dd8e69e8..5910a5c22f0 100644 --- a/tokens/component/block-section.json +++ b/tokens/component/block-section.json @@ -146,4 +146,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/block.json b/tokens/component/block.json index 792ee23c212..df4d97c98a0 100644 --- a/tokens/component/block.json +++ b/tokens/component/block.json @@ -220,4 +220,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/button.json b/tokens/component/button.json index 0b2dce388c9..5669c1ba910 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -575,4 +575,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/card.json b/tokens/component/card.json index 4c5d9b52f93..558e2289c7d 100644 --- a/tokens/component/card.json +++ b/tokens/component/card.json @@ -138,4 +138,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json index 983b205c5b8..cfa42420acf 100644 --- a/tokens/component/checkbox.json +++ b/tokens/component/checkbox.json @@ -107,4 +107,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/color-picker.json b/tokens/component/color-picker.json index bfb2d7acbac..54946927cf2 100644 --- a/tokens/component/color-picker.json +++ b/tokens/component/color-picker.json @@ -170,4 +170,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 0e85c49cc86..8d724bffabd 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -149,4 +149,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 1ac23bcfbe5..122de315f3a 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -376,4 +376,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index 96a9153f5d8..86bc4163498 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -147,31 +147,6 @@ "value": "$core.spacing.11", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } -} +} \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json index da065c76e5c..1c3606de43d 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -521,4 +521,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json index 527f475ed77..66df7cfcad6 100644 --- a/tokens/component/input-date-picker.json +++ b/tokens/component/input-date-picker.json @@ -246,4 +246,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-datetime-local.json b/tokens/component/input-datetime-local.json index fe38c1f122f..78d2248098f 100644 --- a/tokens/component/input-datetime-local.json +++ b/tokens/component/input-datetime-local.json @@ -252,4 +252,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-email.json b/tokens/component/input-email.json index f8d1a851cd0..8b318fe2ddd 100644 --- a/tokens/component/input-email.json +++ b/tokens/component/input-email.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-file.json b/tokens/component/input-file.json index af0aea503cd..8b48fab1068 100644 --- a/tokens/component/input-file.json +++ b/tokens/component/input-file.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json index 3af48dc9ebf..3418886d3d6 100644 --- a/tokens/component/input-message.json +++ b/tokens/component/input-message.json @@ -69,4 +69,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-month.json b/tokens/component/input-month.json index d19a3456868..f72e68c2e95 100644 --- a/tokens/component/input-month.json +++ b/tokens/component/input-month.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-number.json b/tokens/component/input-number.json index 184ce785e4e..4410d2c2561 100644 --- a/tokens/component/input-number.json +++ b/tokens/component/input-number.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-password.json b/tokens/component/input-password.json index 8c35f83cc57..1fb152a2415 100644 --- a/tokens/component/input-password.json +++ b/tokens/component/input-password.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-search.json b/tokens/component/input-search.json index ace08815333..ea96f88a12d 100644 --- a/tokens/component/input-search.json +++ b/tokens/component/input-search.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-telephone.json b/tokens/component/input-telephone.json index 1c029ef0fbb..3116ce7c069 100644 --- a/tokens/component/input-telephone.json +++ b/tokens/component/input-telephone.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-text.json b/tokens/component/input-text.json index 1c029ef0fbb..3116ce7c069 100644 --- a/tokens/component/input-text.json +++ b/tokens/component/input-text.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/input-week.json b/tokens/component/input-week.json index 6c4766ec929..10e3d2af452 100644 --- a/tokens/component/input-week.json +++ b/tokens/component/input-week.json @@ -266,4 +266,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/label.json b/tokens/component/label.json index d92f1356961..b658a3053ad 100644 --- a/tokens/component/label.json +++ b/tokens/component/label.json @@ -23,4 +23,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json index 91504e568a8..4bd7249b874 100644 --- a/tokens/component/link.json +++ b/tokens/component/link.json @@ -41,4 +41,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/list.json b/tokens/component/list.json new file mode 100644 index 00000000000..b658a3053ad --- /dev/null +++ b/tokens/component/list.json @@ -0,0 +1,26 @@ +{ + "label": { + "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/loader.json b/tokens/component/loader.json index 8cc68b37918..5aa7993e951 100644 --- a/tokens/component/loader.json +++ b/tokens/component/loader.json @@ -127,4 +127,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/modal-medium.json b/tokens/component/modal-medium.json index e1ed6edda28..4c8b828e451 100644 --- a/tokens/component/modal-medium.json +++ b/tokens/component/modal-medium.json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/notice.json b/tokens/component/notice.json index b281901e9ac..2ee2de108a2 100644 --- a/tokens/component/notice.json +++ b/tokens/component/notice.json @@ -277,4 +277,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json index 8aa9787ce6d..8525fb9be8a 100644 --- a/tokens/component/pagination.json +++ b/tokens/component/pagination.json @@ -174,4 +174,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/radio.json b/tokens/component/radio.json index ac338783b8b..8c72a63238d 100644 --- a/tokens/component/radio.json +++ b/tokens/component/radio.json @@ -121,4 +121,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/rating.json b/tokens/component/rating.json index 69ad4d6d27e..13504a88663 100644 --- a/tokens/component/rating.json +++ b/tokens/component/rating.json @@ -240,4 +240,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json index 95f4854a9fc..b661574f032 100644 --- a/tokens/component/segmented-control.json +++ b/tokens/component/segmented-control.json @@ -151,4 +151,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index 00c53b46670..837a28961c6 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -369,4 +369,4 @@ "type": "opacity" } } -} +} \ No newline at end of file diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json index f1d30b3cc93..76ca139ef90 100644 --- a/tokens/component/stepper.json +++ b/tokens/component/stepper.json @@ -149,4 +149,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/switch.json b/tokens/component/switch.json index b541b35275b..1bfd307ea81 100644 --- a/tokens/component/switch.json +++ b/tokens/component/switch.json @@ -175,4 +175,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 042fe740f66..6e0e9800f70 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -250,4 +250,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index 7d107540f27..461acf06414 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -278,4 +278,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json index d81a12e450a..ce0619db8fe 100644 --- a/tokens/component/textarea.json +++ b/tokens/component/textarea.json @@ -222,4 +222,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/tip.json b/tokens/component/tip.json index fd3f1dd8476..402020b0202 100644 --- a/tokens/component/tip.json +++ b/tokens/component/tip.json @@ -111,4 +111,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json index e35d8e63159..51d50bce707 100644 --- a/tokens/component/tooltip.json +++ b/tokens/component/tooltip.json @@ -63,4 +63,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/core.json b/tokens/core.json index faf9850e290..f697f4387a2 100644 --- a/tokens/core.json +++ b/tokens/core.json @@ -1693,4 +1693,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/semantic.json b/tokens/semantic.json index 3ac92afce5a..6f678e878b4 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1680,4 +1680,4 @@ } } } -} +} \ No newline at end of file From f0623cae839e862cfd8582144dab94372d6a9195 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 24 Mar 2023 13:09:13 +0000 Subject: [PATCH 480/696] modal corrections --- tokens/component/modal-medium.json | 244 ++++++++++++++++++++--------- 1 file changed, 171 insertions(+), 73 deletions(-) diff --git a/tokens/component/modal-medium.json b/tokens/component/modal-medium.json index 4c8b828e451..5af455f7963 100644 --- a/tokens/component/modal-medium.json +++ b/tokens/component/modal-medium.json @@ -1,25 +1,49 @@ { "modal-medium": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" + "header": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.wrap.regular.-1", + "type": "typography" + }, + "md": { + "value": "$semantic.font.wrap.regular.2", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.wrap.regular.3", + "type": "typography" + } }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" + "content": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regualr.1h", + "type": "typography" + } } }, "icon": { @@ -33,34 +57,76 @@ } }, "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.border.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.border.1.dark", "type": "color" } + }, + "top": { + "brand": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "info": { + "light": { + "value": "$semantic.ui.color.info.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.info.default.dark", + "type": "color" + } + }, + "success": { + "light": { + "value": "$semantic.ui.color.success.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.success.default.dark", + "type": "color" + } + }, + "danger": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "warning": { + "light": { + "value": "$semantic.ui.color.warning.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.warning.default.dark", + "type": "color" + } + } } }, - "foreground": { + "background": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } }, @@ -78,34 +144,6 @@ "type": "borderRadius" } }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", @@ -122,30 +160,60 @@ }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.none", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.none", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.none", "type": "spacing" } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" + "left-right": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.8", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.9", + "type": "spacing" + } }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.8", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "content": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.8", + "type": "spacing" + } } }, "[specific-element]": { @@ -172,6 +240,36 @@ "type": "composition" } } + }, + "border-width": { + "default": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "top": { + "sm": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + } + } } } } \ No newline at end of file From a58337317b0ec9daa3772a5ae651a463d275f076 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 24 Mar 2023 13:31:18 +0000 Subject: [PATCH 481/696] modal colors token --- tokens/calcite/dark.json | 44 ++++++++++++++++++++++++++++++ tokens/calcite/light.json | 44 ++++++++++++++++++++++++++++++ tokens/component/modal-medium.json | 2 +- 3 files changed, 89 insertions(+), 1 deletion(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 2df706b7644..8a74ac40256 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1396,6 +1396,50 @@ "type": "color" } } + }, + "modal-medium": { + "font": { + "header": { + "value": "$modal-medium.font.header.dark", + "type": "color" + }, + "content": { + "value": "$modal-medium.font.content.dark", + "type": "color" + } + }, + "icon": { + "value": "$modal-medium.icon.dark", + "type": "color" + }, + "border": { + "default": { + "value": "$modal-medium.border.default.dark", + "type": "color" + }, + "top": { + "brand": { + "value": "$modal-medium.border.top.brand.dark", + "type": "color" + }, + "info": { + "value": "$modal-medium.border.top.info.dark", + "type": "color" + }, + "success": { + "value": "$modal-medium.border.top.success.dark", + "type": "color" + }, + "danger": { + "value": "$modal-medium.border.top.danger.dark", + "type": "color" + }, + "warning": { + "value": "$modal-medium.border.top.warning.dark", + "type": "color" + } + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 5478ba38c6f..f4c0e752332 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1420,6 +1420,50 @@ "type": "color" } } + }, + "modal-medium": { + "font": { + "header": { + "value": "$modal-medium.font.header.light", + "type": "color" + }, + "content": { + "value": "$modal-medium.font.content.light", + "type": "color" + } + }, + "icon": { + "value": "$modal-medium.icon.light", + "type": "color" + }, + "border": { + "default": { + "value": "$modal-medium.border.default.light", + "type": "color" + }, + "top": { + "brand": { + "value": "$modal-medium.border.top.brand.light", + "type": "color" + }, + "info": { + "value": "$modal-medium.border.top.info.light", + "type": "color" + }, + "success": { + "value": "$modal-medium.border.top.success.light", + "type": "color" + }, + "danger": { + "value": "$modal-medium.border.top.danger.light", + "type": "color" + }, + "warning": { + "value": "$modal-medium.border.top.warning.light", + "type": "color" + } + } + } } } } diff --git a/tokens/component/modal-medium.json b/tokens/component/modal-medium.json index 5af455f7963..a950b3aae94 100644 --- a/tokens/component/modal-medium.json +++ b/tokens/component/modal-medium.json @@ -41,7 +41,7 @@ "type": "typography" }, "lg": { - "value": "$semantic.font.default.regualr.1h", + "value": "$semantic.font.default.regular.1h", "type": "typography" } } From 3116c7ec0abb61e2443f1fd78fdd85e9256d9f2b Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 24 Mar 2023 14:31:02 +0000 Subject: [PATCH 482/696] modal correction --- tokens/component/modal-medium.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/tokens/component/modal-medium.json b/tokens/component/modal-medium.json index a950b3aae94..56414aeeba5 100644 --- a/tokens/component/modal-medium.json +++ b/tokens/component/modal-medium.json @@ -11,7 +11,7 @@ "type": "color" }, "sm": { - "value": "$semantic.font.wrap.regular.-1", + "value": "$semantic.font.wrap.regular.1", "type": "typography" }, "md": { @@ -130,20 +130,6 @@ "type": "color" } }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", @@ -270,6 +256,20 @@ "type": "borderWidth" } } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } } } } \ No newline at end of file From 43542d2e39b55affe87be378cd24fd134cfd1bee Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 24 Mar 2023 15:36:55 +0000 Subject: [PATCH 483/696] modal tokens --- tokens/$metadata.json | 2 +- tokens/$themes.json | 14 +++++---- tokens/calcite/dark.json | 24 ++++++++------- tokens/calcite/light.json | 24 ++++++++------- .../{modal-medium.json => modal.json} | 30 ++++++++++++++++++- 5 files changed, 67 insertions(+), 27 deletions(-) rename tokens/component/{modal-medium.json => modal.json} (91%) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 9c6bbfe4cab..b3eb4cc02c5 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -35,7 +35,7 @@ "component/input-time", "component/input-text", "component/input-week", - "component/modal-medium", + "component/modal", "component/notice", "component/textarea", "component/label", diff --git a/tokens/$themes.json b/tokens/$themes.json index 001d59ef15b..5d862551528 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/modal": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/modal": "disabled" }, "$figmaStyleReferences": {} }, @@ -47,7 +49,8 @@ "component/switch": "source", "component/tooltip": "source", "core": "source", - "semantic": "source" + "semantic": "source", + "component/modal": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -136,7 +139,8 @@ "component/pagination": "source", "component/segmented-control": "source", "component/switch": "source", - "component/stepper-item": "source" + "component/stepper-item": "source", + "component/modal": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -258,7 +262,7 @@ "component/block": "enabled", "component/block-section": "enabled", "component/notice": "enabled", - "component/modal-medium": "enabled" + "component/modal": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 8a74ac40256..cd77313b56b 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1397,48 +1397,52 @@ } } }, - "modal-medium": { + "modal": { "font": { "header": { - "value": "$modal-medium.font.header.dark", + "value": "$modal.font.header.dark", "type": "color" }, "content": { - "value": "$modal-medium.font.content.dark", + "value": "$modal.font.content.dark", "type": "color" } }, "icon": { - "value": "$modal-medium.icon.dark", + "value": "$modal.icon.dark", "type": "color" }, "border": { "default": { - "value": "$modal-medium.border.default.dark", + "value": "$modal.border.default.dark", "type": "color" }, "top": { "brand": { - "value": "$modal-medium.border.top.brand.dark", + "value": "$modal.border.top.brand.dark", "type": "color" }, "info": { - "value": "$modal-medium.border.top.info.dark", + "value": "$modal.border.top.info.dark", "type": "color" }, "success": { - "value": "$modal-medium.border.top.success.dark", + "value": "$modal.border.top.success.dark", "type": "color" }, "danger": { - "value": "$modal-medium.border.top.danger.dark", + "value": "$modal.border.top.danger.dark", "type": "color" }, "warning": { - "value": "$modal-medium.border.top.warning.dark", + "value": "$modal.border.top.warning.dark", "type": "color" } } + }, + "background": { + "value": "$modal.background.dark", + "type": "color" } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index f4c0e752332..f0feb020ae1 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1421,48 +1421,52 @@ } } }, - "modal-medium": { + "modal": { "font": { "header": { - "value": "$modal-medium.font.header.light", + "value": "$modal.font.header.light", "type": "color" }, "content": { - "value": "$modal-medium.font.content.light", + "value": "$modal.font.content.light", "type": "color" } }, "icon": { - "value": "$modal-medium.icon.light", + "value": "$modal.icon.light", "type": "color" }, "border": { "default": { - "value": "$modal-medium.border.default.light", + "value": "$modal.border.default.light", "type": "color" }, "top": { "brand": { - "value": "$modal-medium.border.top.brand.light", + "value": "$modal.border.top.brand.light", "type": "color" }, "info": { - "value": "$modal-medium.border.top.info.light", + "value": "$modal.border.top.info.light", "type": "color" }, "success": { - "value": "$modal-medium.border.top.success.light", + "value": "$modal.border.top.success.light", "type": "color" }, "danger": { - "value": "$modal-medium.border.top.danger.light", + "value": "$modal.border.top.danger.light", "type": "color" }, "warning": { - "value": "$modal-medium.border.top.warning.light", + "value": "$modal.border.top.warning.light", "type": "color" } } + }, + "background": { + "value": "$modal.background.light", + "type": "color" } } } diff --git a/tokens/component/modal-medium.json b/tokens/component/modal.json similarity index 91% rename from tokens/component/modal-medium.json rename to tokens/component/modal.json index 56414aeeba5..8b5fbb115f6 100644 --- a/tokens/component/modal-medium.json +++ b/tokens/component/modal.json @@ -1,5 +1,5 @@ { - "modal-medium": { + "modal": { "font": { "header": { "light": { @@ -200,6 +200,20 @@ "value": "$core.spacing.8", "type": "spacing" } + }, + "cancel-button": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } } }, "[specific-element]": { @@ -270,6 +284,20 @@ "value": "$core.border.border-radius.1", "type": "borderRadius" } + }, + "comp-size": { + "small-width": { + "value": "512", + "type": "sizing" + }, + "medium-width": { + "value": "768px", + "type": "sizing" + }, + "full-width": { + "value": "1504px", + "type": "sizing" + } } } } \ No newline at end of file From c1bc14d6541e825e524ef38adb23b424ca7474e8 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Fri, 24 Mar 2023 15:56:54 +0000 Subject: [PATCH 484/696] panel tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++-- tokens/calcite/dark.json | 18 +++++ tokens/calcite/light.json | 18 +++++ tokens/component/panel-header.json | 113 +++++++++++++++++++++++++++++ 5 files changed, 156 insertions(+), 9 deletions(-) create mode 100644 tokens/component/panel-header.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index b3eb4cc02c5..3e253efdaa2 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -47,6 +47,7 @@ "component/rating", "component/tip", "component/tooltip", + "component/panel-header", "component/pagination", "component/segmented-control", "component/stepper", diff --git a/tokens/$themes.json b/tokens/$themes.json index 5d862551528..2857078f579 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/modal": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/modal": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -49,8 +47,7 @@ "component/switch": "source", "component/tooltip": "source", "core": "source", - "semantic": "source", - "component/modal": "disabled" + "semantic": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -139,8 +136,7 @@ "component/pagination": "source", "component/segmented-control": "source", "component/switch": "source", - "component/stepper-item": "source", - "component/modal": "disabled" + "component/stepper-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -262,7 +258,8 @@ "component/block": "enabled", "component/block-section": "enabled", "component/notice": "enabled", - "component/modal": "enabled" + "component/modal": "enabled", + "component/panel-header": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index cd77313b56b..86dc3362050 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1444,6 +1444,24 @@ "value": "$modal.background.dark", "type": "color" } + }, + "panel-header": { + "font": { + "value": "$panel-header.font.dark", + "type": "color" + }, + "icon": { + "value": "$panel-header.icon.dark", + "type": "color" + }, + "border": { + "value": "$panel-header.border.dark", + "type": "color" + }, + "background": { + "value": "$panel-header.background.dark", + "type": "color" + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index f0feb020ae1..1a0ef0c53f8 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1468,6 +1468,24 @@ "value": "$modal.background.light", "type": "color" } + }, + "panel-header": { + "font": { + "value": "$panel-header.font.light", + "type": "color" + }, + "icon": { + "value": "$panel-header.icon.light", + "type": "color" + }, + "border": { + "value": "$panel-header.border.light", + "type": "color" + }, + "background": { + "value": "$panel-header.background.light", + "type": "color" + } } } } diff --git a/tokens/component/panel-header.json b/tokens/component/panel-header.json new file mode 100644 index 00000000000..f0cb9f7c49a --- /dev/null +++ b/tokens/component/panel-header.json @@ -0,0 +1,113 @@ +{ + "panel-header": { + "font": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "heading": { + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "description": { + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-width": { + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "md": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "top-bottom": { + "md": { + "value": "$core.spacing.6", + "type": "spacing" + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file From 965a73abe1b4e5b5c256eca9236b21b110d8d327 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Mar 2023 10:57:40 +0200 Subject: [PATCH 485/696] Updates to list --- tokens/$metadata.json | 2 +- tokens/$themes.json | 8 ++--- tokens/component/list.json | 74 ++++++++++++++++++++++++++++++++++---- 3 files changed, 70 insertions(+), 14 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 31feda79825..135e7e7c622 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -6,7 +6,6 @@ "component/accordion", "component/action", "component/button", - "component/fab", "component/checkbox", "component/chip", "component/dropdown", @@ -18,6 +17,7 @@ "component/avatar", "component/block", "component/block-section", + "component/fab", "component/card", "component/combobox", "component/date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index cad5289bc42..6c7647d958c 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,9 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/[template-comp-name]_Copy": "disabled", - "component/list": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -19,9 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/[template-comp-name]_Copy": "disabled", - "component/list": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, diff --git a/tokens/component/list.json b/tokens/component/list.json index b658a3053ad..d6d71d1e521 100644 --- a/tokens/component/list.json +++ b/tokens/component/list.json @@ -1,18 +1,24 @@ { - "label": { + "list": { "font": { - "sm": { + "label": { "value": "$semantic.font.default.regular.-2h", "type": "typography" }, - "md": { - "value": "$semantic.font.default.regular.-1h", + "description": { + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "icon": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -20,6 +26,60 @@ "dark": { "value": "$semantic.ui.color.text.1.dark", "type": "color" + }, + "selection-single": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "selection-multi": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border": { + "value": "$core.border.border-width.2", + "type": "borderWidth", + "highlight": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "content": { + "space-around": { + "top-bottom": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "left": { + "value": "$core.spacing.6", + "type": "spacing" + }, + "right": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "space-between": { + "value": "$core.spacing.0", + "type": "spacing" } } } From 00f4ac05be45e3b3f6a15042d91773a089b2a7f9 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Mar 2023 15:21:49 +0200 Subject: [PATCH 486/696] Latest list updates --- tokens/component/list.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/tokens/component/list.json b/tokens/component/list.json index d6d71d1e521..0c5445f085c 100644 --- a/tokens/component/list.json +++ b/tokens/component/list.json @@ -81,6 +81,36 @@ "value": "$core.spacing.0", "type": "spacing" } + }, + "dropdown-icon": { + "space-around": { + "child-level-1": { + "left": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "child-level-2": { + "left": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "child-level-3": { + "left": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } + }, + "selection-icon": { + "space-around": { + "left-right": { + "value": "$core.spacing.5", + "type": "spacing" + } + } } } } \ No newline at end of file From 6acb05fc6e7ea041c9467a0565c81055eea4863a Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Mar 2023 15:42:38 +0200 Subject: [PATCH 487/696] Latest updates to list --- tokens/component/list.json | 42 ++++++++++++++++++++++++++------------ 1 file changed, 29 insertions(+), 13 deletions(-) diff --git a/tokens/component/list.json b/tokens/component/list.json index 0c5445f085c..57144c89712 100644 --- a/tokens/component/list.json +++ b/tokens/component/list.json @@ -3,19 +3,27 @@ "font": { "label": { "value": "$semantic.font.default.regular.-2h", - "type": "typography" + "type": "typography", + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, "description": { "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" + "type": "typography", + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } } }, "icon": { @@ -49,9 +57,7 @@ } }, "border": { - "value": "$core.border.border-width.2", - "type": "borderWidth", - "highlight": { + "left": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -111,6 +117,16 @@ "type": "spacing" } } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } } } } \ No newline at end of file From 89db3e4fcbb71346187c7369e1ddea8741c55514 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 27 Mar 2023 16:04:08 +0200 Subject: [PATCH 488/696] Latest updates to list tokens --- tokens/component/list.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/tokens/component/list.json b/tokens/component/list.json index 57144c89712..187e04b7575 100644 --- a/tokens/component/list.json +++ b/tokens/component/list.json @@ -24,6 +24,18 @@ "value": "$semantic.ui.color.text.3.dark", "type": "color" } + }, + "group-heading": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography", + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } } }, "icon": { @@ -126,6 +138,22 @@ "dark": { "value": "$semantic.ui.color.foreground.1.dark", "type": "color" + }, + "group-heading": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + } + }, + "group-heading": { + "space-around": { + "value": "$core.spacing.5", + "type": "spacing" } } } From 7bb7e3f4c63b0fd9fa817ff15672557c9253e6b6 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 27 Mar 2023 16:53:04 +0100 Subject: [PATCH 489/696] popover tokens --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++-- tokens/calcite/dark.json | 18 ++++ tokens/calcite/light.json | 18 ++++ tokens/component/popover.json | 156 ++++++++++++++++++++++++++++++++++ 5 files changed, 203 insertions(+), 5 deletions(-) create mode 100644 tokens/component/popover.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 3e253efdaa2..064b93c489b 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -48,6 +48,7 @@ "component/tip", "component/tooltip", "component/panel-header", + "component/popover", "component/pagination", "component/segmented-control", "component/stepper", diff --git a/tokens/$themes.json b/tokens/$themes.json index 2857078f579..dce3b1d25b1 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/popover": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/popover": "disabled" }, "$figmaStyleReferences": {} }, @@ -47,7 +49,8 @@ "component/switch": "source", "component/tooltip": "source", "core": "source", - "semantic": "source" + "semantic": "source", + "component/popover": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -136,7 +139,8 @@ "component/pagination": "source", "component/segmented-control": "source", "component/switch": "source", - "component/stepper-item": "source" + "component/stepper-item": "source", + "component/popover": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -259,7 +263,8 @@ "component/block-section": "enabled", "component/notice": "enabled", "component/modal": "enabled", - "component/panel-header": "enabled" + "component/panel-header": "enabled", + "component/popover": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 86dc3362050..f7a8ed06167 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1462,6 +1462,24 @@ "value": "$panel-header.background.dark", "type": "color" } + }, + "popover": { + "font": { + "value": "$popover.font.dark", + "type": "color" + }, + "icon": { + "value": "$popover.icon.dark", + "type": "color" + }, + "border": { + "value": "$popover.border.dark", + "type": "color" + }, + "background": { + "value": "$popover.background.dark", + "type": "color" + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 1a0ef0c53f8..05323e62f64 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1486,6 +1486,24 @@ "value": "$panel-header.background.light", "type": "color" } + }, + "popover": { + "font": { + "value": "$popover.font.light", + "type": "color" + }, + "icon": { + "value": "$popover.icon.light", + "type": "color" + }, + "border": { + "value": "$popover.border.light", + "type": "color" + }, + "background": { + "value": "$popover.background.light", + "type": "color" + } } } } diff --git a/tokens/component/popover.json b/tokens/component/popover.json new file mode 100644 index 00000000000..46058af17e9 --- /dev/null +++ b/tokens/component/popover.json @@ -0,0 +1,156 @@ +{ + "popover": { + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.wrap.medium.-1", + "type": "typography" + }, + "md": { + "value": "$semantic.font.wrap.medium.0", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.wrap.medium.1", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.1", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "pointer-size": { + "sm": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.6", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.8", + "type": "spacing" + } + }, + "left-top-bottom": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + } + } +} \ No newline at end of file From f8f6d118446d0764efd8659b36299d8b0e5c5ee9 Mon Sep 17 00:00:00 2001 From: Manuela Leite Costa <117111285+manuelalcosta@users.noreply.github.com> Date: Mon, 27 Mar 2023 16:58:45 +0100 Subject: [PATCH 490/696] popover tokens --- tokens/$themes.json | 12 ++++-------- tokens/component/popover.json | 14 ++++++++++++++ 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index dce3b1d25b1..1eb95d00379 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/popover": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/popover": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -49,8 +47,7 @@ "component/switch": "source", "component/tooltip": "source", "core": "source", - "semantic": "source", - "component/popover": "disabled" + "semantic": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -139,8 +136,7 @@ "component/pagination": "source", "component/segmented-control": "source", "component/switch": "source", - "component/stepper-item": "source", - "component/popover": "disabled" + "component/stepper-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", diff --git a/tokens/component/popover.json b/tokens/component/popover.json index 46058af17e9..63a043fe711 100644 --- a/tokens/component/popover.json +++ b/tokens/component/popover.json @@ -151,6 +151,20 @@ "type": "spacing" } } + }, + "shadow": { + "sm": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + }, + "md": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + }, + "lg": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + } } } } \ No newline at end of file From f974068443b506c347ce5128aa00c976bc7d13a6 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 28 Mar 2023 20:51:14 +0200 Subject: [PATCH 491/696] Updates --- tokens/component/list.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tokens/component/list.json b/tokens/component/list.json index 187e04b7575..90899d41042 100644 --- a/tokens/component/list.json +++ b/tokens/component/list.json @@ -106,18 +106,30 @@ "left": { "value": "$core.spacing.none", "type": "spacing" + }, + "right": { + "value": "$core.spacing.none", + "type": "spacing" } }, "child-level-2": { "left": { "value": "$core.spacing.7", "type": "spacing" + }, + "right": { + "value": "$core.spacing.none", + "type": "spacing" } }, "child-level-3": { "left": { "value": "$core.spacing.11", "type": "spacing" + }, + "right": { + "value": "$core.spacing.none", + "type": "spacing" } } } From c03de8384e7b2f66a4f1e4a73a43318e43297fcd Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 31 Mar 2023 09:18:32 -0700 Subject: [PATCH 492/696] chore: delete extra template file --- .../component/[template-comp-name]_Copy.json | 177 ------------------ 1 file changed, 177 deletions(-) delete mode 100644 tokens/component/[template-comp-name]_Copy.json diff --git a/tokens/component/[template-comp-name]_Copy.json b/tokens/component/[template-comp-name]_Copy.json deleted file mode 100644 index 09df0d4a5e2..00000000000 --- a/tokens/component/[template-comp-name]_Copy.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "[comp-name]": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file From 9fd1168ea4257e01d4ac4af4e22417aa39dd21c2 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 31 Mar 2023 09:18:32 -0700 Subject: [PATCH 493/696] chore: remove extra files from metadata list --- tokens/$metadata.json | 4 +- .../component/[template-comp-name]_Copy.json | 177 ------------------ 2 files changed, 1 insertion(+), 180 deletions(-) delete mode 100644 tokens/component/[template-comp-name]_Copy.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 3bbcc62a26e..61aa6bf3e25 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -54,9 +54,7 @@ "component/segmented-control", "component/stepper", "component/stepper-item", - "component/switch", - "component/[template-comp-name]", - "component/[template-comp-name]_Copy", + "component/switch", "component/[template-comp-name]_Copy", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/component/[template-comp-name]_Copy.json b/tokens/component/[template-comp-name]_Copy.json deleted file mode 100644 index 09df0d4a5e2..00000000000 --- a/tokens/component/[template-comp-name]_Copy.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "[comp-name]": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} \ No newline at end of file From 21b30d3cb3263712ed1aa160fe6b830839446d44 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 31 Mar 2023 09:37:31 -0700 Subject: [PATCH 494/696] chore: remove unused template file --- tokens/$metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 61aa6bf3e25..816e90a8603 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -54,7 +54,7 @@ "component/segmented-control", "component/stepper", "component/stepper-item", - "component/switch", "component/[template-comp-name]_Copy", + "component/switch", "component/accordion_backup", "calcite/light", "calcite/dark", From ed1ec00e2be8016c70866c04d6dd8178fe3cd518 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Fri, 31 Mar 2023 18:58:28 +0200 Subject: [PATCH 495/696] Latest changes. Commit before merging and pulling --- tokens/$metadata.json | 8 +- tokens/$themes.json | 11 +- tokens/calcite/dark.json | 54 +++++++ tokens/calcite/light.json | 54 +++++++ tokens/component/dropdown.json | 25 +++ tokens/component/list.json | 172 -------------------- tokens/component/modal.json | 2 +- tokens/component/slider-range.json | 251 +++++++++++++++++++++++++++++ tokens/component/slider.json | 251 +++++++++++++++++++++++++++++ 9 files changed, 645 insertions(+), 183 deletions(-) delete mode 100644 tokens/component/list.json create mode 100644 tokens/component/slider-range.json create mode 100644 tokens/component/slider.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 816e90a8603..4161f4363b5 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -6,6 +6,7 @@ "component/accordion", "component/action", "component/button", + "component/fab", "component/checkbox", "component/chip", "component/dropdown", @@ -17,7 +18,6 @@ "component/avatar", "component/block", "component/block-section", - "component/fab", "component/card", "component/combobox", "component/date-picker", @@ -39,7 +39,6 @@ "component/notice", "component/textarea", "component/label", - "component/list", "component/link", "component/loader", "component/radio", @@ -52,9 +51,12 @@ "component/popover", "component/pagination", "component/segmented-control", + "component/slider", + "component/slider-range", "component/stepper", "component/stepper-item", "component/switch", + "component/[template-comp-name]", "component/accordion_backup", "calcite/light", "calcite/dark", @@ -62,4 +64,4 @@ "brand/light", "brand/dark" ] -} +} \ No newline at end of file diff --git a/tokens/$themes.json b/tokens/$themes.json index b4cbcca50ea..1eb95d00379 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -47,8 +47,7 @@ "component/switch": "source", "component/tooltip": "source", "core": "source", - "semantic": "source", - "component/list": "source" + "semantic": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -137,8 +136,7 @@ "component/pagination": "source", "component/segmented-control": "source", "component/switch": "source", - "component/stepper-item": "source", - "component/list": "source" + "component/stepper-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -262,8 +260,7 @@ "component/notice": "enabled", "component/modal": "enabled", "component/panel-header": "enabled", - "component/popover": "enabled", - "component/list": "enabled" + "component/popover": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", @@ -789,4 +786,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] +] \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index f7a8ed06167..f7f06b71362 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1480,6 +1480,60 @@ "value": "$popover.background.dark", "type": "color" } + }, + "slider": { + "font": { + "label": { + "value": "$slider.font.label.dark", + "type": "color" + }, + "tick-label": { + "value": "$slider.font.tick-label.dark", + "type": "color" + } + }, + "handle": { + "background": { + "value": "$slider.handle.background.dark", + "type": "color" + }, + "border": { + "value": "$slider.handle.border.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$slider.border.default.dark", + "type": "color" + }, + "active": { + "value": "$slider.border.active.dark", + "type": "color" + } + }, + "tick": { + "default": { + "background": { + "value": "$slider.tick.default.background.dark", + "type": "color" + }, + "border": { + "value": "$slider.tick.default.border.dark", + "type": "color" + } + }, + "active": { + "background": { + "value": "$slider.tick.active.background.dark", + "type": "color" + }, + "border": { + "value": "$slider.tick.active.border.dark", + "type": "color" + } + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 05323e62f64..dfcdbada61d 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1504,6 +1504,60 @@ "value": "$popover.background.light", "type": "color" } + }, + "slider": { + "font": { + "label": { + "value": "$slider.font.label.light", + "type": "color" + }, + "tick-label": { + "value": "$slider.font.tick-label.light", + "type": "color" + } + }, + "handle": { + "background": { + "value": "$slider.handle.background.light", + "type": "color" + }, + "border": { + "value": "$slider.handle.border.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$slider.border.default.light", + "type": "color" + }, + "active": { + "value": "$slider.border.active.light", + "type": "color" + } + }, + "tick": { + "default": { + "background": { + "value": "$slider.tick.default.background.light", + "type": "color" + }, + "border": { + "value": "$slider.tick.default.border.light", + "type": "color" + } + }, + "active": { + "background": { + "value": "$slider.tick.active.background.light", + "type": "color" + }, + "border": { + "value": "$slider.tick.active.border.light", + "type": "color" + } + } + } } } } diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index 86bc4163498..b4e2f0a5bb1 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -147,6 +147,31 @@ "value": "$core.spacing.11", "type": "spacing" } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } } } } \ No newline at end of file diff --git a/tokens/component/list.json b/tokens/component/list.json deleted file mode 100644 index 90899d41042..00000000000 --- a/tokens/component/list.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "list": { - "font": { - "label": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography", - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "description": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography", - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "group-heading": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography", - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "selection-single": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "selection-multi": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "border": { - "left": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "content": { - "space-around": { - "top-bottom": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "left": { - "value": "$core.spacing.6", - "type": "spacing" - }, - "right": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "space-between": { - "value": "$core.spacing.0", - "type": "spacing" - } - }, - "dropdown-icon": { - "space-around": { - "child-level-1": { - "left": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "right": { - "value": "$core.spacing.none", - "type": "spacing" - } - }, - "child-level-2": { - "left": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "right": { - "value": "$core.spacing.none", - "type": "spacing" - } - }, - "child-level-3": { - "left": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "right": { - "value": "$core.spacing.none", - "type": "spacing" - } - } - } - }, - "selection-icon": { - "space-around": { - "left-right": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - }, - "background": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - }, - "group-heading": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - } - }, - "group-heading": { - "space-around": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/modal.json b/tokens/component/modal.json index 1d232964f5a..8b5fbb115f6 100644 --- a/tokens/component/modal.json +++ b/tokens/component/modal.json @@ -300,4 +300,4 @@ } } } -} +} \ No newline at end of file diff --git a/tokens/component/slider-range.json b/tokens/component/slider-range.json new file mode 100644 index 00000000000..a2a12fbf356 --- /dev/null +++ b/tokens/component/slider-range.json @@ -0,0 +1,251 @@ +{ + "slider-range": { + "font": { + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "tick-label": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } + } + }, + "handle": { + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + }, + "tick-size": { + "width": { + "sm": { + "value": "$core.sizing.1", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.1", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.1", + "type": "sizing" + } + }, + "height": { + "sm": { + "value": "$core.sizing.2", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.2", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.2", + "type": "sizing" + } + } + }, + "handle-size": { + "sm": { + "value": "$core.sizing.4", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "tick": { + "default": { + "background": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "active": { + "background": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/slider.json b/tokens/component/slider.json new file mode 100644 index 00000000000..1ece5fd7554 --- /dev/null +++ b/tokens/component/slider.json @@ -0,0 +1,251 @@ +{ + "slider": { + "font": { + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "tick-label": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } + } + }, + "handle": { + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + }, + "tick-size": { + "width": { + "sm": { + "value": "$core.sizing.1", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.1", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.1", + "type": "sizing" + } + }, + "height": { + "sm": { + "value": "$core.sizing.2", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.2", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.2", + "type": "sizing" + } + } + }, + "handle-size": { + "sm": { + "value": "$core.sizing.4", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "tick": { + "default": { + "background": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "active": { + "background": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + } + } + } +} \ No newline at end of file From be1ecf60da87a51c0f67d182cadc20a38f44de3a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 4 Apr 2023 13:28:39 -0700 Subject: [PATCH 496/696] chore: updating workflow per PR comments --- .github/workflows/sync_from_airtable.yml | 460 ++++++++++++----------- 1 file changed, 238 insertions(+), 222 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 35b33b176a6..1b005b35c3b 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -1,7 +1,6 @@ name: Sync from Airtable on: - # publish blog using webhook repository_dispatch: types: [airtable-update] @@ -9,8 +8,8 @@ env: DATA: ${{ toJSON(github.event.client_payload.data) }} NUMBER: ${{ github.event.client_payload.number }} TITLE: ${{ github.event.client_payload.title }} - OWNER: 'Esri' - REPO: 'calcite-design-tokens' + OWNER: "Esri" + REPO: "calcite-components" jobs: existing_issue: @@ -19,41 +18,30 @@ jobs: outputs: github_issue: ${{ steps.find-existing-issue.outputs.result }} steps: - - uses: actions/github-script@v6 - id: find-existing-issue - env: - NUMBER: '${{env.NUMBER}}' - OWNER: '${{env.OWNER}}' - REPO: '${{env.REPO}}' - TITLE: '${{env.TITLE}}' - ACTION: '${{github.event.client_payload.action}}' - with: - result-encoding: string - script: | - const { NUMBER, OWNER, REPO, ACTION, TITLE } = process.env; - try { - const issue = await github.rest.issues.get({ - issue_number: NUMBER, - owner: OWNER, - repo: REPO, - }); - - return issue.status === 200 ? JSON.stringify(issue) : JSON.stringify(null); - } catch (error) { - - const issue = await github.rest.search.issuesAndPullRequests({ - q: `"${TITLE}" in:title is:open is:issue`, - sort: 'created', - order: 'asc', - per_page: 1 - }).then((result) => result[0]); - core.info(issue); + - uses: actions/github-script@v6 + id: find-existing-issue + env: + NUMBER: "${{env.NUMBER}}" + OWNER: "${{env.OWNER}}" + REPO: "${{env.REPO}}" + TITLE: "${{env.TITLE}}" + ACTION: "${{github.event.client_payload.action}}" + with: + result-encoding: string + script: | + const { NUMBER, OWNER, REPO, ACTION, TITLE } = process.env; + try { + const issue = await github.rest.issues.get({ + issue_number: NUMBER, + owner: OWNER, + repo: REPO, + }); - return issue ? JSON.stringify(issue) : JSON.stringify(null); - } + return issue.status === 200 ? JSON.stringify(issue) : null; + } catch (error) { + return null; + } - return JSON.stringify(null); - assigned_unassigned: name: Assign or Unassign needs: existing_issue @@ -74,41 +62,51 @@ jobs: if (assignees) { const issue = JSON.parse(process.env.ISSUE); const ghAssignees = issue.data.assignees.map((assignee) => assignee.login); - const keepAssignees = [] - const addAssignees = []; - const ghLookup = {}; - for (let j in ghAssignees) { - ghLookup[ghAssignees[j]] = ghAssignees[j]; - } - for (let i in assignees) { - if (typeof ghLookup[assignees[i]] != 'undefined') { - keepAssignees.push(assignees[i]) - delete ghLookup[assignees[i]]; + const { removeAssignees, addAssignees } = assignees.reduce((acc, labelName, idx) => { + const currentIdx = acc.priorAssignees.indexOf(labelName); + + if (currentIdx === -1) { + acc.addAssignees.push(labelName); } else { - addAssignees.push(assignees[i]); + // Keep the label indices from the priorLabel list + acc.keepAssignees[currentIdx] = labelName; } + + if (idx === labels.length - 1) { + // We are in our final loop. Remove empty indices from keepAssignees and set those priorAssignees for removal. + acc.keepAssignees = acc.keepAssignees.filter((label, keepLabelIdx) => { + if (label === undefined) { + acc.removeAssignees.push(acc.priorAssignees[keepLabelIdx]); + return false; + } + + return true; + }) + } + + return acc; + }, { keepAssignees: new Array(issue.data.assignees.length), removeAssignees: [], addAssignees: [], priorAssignees: issue.data.assignees.map((assignee) => assignee.login)}); + + if (addAssignees.length > 0) { + await github.rest.issues.addAssignees({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + assignees: addAssignees + }); + core.info('Assignees Added: ', addAssignees.join(',')) } - const removeAssignees = Object.keys(ghLookup); - if (addAssignees && addAssignees.length > 0) { - await github.rest.issues.addAssignees({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - assignees: addAssignees - }); - core.info('Assignees Added: ', addAssignees.join(',')) - } - if (removeAssignees && removeAssignees.length > 0) { - await github.rest.issues.removeAssignees({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - assignees: removeAssignees - }); - core.info('Assignees Removed: ', removeAssignees.join(',')) + if (removeAssignees.length > 0) { + await github.rest.issues.removeAssignees({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + assignees: removeAssignees + }); + core.info('Assignees Removed: ', removeAssignees.join(',')) } } - + labeled_unlabeled: name: Labeled or Unlabeled needs: existing_issue @@ -123,91 +121,106 @@ jobs: OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} with: - script: | - const { DATA, NUMBER, ISSUE, OWNER, REPO } = process.env; - const { labels } = JSON.parse(DATA); - if (labels) { - const issue = JSON.parse(process.env.ISSUE); - const ghLabels = issue.data.labels.map((label) => label.name); - const keepLabels = [] - const addLabels = []; - const ghLookup = {}; - for (let j in ghLabels) { - ghLookup[ghLabels[j]] = ghLabels[j]; - } - for (let i in labels) { - if (typeof ghLookup[labels[i]] != 'undefined') { - keepLabels.push(labels[i]) - delete ghLookup[labels[i]]; - } else { - addLabels.push(labels[i]); - } - } - const removeLabels = Object.keys(ghLookup); - if (addLabels && addLabels.length > 0) { - try { - await github.rest.issues.addLabels({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - labels: addLabels - }) - core.info(`Labels added: ${addLabels}`) - } catch (error) { - if (error.toString().includes('Label does not exist')) { - await Promise.all(addLabels.map(async (label) => { - try { - await github.rest.issues.getLabel({ - owner: OWNER, - repo: REPO, - name: label - }); - await github.rest.issues.addLabels({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - labels: label - }); - core.info(`Label added: ${label})`) - } catch (error) { - try { - await github.rest.issues.createLabel({ - owner: OWNER, - repo: REPO, - name: label - }); - core.info(`Label created: ${label}`) - await github.rest.issues.addLabels({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - labels: label - }); - core.info(`Label added: ${label}`) - } catch (error) { - console.error(`Label not added: ${error}`) - } - } - })) - } - } - } - if (removeLabels && removeLabels.length > 0) { - try { - await Promise.all(removeLabels.map(async (name) => { - await github.rest.issues.removeLabel({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - name - }); - core.info(`Remove Label: ${name}`) - })); - } catch (err) { - if (!error.includes('Label does not exist')) { core.error(`Label not removed: ${err}`) } - } - } - } + script: | + const { DATA, NUMBER, ISSUE, OWNER, REPO } = process.env; + const { labels } = JSON.parse(DATA); + if (labels) { + const issue = JSON.parse(process.env.ISSUE); + const { removeLabels, addLabels } = labels.reduce((acc, labelName, idx) => { + const currentIdx = acc.priorLabels.indexOf(labelName); + + if (currentIdx === -1) { + acc.addLabels.push(labelName); + } else { + // Keep the label indices from the priorLabel list + acc.keepLabels[currentIdx] = labelName; + } + + if (idx === labels.length - 1) { + // We are in our final loop. Remove empty indices from keepLabels and set those priorLabels for removal. + acc.keepLabels = acc.keepLabels.filter((label, keepLabelIdx) => { + if (label === undefined) { + acc.removeLabels.push(acc.priorLabels[keepLabelIdx]); + return false; + } + return true; + }) + } + + return acc; + + }, { keepLabels: new Array(issue.data.labels.length), removeLabels: [], addLabels: [], priorLabels: issue.data.labels.map((label) => label.name)}); + + if (addLabels.length > 0) { + await Promise.all(addLabels.map(async (label) => { + try { + await github.rest.issues.getLabel({ + owner: OWNER, + repo: REPO, + name: label + }); + await github.rest.issues.addLabels({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + labels: label + }); + core.info(`Label added: ${label})`) + } catch (error) { + try { + await github.rest.issues.createLabel({ + owner: OWNER, + repo: REPO, + name: label + }); + core.info(`Label created: ${label}`) + await github.rest.issues.addLabels({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + labels: label + }); + core.info(`Label added: ${label}`) + } catch (error) { + console.error(`Label not added: ${error}`) + } + } + })) + + try { + await github.rest.issues.addLabels({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + labels: addLabels + }) + core.info(`Labels added: ${addLabels}`) + } catch (error) { + if (error.toString().includes('Label does not exist')) { + + } + } + } + + if (removeLabels.length > 0) { + try { + await Promise.all(removeLabels.map(async (name) => { + await github.rest.issues.removeLabel({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + name + }); + core.info(`Remove Label: ${name}`) + })); + } catch (err) { + if (!error.includes('Label does not exist')) { + core.error(`Label not removed: ${err}`) + } + } + } + } + milestoned_demilestoned: name: Milestoned or Demilestoned needs: existing_issue @@ -221,38 +234,39 @@ jobs: OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} with: - script: | - const { DATA, NUMBER, OWNER, REPO } = process.env; - const { milestone } = JSON.parse(DATA); - const repoName = `${OWNER}/${REPO}`; - try { - if (milestone) { - const { repo, milestone_number } = milestone; - if (repoName === repo) { - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - milestone: milestone_number || null, - }); - core.info(`Issue ${ NUMBER }'s Milestone updated to ${ milestone_number }`) - } else { - throw new Error(`This milestone only exists in ${milestone.repo}.`) - } - } else { - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - milestone: null, - }); - core.info(`Issue ${ NUMBER }'s Milestone updated to 'null'`) - } - } catch (error) { - core.info(error) - } + script: | + const { DATA, NUMBER, OWNER, REPO } = process.env; + const { milestone } = JSON.parse(DATA); + const repoName = `${OWNER}/${REPO}`; + try { + if (milestone) { + const { repo, milestone_number } = milestone; + if (repoName === repo) { + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + milestone: milestone_number || null, + }); + core.info(`Issue ${ NUMBER }'s Milestone updated to ${ milestone_number }`) + } else { + throw new Error(`This milestone only exists in ${milestone.repo}.`) + } + } else { + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + milestone: null, + }); + core.info(`Issue ${ NUMBER }'s Milestone updated to 'null'`) + } + } catch (error) { + core.info(error) + } + open_closed: - name: Opened, ReOpened, or Closed + name: Opened, Reopened, or Closed needs: existing_issue if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'opened/closed') runs-on: ubuntu-latest @@ -264,16 +278,17 @@ jobs: OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} with: - script: | - const { DATA, NUMBER, OWNER, REPO } = process.env; - const { state } = JSON.parse(DATA); - - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - state, - }); + script: | + const { DATA, NUMBER, OWNER, REPO } = process.env; + const { state } = JSON.parse(DATA); + + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + state, + }); + edited: name: Edited needs: existing_issue @@ -282,21 +297,22 @@ jobs: steps: - uses: actions/github-script@v6 env: - DATA: ${{ fromJSON(env.DATA) }} - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} + DATA: ${{ fromJSON(env.DATA) }} + NUMBER: ${{env.NUMBER}} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} with: - script: | - const { DATA, NUMBER, OWNER, REPO } = process.env; - const data = JSON.parse(DATA); - - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - ...data, - }); + script: | + const { DATA, NUMBER, OWNER, REPO } = process.env; + const data = JSON.parse(DATA); + + await github.rest.issues.update({ + owner: OWNER, + repo: REPO, + issue_number: NUMBER, + ...data, + }); + new_issue: name: Create New Issue needs: existing_issue @@ -305,21 +321,21 @@ jobs: steps: - uses: actions/github-script@v6 env: - DATA: ${{ env.DATA }} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} + DATA: ${{ env.DATA }} + OWNER: ${{env.OWNER}} + REPO: ${{env.REPO}} with: - script: | - const { DATA, NUMBER, OWNER, REPO } = process.env; - const { assignees, title, body, labels, milestone } = JSON.parse(DATA); - const newIssue = await github.rest.issues.create({ - owner: OWNER, - repo: REPO, - title, - body, - labels, - milestone: milestone[0].milestone_number, - assignees - }); + script: | + const { DATA, NUMBER, OWNER, REPO } = process.env; + const { assignees, title, body, labels, milestone } = JSON.parse(DATA); + const newIssue = await github.rest.issues.create({ + owner: OWNER, + repo: REPO, + title, + body, + labels, + milestone: milestone[0].milestone_number, + assignees + }); - core.info(`New Issue ${JSON.stringify(newIssue)}`); + core.info(`New Issue ${JSON.stringify(newIssue)}`); From 64d879b6e436af93a2eaaf7112cef7c3be256d32 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 4 Apr 2023 13:55:26 -0700 Subject: [PATCH 497/696] fix: concurrent workflow of the same issue --- .github/workflows/sync_from_airtable.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 1b005b35c3b..7d7644ca29c 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -11,6 +11,10 @@ env: OWNER: "Esri" REPO: "calcite-components" +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ env.NUMBER }} + cancel-in-progress: true + jobs: existing_issue: name: Find Existing Issue From 589ca6b61689a755f1eef0badfc341505fedcc18 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 4 Apr 2023 14:18:16 -0700 Subject: [PATCH 498/696] fix: stop issue from updating if data has not changed --- .github/workflows/sync_from_airtable.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 7d7644ca29c..ce8beb2b24b 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -307,20 +307,25 @@ jobs: REPO: ${{env.REPO}} with: script: | - const { DATA, NUMBER, OWNER, REPO } = process.env; - const data = JSON.parse(DATA); + const { DATA, NUMBER, OWNER, REPO, ISSUE } = process.env; + const issue = JSON.parse(ISSUE); + const { body, title } = JSON.parse(DATA); + if (issue.title === title && issue.body === body) { + return true; + } + await github.rest.issues.update({ owner: OWNER, repo: REPO, issue_number: NUMBER, - ...data, + body, + title, }); - new_issue: name: Create New Issue needs: existing_issue - if: fromJSON(needs.existing_issue.outputs.github_issue) == null + if: needs.existing_issue.outputs.github_issue == null runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 8ef8780289b706151e187bad4a65dc695facac7d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 4 Apr 2023 14:21:17 -0700 Subject: [PATCH 499/696] fix: concurrency use issue number reference --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index ce8beb2b24b..2d35f459993 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -12,7 +12,7 @@ env: REPO: "calcite-components" concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ env.NUMBER }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.client_payload.number }} cancel-in-progress: true jobs: @@ -314,7 +314,7 @@ jobs: if (issue.title === title && issue.body === body) { return true; } - + await github.rest.issues.update({ owner: OWNER, repo: REPO, From 811cc0335c1fc9ecb35d14899877611c32cd6923 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 4 Apr 2023 14:47:07 -0700 Subject: [PATCH 500/696] fix: remove 'null' from check --- .github/workflows/sync_from_airtable.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 2d35f459993..922982efeb5 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -41,9 +41,9 @@ jobs: repo: REPO, }); - return issue.status === 200 ? JSON.stringify(issue) : null; + return issue.status === 200 ? JSON.stringify(issue) : ''; } catch (error) { - return null; + return ''; } assigned_unassigned: @@ -325,7 +325,7 @@ jobs: new_issue: name: Create New Issue needs: existing_issue - if: needs.existing_issue.outputs.github_issue == null + if: needs.existing_issue.outputs.github_issue == '' runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From c90800ef5fb80e08dbae8dff3a73c407bbb18150 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 4 Apr 2023 15:02:49 -0700 Subject: [PATCH 501/696] fix: fallback for new issue values --- .github/workflows/sync_from_airtable.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 922982efeb5..5cb184199b9 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -340,11 +340,11 @@ jobs: const newIssue = await github.rest.issues.create({ owner: OWNER, repo: REPO, - title, - body, - labels, - milestone: milestone[0].milestone_number, - assignees + title: title || '', + body: body || '', + labels: labels || undefined, + milestone: milestone[0].milestone_number || undefined, + assignees: assignees || undefined, }); core.info(`New Issue ${JSON.stringify(newIssue)}`); From 7ca3fd799d32653536eec45527ee451e3553dfb1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 12:24:08 -0700 Subject: [PATCH 502/696] WIP: sync from airtable --- .github/workflows/sync_from_airtable.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 5cb184199b9..6f9c34fba7a 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -10,6 +10,7 @@ env: TITLE: ${{ github.event.client_payload.title }} OWNER: "Esri" REPO: "calcite-components" + ACTIONS_STEP_DEBUG: true concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.client_payload.number }} @@ -337,14 +338,17 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const { assignees, title, body, labels, milestone } = JSON.parse(DATA); - const newIssue = await github.rest.issues.create({ - owner: OWNER, - repo: REPO, - title: title || '', - body: body || '', - labels: labels || undefined, - milestone: milestone[0].milestone_number || undefined, - assignees: assignees || undefined, - }); + const newIssue = { test: 'one' } + /* + const newIssue = await github.rest.issues.create({ + owner: OWNER, + repo: REPO, + title: title || '', + body: body || '', + labels: labels || undefined, + milestone: milestone[0].milestone_number || undefined, + assignees: assignees || undefined, + }); + */ core.info(`New Issue ${JSON.stringify(newIssue)}`); From 5619d57f442091f53398988910bcfffa19706311 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 12:43:47 -0700 Subject: [PATCH 503/696] fix: workflow if check error --- .github/workflows/sync_from_airtable.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 6f9c34fba7a..fce6f01fb6f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -50,7 +50,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'assigned/unassigned') + if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'assigned/unassigned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -115,7 +115,7 @@ jobs: labeled_unlabeled: name: Labeled or Unlabeled needs: existing_issue - if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'labeled/unlabeled') + if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'labeled/unlabeled') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -229,7 +229,7 @@ jobs: milestoned_demilestoned: name: Milestoned or Demilestoned needs: existing_issue - if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'milestoned/demilestoned') + if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'milestoned/demilestoned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -273,7 +273,7 @@ jobs: open_closed: name: Opened, Reopened, or Closed needs: existing_issue - if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'opened/closed') + if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'opened/closed') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -297,7 +297,7 @@ jobs: edited: name: Edited needs: existing_issue - if: (fromJSON(needs.existing_issue.outputs.github_issue).status == 200 ) && (github.event.client_payload.action == 'edited') + if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'edited') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From 427e70e5940d7ea2d9cbf36bb45b4c46b4b4a301 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 13:07:12 -0700 Subject: [PATCH 504/696] fix: if check syntax --- .github/workflows/sync_from_airtable.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index fce6f01fb6f..3cefba1527c 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -50,7 +50,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'assigned/unassigned') + if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'assigned/unassigned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -115,7 +115,7 @@ jobs: labeled_unlabeled: name: Labeled or Unlabeled needs: existing_issue - if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'labeled/unlabeled') + if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'labeled/unlabeled') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -229,7 +229,7 @@ jobs: milestoned_demilestoned: name: Milestoned or Demilestoned needs: existing_issue - if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'milestoned/demilestoned') + if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'milestoned/demilestoned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -273,7 +273,7 @@ jobs: open_closed: name: Opened, Reopened, or Closed needs: existing_issue - if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'opened/closed') + if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'opened/closed') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -297,7 +297,7 @@ jobs: edited: name: Edited needs: existing_issue - if: needs.existing_issue.outputs.github_issue !== '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'edited') + if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'edited') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 From c2001baef47ecf57a5bff1e51a7557cfe32974a1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 13:16:36 -0700 Subject: [PATCH 505/696] fix: debug workflow issue create --- .github/workflows/sync_from_airtable.yml | 33 ++++++++++++++++-------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 3cefba1527c..192f7ec467b 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -339,16 +339,27 @@ jobs: const { DATA, NUMBER, OWNER, REPO } = process.env; const { assignees, title, body, labels, milestone } = JSON.parse(DATA); const newIssue = { test: 'one' } - /* - const newIssue = await github.rest.issues.create({ - owner: OWNER, - repo: REPO, - title: title || '', - body: body || '', - labels: labels || undefined, - milestone: milestone[0].milestone_number || undefined, - assignees: assignees || undefined, - }); - */ + + if (title === undefined || body === undefined) return true; + + core.debug({ + owner: OWNER, + repo: REPO, + title: title, + body: body, + labels: labels, + milestone: milestone[0].milestone_number, + assignees: assignees, + }) + + const newIssue = await github.issues.create({ + owner: OWNER, + repo: REPO, + title: title, + body: body, + labels: labels, + milestone: milestone[0].milestone_number, + assignees: assignees, + }); core.info(`New Issue ${JSON.stringify(newIssue)}`); From 025541e960f1cf690e0a828087e57399bcaee17e Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 13:18:53 -0700 Subject: [PATCH 506/696] fix: duplicate const --- .github/workflows/sync_from_airtable.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 192f7ec467b..582cbd9a512 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -338,7 +338,6 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const { assignees, title, body, labels, milestone } = JSON.parse(DATA); - const newIssue = { test: 'one' } if (title === undefined || body === undefined) return true; From f37d3bb4c5af69fa0243780291a26a1355610caf Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 13:28:20 -0700 Subject: [PATCH 507/696] fix: debug new issue silent error --- .github/workflows/sync_from_airtable.yml | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 582cbd9a512..c56aa397979 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -10,7 +10,6 @@ env: TITLE: ${{ github.event.client_payload.title }} OWNER: "Esri" REPO: "calcite-components" - ACTIONS_STEP_DEBUG: true concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.client_payload.number }} @@ -340,25 +339,20 @@ jobs: const { assignees, title, body, labels, milestone } = JSON.parse(DATA); if (title === undefined || body === undefined) return true; - - core.debug({ - owner: OWNER, - repo: REPO, - title: title, - body: body, - labels: labels, - milestone: milestone[0].milestone_number, - assignees: assignees, - }) const newIssue = await github.issues.create({ owner: OWNER, repo: REPO, title: title, body: body, - labels: labels, - milestone: milestone[0].milestone_number, - assignees: assignees, + /* + labels: labels, + milestone: milestone[0].milestone_number, + assignees: assignees, + */ }); - core.info(`New Issue ${JSON.stringify(newIssue)}`); + if (!newIssue.number) { + core.log(newIssue) + throw new Error('Issue creation error') + } From c8d57e5560257f435ec0f7ad31f9971182b05a25 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 13:33:32 -0700 Subject: [PATCH 508/696] fix: debug new issue silent error --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index c56aa397979..96b7c90237d 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -350,7 +350,7 @@ jobs: milestone: milestone[0].milestone_number, assignees: assignees, */ - }); + }).then((response) => core.log(response)); if (!newIssue.number) { core.log(newIssue) From 592086dca3274339f2007fbc6ef6702eac95c1fd Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 13:38:25 -0700 Subject: [PATCH 509/696] fix: create new issue --- .github/workflows/sync_from_airtable.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 96b7c90237d..cf25f8e4709 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -344,15 +344,10 @@ jobs: owner: OWNER, repo: REPO, title: title, - body: body, - /* - labels: labels, - milestone: milestone[0].milestone_number, - assignees: assignees, - */ - }).then((response) => core.log(response)); + body: body + }).then((response) => core.debug(response)); if (!newIssue.number) { - core.log(newIssue) - throw new Error('Issue creation error') + core.debug(newIssue) } + From 7cde7101df411bf2b7a12bf625d671c3d489e990 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 13:56:58 -0700 Subject: [PATCH 510/696] fix: create new issue --- .github/workflows/sync_from_airtable.yml | 29 ++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index cf25f8e4709..eed1fc7e8b5 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -336,15 +336,36 @@ jobs: with: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; - const { assignees, title, body, labels, milestone } = JSON.parse(DATA); + let { title, body, assignees, milestone labels } = JSON.parse(DATA); + + if (!title || title.length < 2) { + core.error(JSON.parse(DATA)) + return true; + } + + title = title.toString(); + body = body || ''; + assignees = assignees + ? Array.isArray(assignees) + ? assignees + : assignees.split(',') + : null; + milestone = milestone ? Number(milestone) : null; + labels = labels + ? Array.isArray(labels) + ? labels + : labels.split(',') + : null; - if (title === undefined || body === undefined) return true; const newIssue = await github.issues.create({ owner: OWNER, repo: REPO, - title: title, - body: body + title, + body, + assignees, + milestone, + labels }).then((response) => core.debug(response)); if (!newIssue.number) { From 31cf62898cfa07fcfab09e7b51f90ba8b6a7ee17 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 14:04:16 -0700 Subject: [PATCH 511/696] fix: create new issue --- .github/workflows/sync_from_airtable.yml | 30 +++++++++++++++++------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index eed1fc7e8b5..4ded566a1f2 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -358,15 +358,27 @@ jobs: : null; - const newIssue = await github.issues.create({ - owner: OWNER, - repo: REPO, - title, - body, - assignees, - milestone, - labels - }).then((response) => core.debug(response)); + try { + const newIssue = await github.issues.create({ + owner: OWNER, + repo: REPO, + title, + body, + assignees, + milestone, + labels + }); + } catch(err) { + core.error({ + owner: OWNER, + repo: REPO, + title, + body, + assignees, + milestone, + labels + }) + } if (!newIssue.number) { core.debug(newIssue) From 9b46caf39eb64ae063ddc0a23b7aff47747346ca Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 14:22:34 -0700 Subject: [PATCH 512/696] fix: create new issue --- .github/workflows/sync_from_airtable.yml | 37 +++++------------------- 1 file changed, 8 insertions(+), 29 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4ded566a1f2..4a2ec786b66 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -336,30 +336,20 @@ jobs: with: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; - let { title, body, assignees, milestone labels } = JSON.parse(DATA); + const data = JSON.parse(DATA); + const title = `${data.title}`; + const body = data.body ? `${data.body}` : ''; + const assignees = null; + const milestone = null; + const labels = null; + if (!title || title.length < 2) { core.error(JSON.parse(DATA)) return true; } - title = title.toString(); - body = body || ''; - assignees = assignees - ? Array.isArray(assignees) - ? assignees - : assignees.split(',') - : null; - milestone = milestone ? Number(milestone) : null; - labels = labels - ? Array.isArray(labels) - ? labels - : labels.split(',') - : null; - - - try { - const newIssue = await github.issues.create({ + const newIssue = await github.issues.create({ owner: OWNER, repo: REPO, title, @@ -368,17 +358,6 @@ jobs: milestone, labels }); - } catch(err) { - core.error({ - owner: OWNER, - repo: REPO, - title, - body, - assignees, - milestone, - labels - }) - } if (!newIssue.number) { core.debug(newIssue) From 810f71862fe9314840956700cbd45b2c6dbbcea6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 14:25:17 -0700 Subject: [PATCH 513/696] fix: new issue create action --- .github/workflows/sync_from_airtable.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4a2ec786b66..d53848d8129 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -342,14 +342,7 @@ jobs: const assignees = null; const milestone = null; const labels = null; - - - if (!title || title.length < 2) { - core.error(JSON.parse(DATA)) - return true; - } - - const newIssue = await github.issues.create({ + const issueCreateObject = { owner: OWNER, repo: REPO, title, @@ -357,7 +350,20 @@ jobs: assignees, milestone, labels - }); + }; + + + if (!title || title.length < 2) { + core.error(JSON.parse(DATA)) + return true; + } + + try { + const newIssue = await github.issues.create(issueCreateObject); + } catch (err) { + core.error(err); + core.info(issueCreateObject) + } if (!newIssue.number) { core.debug(newIssue) From 3048a5f3022684c4c228a9fee4c384363cebe6f6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 15:00:40 -0700 Subject: [PATCH 514/696] fix: action create new issue --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index d53848d8129..41f7cd75676 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -359,7 +359,7 @@ jobs: } try { - const newIssue = await github.issues.create(issueCreateObject); + const newIssue = await github.rest.issues.create(issueCreateObject); } catch (err) { core.error(err); core.info(issueCreateObject) From 9e1a2fcc8ead06a0fd49c7b75477552b0276e4da Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 15:18:01 -0700 Subject: [PATCH 515/696] fix: new issue --- .github/workflows/sync_from_airtable.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 41f7cd75676..a81c7cf49a7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -360,12 +360,12 @@ jobs: try { const newIssue = await github.rest.issues.create(issueCreateObject); + + if (!newIssue.number) { + core.debug(newIssue) + } } catch (err) { core.error(err); - core.info(issueCreateObject) - } - - if (!newIssue.number) { - core.debug(newIssue) + core.info(JSON.stringify(issueCreateObject, null, 4)) } From 3a4613419c75fbe53943f62965af754b0710ce88 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 15:54:45 -0700 Subject: [PATCH 516/696] fix: new issue create action --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a81c7cf49a7..e38d25000d2 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -359,7 +359,7 @@ jobs: } try { - const newIssue = await github.rest.issues.create(issueCreateObject); + const newIssue = await github.issues.create(issueCreateObject); if (!newIssue.number) { core.debug(newIssue) From a30bf3307137c98776ff6df3eb8150d536f5172f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 16:02:59 -0700 Subject: [PATCH 517/696] fix: action create new issue --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index e38d25000d2..a81c7cf49a7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -359,7 +359,7 @@ jobs: } try { - const newIssue = await github.issues.create(issueCreateObject); + const newIssue = await github.rest.issues.create(issueCreateObject); if (!newIssue.number) { core.debug(newIssue) From de01786da8d1f4c24ca0556d24cba4a1f48d6d5c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 16:06:43 -0700 Subject: [PATCH 518/696] fix: throw error on new issue creation --- .github/workflows/sync_from_airtable.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a81c7cf49a7..bba854e908d 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -367,5 +367,6 @@ jobs: } catch (err) { core.error(err); core.info(JSON.stringify(issueCreateObject, null, 4)) + throw new Error(err) } From 238edb9127d346a5b1e3331ecb5d5cbb12d48f5f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 16:28:52 -0700 Subject: [PATCH 519/696] fix: log action output --- .github/workflows/sync_from_airtable.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index bba854e908d..df53603b0f7 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -337,6 +337,8 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const data = JSON.parse(DATA); + core.info(DATA); + core.info(data); const title = `${data.title}`; const body = data.body ? `${data.body}` : ''; const assignees = null; @@ -352,12 +354,6 @@ jobs: labels }; - - if (!title || title.length < 2) { - core.error(JSON.parse(DATA)) - return true; - } - try { const newIssue = await github.rest.issues.create(issueCreateObject); From cccbfeadc7131cf1003a43dc9e9cc2f39061b6a6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 16:31:42 -0700 Subject: [PATCH 520/696] fix: action new issue --- .github/workflows/sync_from_airtable.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index df53603b0f7..25424252428 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -337,8 +337,7 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const data = JSON.parse(DATA); - core.info(DATA); - core.info(data); + core.info(data.title); const title = `${data.title}`; const body = data.body ? `${data.body}` : ''; const assignees = null; @@ -361,7 +360,6 @@ jobs: core.debug(newIssue) } } catch (err) { - core.error(err); core.info(JSON.stringify(issueCreateObject, null, 4)) throw new Error(err) } From c8cd6b5713ab653d68ff73e8c94ec562e6e1d1eb Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 16:33:29 -0700 Subject: [PATCH 521/696] fix: action new issue --- .github/workflows/sync_from_airtable.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 25424252428..87ed7ebc654 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -337,7 +337,8 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const data = JSON.parse(DATA); - core.info(data.title); + core.info(data); + core.info(data["title"]); const title = `${data.title}`; const body = data.body ? `${data.body}` : ''; const assignees = null; From 852d4086e76527ba1296191de0fbba254fba5a00 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 16:59:37 -0700 Subject: [PATCH 522/696] fix: gh action from airtable --- .github/workflows/sync_from_airtable.yml | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 87ed7ebc654..6e80ef50f41 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -9,7 +9,7 @@ env: NUMBER: ${{ github.event.client_payload.number }} TITLE: ${{ github.event.client_payload.title }} OWNER: "Esri" - REPO: "calcite-components" + REPO: "calcite-design-tokens" concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.client_payload.number }} @@ -336,14 +336,19 @@ jobs: with: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; - const data = JSON.parse(DATA); - core.info(data); - core.info(data["title"]); - const title = `${data.title}`; - const body = data.body ? `${data.body}` : ''; - const assignees = null; - const milestone = null; - const labels = null; + const { + title, + body, + assignees, + milestone, + labels + } = JSON.parse(DATA); + core.info(title); + core.info(body); + core.info(assignees); + core.info(milestone); + core.info(labels); + const issueCreateObject = { owner: OWNER, repo: REPO, From afba6efdebfff27ce10924e29831a79f643185bc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 17:06:16 -0700 Subject: [PATCH 523/696] fix: action debug --- .github/workflows/sync_from_airtable.yml | 24 ++++++++---------------- .vscode/settings.json | 5 +++++ 2 files changed, 13 insertions(+), 16 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 6e80ef50f41..1cf82fcf5f3 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -186,7 +186,7 @@ jobs: }); core.info(`Label added: ${label}`) } catch (error) { - console.error(`Label not added: ${error}`) + throw new Error(error); } } })) @@ -200,9 +200,7 @@ jobs: }) core.info(`Labels added: ${addLabels}`) } catch (error) { - if (error.toString().includes('Label does not exist')) { - - } + throw new Error(error); } } @@ -218,9 +216,7 @@ jobs: core.info(`Remove Label: ${name}`) })); } catch (err) { - if (!error.includes('Label does not exist')) { - core.error(`Label not removed: ${err}`) - } + throw new Error(err); } } } @@ -266,7 +262,7 @@ jobs: core.info(`Issue ${ NUMBER }'s Milestone updated to 'null'`) } } catch (error) { - core.info(error) + throw new Error(error); } open_closed: @@ -336,19 +332,15 @@ jobs: with: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; - const { - title, - body, - assignees, - milestone, - labels - } = JSON.parse(DATA); + const data = JSON.parse(DATA); + core.info(typeof data); + core.info(data); core.info(title); core.info(body); core.info(assignees); core.info(milestone); core.info(labels); - + const issueCreateObject = { owner: OWNER, repo: REPO, diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000000..310757d7850 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "cSpell.words": [ + "typeof" + ] +} From 49a29d4cf2bf1a7db33db40e76e7f162336cc22a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 5 Apr 2023 17:09:39 -0700 Subject: [PATCH 524/696] fix: gh action --- .github/workflows/sync_from_airtable.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 1cf82fcf5f3..a7a510293f0 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -332,9 +332,8 @@ jobs: with: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; - const data = JSON.parse(DATA); - core.info(typeof data); - core.info(data); + const data = JSON.parse(`${DATA}`); + core.info(typeof DATA); core.info(title); core.info(body); core.info(assignees); From 626060f5ebf93eb8b1e021ffce2a1d2ee276f704 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 6 Apr 2023 08:50:08 -0700 Subject: [PATCH 525/696] fix: new issue create action --- .github/workflows/sync_from_airtable.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a7a510293f0..f098ad8b7b6 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -333,12 +333,12 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const data = JSON.parse(`${DATA}`); - core.info(typeof DATA); - core.info(title); - core.info(body); - core.info(assignees); - core.info(milestone); - core.info(labels); + core.info(typeof data); + core.info(data['title']); + core.info(data['body']); + core.info(data['assignees']); + core.info(data['milestone']); + core.info(data['labels']); const issueCreateObject = { owner: OWNER, From 3b54e97f92d3df3de122c44d56fa0316f4581a3c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 6 Apr 2023 08:54:22 -0700 Subject: [PATCH 526/696] fix: new issue action --- .github/workflows/sync_from_airtable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index f098ad8b7b6..18afbdff0be 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -333,8 +333,8 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const data = JSON.parse(`${DATA}`); - core.info(typeof data); - core.info(data['title']); + core.info(DATA); + core.info(data); core.info(data['body']); core.info(data['assignees']); core.info(data['milestone']); From 89a041f5c01b5791fe165cab695f31823086e0bc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 6 Apr 2023 08:59:18 -0700 Subject: [PATCH 527/696] fix: pass data to action step --- .github/workflows/sync_from_airtable.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 18afbdff0be..a4c305d8c6a 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -326,13 +326,14 @@ jobs: steps: - uses: actions/github-script@v6 env: - DATA: ${{ env.DATA }} + DATA: ${{ fromJSON(env.DATA) }} + NUMBER: ${{env.NUMBER}} OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} with: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; - const data = JSON.parse(`${DATA}`); + const data = JSON.parse(DATA); core.info(DATA); core.info(data); core.info(data['body']); From 8f97f2974e9f1316cbbc52449a7de77d610a3887 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 6 Apr 2023 09:04:09 -0700 Subject: [PATCH 528/696] fix: action create new issue from airtable --- .github/workflows/sync_from_airtable.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index a4c305d8c6a..4347f4e4066 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -334,21 +334,20 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const data = JSON.parse(DATA); - core.info(DATA); - core.info(data); - core.info(data['body']); - core.info(data['assignees']); - core.info(data['milestone']); - core.info(data['labels']); + const assignees = data.assignees || [], + const body = data.body || ''; + const labels = data.labels || []; + const milestone = Number(data.milestone) || null; + const title = data.title; const issueCreateObject = { owner: OWNER, repo: REPO, - title, - body, assignees, + body, + labels, milestone, - labels + title }; try { From c7d0c64beeff10f309198d2f5c6fba8fb1787e5c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 6 Apr 2023 09:05:30 -0700 Subject: [PATCH 529/696] fix: action create new issue from airtable --- .github/workflows/sync_from_airtable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4347f4e4066..4abaf0fd851 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -334,7 +334,7 @@ jobs: script: | const { DATA, NUMBER, OWNER, REPO } = process.env; const data = JSON.parse(DATA); - const assignees = data.assignees || [], + const assignees = data.assignees || []; const body = data.body || ''; const labels = data.labels || []; const milestone = Number(data.milestone) || null; From b2086cecfbf8674d60a25e9975670d0a3bc534ba Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 6 Apr 2023 13:43:06 -0700 Subject: [PATCH 530/696] fix: action update airtable record --- .github/workflows/sync_from_airtable.yml | 41 +++++++++++++++--------- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index 4abaf0fd851..ba571d4ea8f 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -330,32 +330,41 @@ jobs: NUMBER: ${{env.NUMBER}} OWNER: ${{env.OWNER}} REPO: ${{env.REPO}} + SECRET: ${{ secrets.AIRTABLE_KEY }} + WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} with: script: | - const { DATA, NUMBER, OWNER, REPO } = process.env; + const { DATA, NUMBER, OWNER, REPO, WEBHOOK, SECRET } = process.env; const data = JSON.parse(DATA); - const assignees = data.assignees || []; - const body = data.body || ''; - const labels = data.labels || []; - const milestone = Number(data.milestone) || null; - const title = data.title; - const issueCreateObject = { owner: OWNER, repo: REPO, - assignees, - body, - labels, - milestone, - title + assignees: data.assignees, + body: data.body, + labels: data.labels, + milestone: Number(data.milestone) || null, + title: data.title }; try { const newIssue = await github.rest.issues.create(issueCreateObject); - - if (!newIssue.number) { - core.debug(newIssue) - } + + /* Send new issue number back to Airtable */ + await fetch(WEBHOOK, { + body: { + action: 'opened', + data: JSON.stringify(newIssue), + owner: OWNER, + repo: REPO, + number: `${newIssue.number}`, + secret: SECRET, + title: newIssue.title, + }, + headers: { + "Content-Type": "application/json" + }, + method: "POST" + }); } catch (err) { core.info(JSON.stringify(issueCreateObject, null, 4)) throw new Error(err) From 5f12ebc667c9238484e061246f3f8dd337691fde Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 10 Apr 2023 16:25:16 +0200 Subject: [PATCH 531/696] latest tree updates --- tokens/$metadata.json | 1 + tokens/component/tree-item.json | 198 ++++++++++++++++++++++++++++++++ 2 files changed, 199 insertions(+) create mode 100644 tokens/component/tree-item.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 4161f4363b5..b79ff88c345 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -57,6 +57,7 @@ "component/stepper-item", "component/switch", "component/[template-comp-name]", + "component/tree-item", "component/accordion_backup", "calcite/light", "calcite/dark", diff --git a/tokens/component/tree-item.json b/tokens/component/tree-item.json new file mode 100644 index 00000000000..4d83190c8f0 --- /dev/null +++ b/tokens/component/tree-item.json @@ -0,0 +1,198 @@ +{ + "tree-item": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "selected": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "children-selected": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "selected": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file From c1b0e61f168e47401013b8d26fdaf5ecc7ccad87 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 12 Apr 2023 21:43:45 +0200 Subject: [PATCH 532/696] Updates to tree-item and re-introduce tile --- tokens/$metadata.json | 1 + tokens/$themes.json | 12 ++- tokens/component/tile.json | 152 ++++++++++++++++++++++++++++++++ tokens/component/tree-item.json | 48 ++-------- 4 files changed, 168 insertions(+), 45 deletions(-) create mode 100644 tokens/component/tile.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index b79ff88c345..d57bef73b16 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -57,6 +57,7 @@ "component/stepper-item", "component/switch", "component/[template-comp-name]", + "component/tile", "component/tree-item", "component/accordion_backup", "calcite/light", diff --git a/tokens/$themes.json b/tokens/$themes.json index 1eb95d00379..6db19037bad 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -47,7 +47,9 @@ "component/switch": "source", "component/tooltip": "source", "core": "source", - "semantic": "source" + "semantic": "source", + "component/tree-item": "source", + "component/tile": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -136,7 +138,9 @@ "component/pagination": "source", "component/segmented-control": "source", "component/switch": "source", - "component/stepper-item": "source" + "component/stepper-item": "source", + "component/tree-item": "source", + "component/tile": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -260,7 +264,9 @@ "component/notice": "enabled", "component/modal": "enabled", "component/panel-header": "enabled", - "component/popover": "enabled" + "component/popover": "enabled", + "component/tree-item": "enabled", + "component/tile": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/tile.json b/tokens/component/tile.json new file mode 100644 index 00000000000..f4df264a122 --- /dev/null +++ b/tokens/component/tile.json @@ -0,0 +1,152 @@ +{ + "tile": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tree-item.json b/tokens/component/tree-item.json index 4d83190c8f0..df5a496449b 100644 --- a/tokens/component/tree-item.json +++ b/tokens/component/tree-item.json @@ -88,42 +88,6 @@ "type": "color" } }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, "border-width": { "sm": { "value": "$core.border.border-width.1", @@ -168,29 +132,29 @@ }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.3", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.5", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.7", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "$core.spacing.9", + "value": "$core.spacing.3", "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.5", "type": "spacing" } } From 23c7c4548a6346fbc58842c947e543576b39040a Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 13 Apr 2023 23:06:29 +0200 Subject: [PATCH 533/696] Updates to tile and tree-item --- tokens/component/tile.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tokens/component/tile.json b/tokens/component/tile.json index f4df264a122..bb909d15518 100644 --- a/tokens/component/tile.json +++ b/tokens/component/tile.json @@ -9,16 +9,16 @@ "value": "$semantic.ui.color.text.3.dark", "type": "color" }, - "sm": { - "value": "$semantic.font.default.bold.-2h", + "heading": { + "value": "$semantic.font.default.medium.-1h", "type": "typography" }, - "md": { - "value": "$semantic.font.default.bold.-1h", + "description": { + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, - "lg": { - "value": "$semantic.font.default.bold.0h", + "link": { + "value": "$semantic.font.default.regular.-2h", "type": "typography" } }, From f7479860791e5fed6e0fe1dd80399f5d7a2732cf Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 14 Apr 2023 18:51:28 -0700 Subject: [PATCH 534/696] WIP: token-transformer round 10000 add transform functions. Loop over source and enabled and create a Set of objects representing global and working tokens --- tokens/$themes.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 1eb95d00379..9b1efed179d 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -786,4 +786,4 @@ "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," } } -] \ No newline at end of file +] From 9de36024cc7c3fda7885f284169dd050497c66b2 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 17 Apr 2023 14:14:35 -0700 Subject: [PATCH 535/696] WIP:transform tokens pass pausing because I want to make sure I fully grok the shape this thing could be in before I finish out this path --- scripts/transformer/buildStyleDictionary.ts | 50 ++++++++ scripts/transformer/createWorkingObject.ts | 37 ++++++ scripts/transformer/index.ts | 0 scripts/transformer/parseThemeConfig.ts | 49 +++++++ scripts/transformer/run.test.ts | 0 scripts/transformer/run.ts | 49 +++++++ scripts/transformer/sd-plugins.ts | 2 + scripts/transformer/transform.test.ts | 0 scripts/transformer/transform.ts | 121 ++++++++++++++++++ scripts/transformer/utils/parseName.ts | 25 ++++ scripts/transformer/utils/readFiles.ts | 7 + tokens/$themes.json | 2 +- .../token-transformer/src/utils/parseName.ts | 25 ++++ 13 files changed, 366 insertions(+), 1 deletion(-) create mode 100644 scripts/transformer/buildStyleDictionary.ts create mode 100644 scripts/transformer/createWorkingObject.ts create mode 100644 scripts/transformer/index.ts create mode 100644 scripts/transformer/parseThemeConfig.ts create mode 100644 scripts/transformer/run.test.ts create mode 100644 scripts/transformer/run.ts create mode 100644 scripts/transformer/sd-plugins.ts create mode 100644 scripts/transformer/transform.test.ts create mode 100644 scripts/transformer/transform.ts create mode 100644 scripts/transformer/utils/parseName.ts create mode 100644 scripts/transformer/utils/readFiles.ts create mode 100644 tools/token-transformer/src/utils/parseName.ts diff --git a/scripts/transformer/buildStyleDictionary.ts b/scripts/transformer/buildStyleDictionary.ts new file mode 100644 index 00000000000..ca30df52ef3 --- /dev/null +++ b/scripts/transformer/buildStyleDictionary.ts @@ -0,0 +1,50 @@ +import { registerTransforms } from '@tokens-studio/sd-transforms'; +import StyleDictionary from 'style-dictionary'; + +export const buildStyleDictionary = async (options: {source:string; destination: string; buildPath: string;}) => { + const {source, destination, buildPath} = options; + await registerTransforms(StyleDictionary); + + const sd = StyleDictionary.extend({ + source: [source], + platforms: { + js: { + transformGroup: 'tokens-studio', + buildPath: `${buildPath}/js/`, + files: [ + { + destination: `${destination}.js`, + format: 'javascript/es6', + }, + ], + }, + css: { + transforms: [ + 'ts/descriptionToComment', + 'ts/size/px', + 'ts/opacity', + 'ts/size/css/letterspacing', + 'ts/size/lineheight', + 'ts/type/fontWeight', + 'ts/resolveMath', + 'ts/typography/css/shorthand', + 'ts/border/css/shorthand', + 'ts/shadow/css/shorthand', + 'ts/color/css/hexrgba', + 'ts/color/modifiers', + 'name/cti/kebab', + ], + buildPath: `${buildPath}/css/`, + files: [ + { + destination: `${destination}.css`, + format: 'css/variables', + }, + ], + }, + }, + }); + + sd.cleanAllPlatforms(); + sd.buildAllPlatforms(); +} diff --git a/scripts/transformer/createWorkingObject.ts b/scripts/transformer/createWorkingObject.ts new file mode 100644 index 00000000000..f1a5367f69c --- /dev/null +++ b/scripts/transformer/createWorkingObject.ts @@ -0,0 +1,37 @@ +import { join } from 'path'; +import { readFileSync } from 'fs'; + +import { ThemeConfig } from "./parseThemeConfig"; +import { ThemeObject } from "./run"; + +export const createWorkingObject = (returnObj: ThemeObject[], themeConfig: ThemeConfig) => { + const { original, ...settings } = themeConfig; + let workingObject: ThemeObject = { global: {} }; + + workingObject['$settings'] = settings; + + Object.entries(original.selectedTokenSets).forEach((tokenSet: [setFile: string, selected: 'enabled' | 'disabled' | 'source']) => { + const [ setFile, selected ] = tokenSet; + const filepath = join(settings.dir || '', `${setFile}.json`); + const dataString = readFileSync(filepath, 'utf-8'); + const data = JSON.parse(dataString); + + switch(selected){ + case 'disabled': + break; + case 'enabled': + workingObject = { ...workingObject, ...data }; + break; + case 'source': + workingObject['global'] = { ...workingObject['global'], ...data }; + break; + default: + console.error(`Unknown token set selection. Found '${selected}'. Expected 'enabled', 'disabled', or 'source'`); + break; + } + }); + + returnObj.push(workingObject); + + return returnObj; +} diff --git a/scripts/transformer/index.ts b/scripts/transformer/index.ts new file mode 100644 index 00000000000..e69de29bb2d diff --git a/scripts/transformer/parseThemeConfig.ts b/scripts/transformer/parseThemeConfig.ts new file mode 100644 index 00000000000..972c329b4ae --- /dev/null +++ b/scripts/transformer/parseThemeConfig.ts @@ -0,0 +1,49 @@ +import { join } from 'path'; +import { parseName } from './utils/parseName'; + +export const parseThemeConfigBeta = (theme: Theme, config: Config) => { + const globalTokens = new Set(); + globalTokens.add({ name: 'global' }); + const workingTokens = new Set(); + workingTokens.add({ name: theme.name, path: config.output}); + const { enabled, source } = getTokenSet(theme.selectedTokenSets); + + source.forEach((filePath) => { + const rawDataStr = readFileSync(join(config.input, `${globalTokens[0].name}.json`), 'utf-8'); + // @ts-expect-error - TS is in conflict with itself. It wants the first param to be "this" but then the other error "An arrow function cannot have a 'this' parameter." will appear. In my opinion using "this" is the more incorrect pattern here. + const data: Record = JSON.parse(rawDataStr, handleFigmaTokenUpdate(true)); + globalTokens.add(data); + }); + + enabled.forEach((filePath) => { + const rawDataStr = readFileSync(join(config.input, `${workingTokens[0].name}.json`), 'utf-8'); + // @ts-expect-error - TS is in conflict with itself. It wants the first param to be "this" but then the other error "An arrow function cannot have a 'this' parameter." will appear. In my opinion using "this" is the more incorrect pattern here. + const data: Record = JSON.parse(rawDataStr, handleFigmaTokenUpdate(false)); + workingTokens.add(data); + }); +} + +export type FigmaThemeConfig = { + "id": string; + "name": string; + "selectedTokenSets": Record; + "$figmaStyleReferences": Record; +} + +export type ThemeConfig = { name: string; original: FigmaThemeConfig; dir: string } + +export const parseThemeConfig = (returnObj: ThemeConfig, themeConfig: FigmaThemeConfig) => { + const { name } = themeConfig; + + // Object.entries(selectedTokenSets).forEach(([key, value]) => { + // const filepath = join(returnObj.dir || '', `${key}.json`); + // if ( !returnObj[value] ) { + // returnObj[value] = []; + // } + // returnObj[value]?.push(filepath); + // }); + + returnObj['original'] = themeConfig; + returnObj['name'] = parseName(name); + return returnObj; +} diff --git a/scripts/transformer/run.test.ts b/scripts/transformer/run.test.ts new file mode 100644 index 00000000000..e69de29bb2d diff --git a/scripts/transformer/run.ts b/scripts/transformer/run.ts new file mode 100644 index 00000000000..9be1ee91836 --- /dev/null +++ b/scripts/transformer/run.ts @@ -0,0 +1,49 @@ +import { writeFileSync, mkdirSync, existsSync, rmdirSync } from 'fs'; +import { join } from 'path'; + +import { readFilToJSON } from "./utils/readFiles"; +import { parseThemeConfig, ThemeConfig } from "./parseThemeConfig"; +import { createWorkingObject } from "./createWorkingObject"; +import { buildStyleDictionary } from "./buildStyleDictionary"; + +export type ThemeObject = { global: Record, [key: string]: Record}; +const workingThemeObject: ThemeObject[] = []; + +/** + * + * @param filePath - the file relative to the current working directory which should be used to create files + * @param dir - the directory for source tokens. If not provided the file root will be assumed to be where tokens are + */ +export const run = async (filePath: string, input: string, output: string) => { + const fileData = readFilToJSON(filePath, input); + + if (Array.isArray(fileData) && typeof fileData[0].id === 'string') { + const tempDir = join(process.cwd(), 'temp'); + + if (output && !existsSync(output)){ + mkdirSync(output); + } + if (tempDir && !existsSync(tempDir)){ + mkdirSync(tempDir); + } + + const themes = [...new Set(fileData.reduce(parseThemeConfig, { name: '', original: {}, dir: output })) as Set]; + const workingObjects = themes.reduce(createWorkingObject, workingThemeObject); + const tokensPromise = workingObjects.map(async (tokenSet) => { + const { $settings, global, ...tokens } = tokenSet; + const { name } = $settings; + const tempFile = join(tempDir, `${$settings.name}.json`); + writeFileSync(tempFile, JSON.stringify({ global, ...tokens }, null, 2)); + return buildStyleDictionary(tempFile, name, output); + }); + + await Promise.all(tokensPromise); + + rmdirSync(tempDir); + } else { + // Assume we are working with a single file transform + // parse file directly with Style Dictionary + const name = filePath.match(/($^)/); + await buildStyleDictionary(filePath, name, output); + } +} diff --git a/scripts/transformer/sd-plugins.ts b/scripts/transformer/sd-plugins.ts new file mode 100644 index 00000000000..bfc6ea6b7b2 --- /dev/null +++ b/scripts/transformer/sd-plugins.ts @@ -0,0 +1,2 @@ +// Style Dictionary plugins +// convert figma token studio variables to SD tokens diff --git a/scripts/transformer/transform.test.ts b/scripts/transformer/transform.test.ts new file mode 100644 index 00000000000..e69de29bb2d diff --git a/scripts/transformer/transform.ts b/scripts/transformer/transform.ts new file mode 100644 index 00000000000..a660ca2222b --- /dev/null +++ b/scripts/transformer/transform.ts @@ -0,0 +1,121 @@ +import { join } from 'path'; +import { readFileSync, createWriteStream } from 'fs'; + +export type Theme = { + id: string, + name: string, + selectedTokenSets: TokenSet, + $figmaStyleReferences: Record +} + +export type Config = { + input: string, + output: string, +} + +export type Tokens = Record + +export function createFileName(str: string) { + return ''; +} + +export type TokenSet = Record; +export function getTokenSet(selectedTokenSets: Theme['selectedTokenSets']) { + const dict: Record<'enabled'|'source', string[]>= { enabled: [], source: [] }; + return Object.entries(selectedTokenSets).reduce((acc, [tokenFileName, status]) => { + switch(status) { + case 'enabled': + acc.enabled.push(tokenFileName) + break; + case 'source': + acc.source.push(tokenFileName) + break; + default: + break; + } + return acc; + }, dict); +} + +export const regexMatchVariable = /^\$/; +export function findVariable(obj, key, value) { + if (typeof obj[key] === 'string') { + if ( regexMatchVariable.test(obj[key]) ) { + + } + } +} + +export function jsonParseMatcher (matchingGroup: RegExp, updateMatch: (_: any, key: string, val: string) => any) { + return (_: any, key: string, val: string) => { + debugger; + if (typeof val === 'string') { + const match = Array.from(val.matchAll(matchingGroup)); + if (match.length > 0) { + // handle Figma Token Variable matching + _ = updateMatch(_, key, val); + } + } + + return _; + }; +} + +// handle Figma Token Variable matching - replace with style-dictionary var structure +export function handleFigmaTokenUpdate(isSource = false) { return (_: any, key: string, val: string) => { + const matchingGroup = new RegExp(/\$[.\w-]+/g); + const newValue = val; + + if (typeof newValue === 'string') { + const matches = [...newValue.matchAll(matchingGroup)]; + if (matches.length > 0) { + matches.forEach((match) => { + const figmaVariable = match[0]; + if(isSource) { + if() { + + } + } else { + newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); + } + }); + } + } + + return newValue; +}} + +export type TokenObjectValue = string | number | Record | (string | number | Record)[]; + +// export const handleTheme = (theme: Theme, config: Config) => { +// const globalTokens = new Set(); +// globalTokens.add({ name: 'global' }); +// const workingTokens = new Set(); +// workingTokens.add({ name: theme.name, path: config.output}); +// const { enabled, source } = getTokenSet(theme.selectedTokenSets); + +// source.forEach((filePath) => { +// const rawDataStr = readFileSync(join(config.input, `${globalTokens[0].name}.json`), 'utf-8'); +// // @ts-expect-error - TS is in conflict with itself. It wants the first param to be "this" but then the other error "An arrow function cannot have a 'this' parameter." will appear. In my opinion using "this" is the more incorrect pattern here. +// const data: Record = JSON.parse(rawDataStr, handleFigmaTokenUpdate(true)); +// globalTokens.add(data); +// }); + +// enabled.forEach((filePath) => { +// const rawDataStr = readFileSync(join(config.input, `${workingTokens[0].name}.json`), 'utf-8'); +// // @ts-expect-error - TS is in conflict with itself. It wants the first param to be "this" but then the other error "An arrow function cannot have a 'this' parameter." will appear. In my opinion using "this" is the more incorrect pattern here. +// const data: Record = JSON.parse(rawDataStr, handleFigmaTokenUpdate(false)); +// workingTokens.add(data); +// }); +// } + +/** + * + * @param themesFilePath - the file relative to the current working directory which should be used to create files + * @param tokensDir - the directory for source tokens. If not provided the file root will be assumed to be where tokens are + */ + + + + + diff --git a/scripts/transformer/utils/parseName.ts b/scripts/transformer/utils/parseName.ts new file mode 100644 index 00000000000..371ca2fd251 --- /dev/null +++ b/scripts/transformer/utils/parseName.ts @@ -0,0 +1,25 @@ +export function parseName(name: string, prefix?: string) { + const regexWord = /^\w+$/; + + function createNewWord (acc: string, word: string, idx: number) { + let newWord = ''; + if(idx === 0) { + if (prefix) { + const firstLetter = word.charAt(0).toUpperCase(); + const ord = word.slice(1).toLowerCase(); + newWord = prefix + firstLetter + ord; + } else { + newWord = word.toLocaleLowerCase(); + } + } else { + const firstLetter = word.charAt(0).toUpperCase(); + const ord = word.slice(1).toLowerCase(); + newWord = firstLetter + ord; + } + + acc += newWord; + return acc; + } + + return name.split(' ').filter((word) => regexWord.test(word)).reduce(createNewWord, ''); +} diff --git a/scripts/transformer/utils/readFiles.ts b/scripts/transformer/utils/readFiles.ts new file mode 100644 index 00000000000..7b0bb0107b0 --- /dev/null +++ b/scripts/transformer/utils/readFiles.ts @@ -0,0 +1,7 @@ +import { readFileSync } from 'fs'; +import { join } from 'path'; + +export const readFilToJSON = (filePath: string, dir?: string) => { + const file = readFileSync(join(dir || '', filePath), 'utf-8'); + return JSON.parse(file); +} diff --git a/tokens/$themes.json b/tokens/$themes.json index 9b1efed179d..14c07770328 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -217,7 +217,7 @@ "component/label": "enabled", "component/tooltip": "enabled", "component/input-time": "enabled", - "component/[template-comp-name]": "enabled", + "component/[template-comp-name]": "disabled", "component/switch": "enabled", "component/input-message": "enabled", "component/accordion-item": "enabled", diff --git a/tools/token-transformer/src/utils/parseName.ts b/tools/token-transformer/src/utils/parseName.ts new file mode 100644 index 00000000000..371ca2fd251 --- /dev/null +++ b/tools/token-transformer/src/utils/parseName.ts @@ -0,0 +1,25 @@ +export function parseName(name: string, prefix?: string) { + const regexWord = /^\w+$/; + + function createNewWord (acc: string, word: string, idx: number) { + let newWord = ''; + if(idx === 0) { + if (prefix) { + const firstLetter = word.charAt(0).toUpperCase(); + const ord = word.slice(1).toLowerCase(); + newWord = prefix + firstLetter + ord; + } else { + newWord = word.toLocaleLowerCase(); + } + } else { + const firstLetter = word.charAt(0).toUpperCase(); + const ord = word.slice(1).toLowerCase(); + newWord = firstLetter + ord; + } + + acc += newWord; + return acc; + } + + return name.split(' ').filter((word) => regexWord.test(word)).reduce(createNewWord, ''); +} From 924e33abac30f218331a1a49acbefa03670f2646 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 18 Apr 2023 09:24:08 -0700 Subject: [PATCH 536/696] WIP: sd transform --- .github/actions/updateIssue/package-lock.json | 1032 +++++++++++++++++ .github/actions/updateIssue/package.json | 5 + package-lock.json | 162 ++- package.json | 2 + tools/token-transformer/index.ts | 3 + tools/token-transformer/sd-run.test.ts | 3 + tools/token-transformer/sd-run.ts | 54 + tools/token-transformer/sd-run.ts.bak | 142 +++ 8 files changed, 1385 insertions(+), 18 deletions(-) create mode 100644 .github/actions/updateIssue/package-lock.json create mode 100644 .github/actions/updateIssue/package.json create mode 100644 tools/token-transformer/index.ts create mode 100644 tools/token-transformer/sd-run.test.ts create mode 100644 tools/token-transformer/sd-run.ts create mode 100644 tools/token-transformer/sd-run.ts.bak diff --git a/.github/actions/updateIssue/package-lock.json b/.github/actions/updateIssue/package-lock.json new file mode 100644 index 00000000000..2d189e7dc55 --- /dev/null +++ b/.github/actions/updateIssue/package-lock.json @@ -0,0 +1,1032 @@ +{ + "name": "updateIssue", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "@tokens-studio/sd-transforms": "^0.8.1" + } + }, + "node_modules/@tokens-studio/sd-transforms": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", + "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", + "dependencies": { + "@tokens-studio/types": "^0.2.1", + "color2k": "^2.0.1", + "colorjs.io": "^0.4.3", + "expr-eval": "^2.0.2", + "postcss-calc-ast-parser": "^0.1.4", + "style-dictionary": "^3.7.2" + }, + "engines": { + "node": ">=15.14.0" + } + }, + "node_modules/@tokens-studio/types": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", + "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==" + }, + "node_modules/@types/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" + }, + "node_modules/balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "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==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camel-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/capital-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "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/node_modules/ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "dependencies": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/chalk/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==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/chalk/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==" + }, + "node_modules/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/change-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/color2k": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", + "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==" + }, + "node_modules/colorjs.io": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", + "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==" + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "node_modules/constant-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/expr-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", + "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==" + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "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==" + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/header-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "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==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lower-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/no-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/param-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-calc-ast-parser": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", + "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", + "dependencies": { + "postcss-value-parser": "^3.3.1" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/sentence-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/snake-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/style-dictionary": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", + "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", + "dependencies": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.0", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.1" + }, + "bin": { + "style-dictionary": "bin/style-dictionary" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/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==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/upper-case/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + }, + "dependencies": { + "@tokens-studio/sd-transforms": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", + "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", + "requires": { + "@tokens-studio/types": "^0.2.1", + "color2k": "^2.0.1", + "colorjs.io": "^0.4.3", + "expr-eval": "^2.0.2", + "postcss-calc-ast-parser": "^0.1.4", + "style-dictionary": "^3.7.2" + } + }, + "@tokens-studio/types": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", + "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==" + }, + "@types/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "requires": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "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==" + } + } + }, + "change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "requires": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "color2k": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", + "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==" + }, + "colorjs.io": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", + "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==" + }, + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "expr-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", + "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==" + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "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==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + }, + "jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "postcss-calc-ast-parser": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", + "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", + "requires": { + "postcss-value-parser": "^3.3.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "style-dictionary": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", + "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", + "requires": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.0", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.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==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + }, + "upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + } +} diff --git a/.github/actions/updateIssue/package.json b/.github/actions/updateIssue/package.json new file mode 100644 index 00000000000..a33d9d95229 --- /dev/null +++ b/.github/actions/updateIssue/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "@tokens-studio/sd-transforms": "^0.8.1" + } +} diff --git a/package-lock.json b/package-lock.json index c19fc66f272..932658ddcd3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,10 +9,41 @@ "version": "0.1.0", "license": "SEE LICENSE IN README.md", "devDependencies": { + "@tokens-studio/sd-transforms": "^0.8.1", + "@types/node": "^18.15.11", "style-dictionary": "^3.7.1", "token-transformer": "^0.0.27" } }, + "node_modules/@tokens-studio/sd-transforms": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", + "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", + "dev": true, + "dependencies": { + "@tokens-studio/types": "^0.2.1", + "color2k": "^2.0.1", + "colorjs.io": "^0.4.3", + "expr-eval": "^2.0.2", + "postcss-calc-ast-parser": "^0.1.4", + "style-dictionary": "^3.7.2" + }, + "engines": { + "node": ">=15.14.0" + } + }, + "node_modules/@tokens-studio/types": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", + "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==", + "dev": true + }, + "node_modules/@types/node": { + "version": "18.15.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", + "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", + "dev": true + }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -142,6 +173,18 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, + "node_modules/color2k": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", + "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==", + "dev": true + }, + "node_modules/colorjs.io": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", + "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==", + "dev": true + }, "node_modules/commander": { "version": "8.3.0", "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", @@ -193,6 +236,12 @@ "node": ">=6" } }, + "node_modules/expr-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", + "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", + "dev": true + }, "node_modules/fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -293,9 +342,9 @@ } }, "node_modules/json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "bin": { "json5": "lib/cli.js" @@ -407,6 +456,24 @@ "node": ">=0.10.0" } }, + "node_modules/postcss-calc-ast-parser": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", + "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^3.3.1" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -464,9 +531,9 @@ } }, "node_modules/style-dictionary": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.1.tgz", - "integrity": "sha512-yYU9Z/J8Znj9T9oJVjo8VOYamrOxv0UbBKPjhSt+PharxrhyQCM4RWb71fgEfv2pK9KO8G83/0ChDNQZ1mn0wQ==", + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", + "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", "dev": true, "dependencies": { "chalk": "^4.0.0", @@ -520,9 +587,9 @@ } }, "node_modules/tslib": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", "dev": true }, "node_modules/universalify": { @@ -613,6 +680,32 @@ } }, "dependencies": { + "@tokens-studio/sd-transforms": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", + "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", + "dev": true, + "requires": { + "@tokens-studio/types": "^0.2.1", + "color2k": "^2.0.1", + "colorjs.io": "^0.4.3", + "expr-eval": "^2.0.2", + "postcss-calc-ast-parser": "^0.1.4", + "style-dictionary": "^3.7.2" + } + }, + "@tokens-studio/types": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", + "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==", + "dev": true + }, + "@types/node": { + "version": "18.15.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", + "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", + "dev": true + }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -721,6 +814,18 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, + "color2k": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", + "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==", + "dev": true + }, + "colorjs.io": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", + "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==", + "dev": true + }, "commander": { "version": "8.3.0", "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", @@ -766,6 +871,12 @@ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true }, + "expr-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", + "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", + "dev": true + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -848,9 +959,9 @@ "dev": true }, "json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true }, "jsonc-parser": { @@ -948,6 +1059,21 @@ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true }, + "postcss-calc-ast-parser": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", + "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", + "dev": true, + "requires": { + "postcss-value-parser": "^3.3.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -996,9 +1122,9 @@ } }, "style-dictionary": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.1.tgz", - "integrity": "sha512-yYU9Z/J8Znj9T9oJVjo8VOYamrOxv0UbBKPjhSt+PharxrhyQCM4RWb71fgEfv2pK9KO8G83/0ChDNQZ1mn0wQ==", + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", + "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", "dev": true, "requires": { "chalk": "^4.0.0", @@ -1037,9 +1163,9 @@ } }, "tslib": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", "dev": true }, "universalify": { diff --git a/package.json b/package.json index d7546775857..e92601a7f07 100644 --- a/package.json +++ b/package.json @@ -51,6 +51,8 @@ "release": "echo 'release is still TBD. Please message Ali Stump or Erik Harper-Dicianno for more information." }, "devDependencies": { + "@tokens-studio/sd-transforms": "^0.8.1", + "@types/node": "^18.15.11", "style-dictionary": "^3.7.1", "token-transformer": "^0.0.27" } diff --git a/tools/token-transformer/index.ts b/tools/token-transformer/index.ts new file mode 100644 index 00000000000..32e48de4851 --- /dev/null +++ b/tools/token-transformer/index.ts @@ -0,0 +1,3 @@ +import { run } from "./sd-run"; + +run(); diff --git a/tools/token-transformer/sd-run.test.ts b/tools/token-transformer/sd-run.test.ts new file mode 100644 index 00000000000..4b83b900b77 --- /dev/null +++ b/tools/token-transformer/sd-run.test.ts @@ -0,0 +1,3 @@ +describe('integration tests', () => { + +}) diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts new file mode 100644 index 00000000000..550f74a0bbf --- /dev/null +++ b/tools/token-transformer/sd-run.ts @@ -0,0 +1,54 @@ +import { registerTransforms } from '@tokens-studio/sd-transforms'; +import * as StyleDictionary from 'style-dictionary'; + +await registerTransforms(StyleDictionary, { expand: { + composition: true, + typography: true, + border: true, + shadow: true, +}}); + +const sd = StyleDictionary.extend({ + source: ['**/*.tokens.json'], + platforms: { + js: { + transformGroup: 'tokens-studio', + buildPath: 'build/js/', + files: [ + { + destination: 'variables.js', + format: 'javascript/es6', + }, + ], + }, + css: { + transforms: [ + 'ts/descriptionToComment', + 'ts/size/px', + 'ts/opacity', + 'ts/size/css/letterspacing', + 'ts/size/lineheight', + 'ts/type/fontWeight', + 'ts/resolveMath', + 'ts/typography/css/shorthand', + 'ts/border/css/shorthand', + 'ts/shadow/css/shorthand', + 'ts/color/css/hexrgba', + 'ts/color/modifiers', + 'name/cti/kebab', + ], + buildPath: 'build/css/', + files: [ + { + destination: 'variables.css', + format: 'css/variables', + }, + ], + }, + }, +}); + +export const run = () => { + sd.cleanAllPlatforms(); + sd.buildAllPlatforms(); +} diff --git a/tools/token-transformer/sd-run.ts.bak b/tools/token-transformer/sd-run.ts.bak new file mode 100644 index 00000000000..d72c48181ae --- /dev/null +++ b/tools/token-transformer/sd-run.ts.bak @@ -0,0 +1,142 @@ +import * as StyleDictionary from 'style-dictionary'; +import path from 'path'; +export { + expandComposites, + mapDescriptionToComment, + checkAndEvaluateMath, + transformDimension, + transformFontWeights, + transformColorModifiers, + transformLineHeight, + transformShadowForCSS, + transformBorderForCSS, + transformTypographyForCSS, + transformHEXRGBaForCSS, + transformLetterSpacingForCSS, + transformTypographyForCompose +} from '@tokens-studio/sd-transforms' + +const tokensDir = path.resolve(process.cwd(), 'tokens'); +const themes = [{ + name: 'calcite-headless', + enabled: ['core', 'semantic.json', 'component/avatar'], + outputDir: 'build', + options: { + outputReferences: true, + } +}]; + +StyleDictionary.registerParser({ + pattern: /\.json$/, + parse: ({ filePath, contents }) => { + debugger; + const regexTest = /\$\w+[\.\w-]*/dgm + return JSON.parse(contents, (key, value) => { + const newValue = value.replaceAll(regexTest, (match) => { + return `{${match.slice(1)}}`; + }) + return newValue; + }); + } +}); + +StyleDictionary.registerTransform({ + type: `value`, + transitive: true, + name: `debugger`, + matcher: (token) => true, + transformer: (token) => { + debugger; + // token.value will be resolved and transformed at this point + return token; + } +}); + +StyleDictionary.registerFormat({ + name: `calcite/js`, + formatter: function({dictionary, options}) { + const referencedTokens: string[] = []; + // @ts-expect-error SD still needs to workout some weirdness with their types + const enabledTokens = dictionary.allTokens.sort(StyleDictionary.formatHelpers.sortByReference(dictionary)).map(token => { + debugger; + let value = JSON.stringify(token.value); + // the `dictionary` object now has `usesReference()` and + // `getReferences()` methods. `usesReference()` will return true if + // the value has a reference in it. `getReferences()` will return + // an array of references to the whole tokens so that you can access their + // names or any other attributes. + if (dictionary.usesReference(token.original.value)) { + // Note: make sure to use `token.original.value` because + // `token.value` is already resolved at this point. + const refs = dictionary.getReferences(token.original.value); + refs.forEach(ref => { + const originalValue = ref.name; + referencedTokens.push(originalValue.slice(1, -1)); + value = value.replace(ref.value, () => `${originalValue}`); + }); + } + // Only write to file if it is an enabled file (enabled == source in SD) + return token.isSource ? `export const ${token.name} = ${value};`: undefined; + }).filter((t) => t); + + return + } +}); + +const defaultTransforms = [ + 'debugger', + 'ts/descriptionToComment', + 'ts/size/px', + 'ts/opacity', + 'ts/size/lineheight', + 'ts/type/fontWeight', + 'ts/resolveMath', + 'ts/color/modifiers', +]; +const jsTransforms = [ + 'name/cti/kebab' +]; +const cssTransforms = [ + 'ts/size/css/letterspacing', + 'ts/typography/css/shorthand', + 'ts/border/css/shorthand', + 'ts/shadow/css/shorthand', + 'ts/color/css/hexrgba', + 'name/cti/kebab' +]; + +themes.forEach(theme => { + StyleDictionary.extend({ + source: theme.enabled, + platforms: { + js: { + options: theme.options, + transforms: [ + ...defaultTransforms, + ...jsTransforms, + ], + buildPath: `${theme.outputDir}/js/`, + files: [ + { + destination: `${theme.name}.js`, + format: 'calcite/js', + }, + ], + }, + css: { + options: theme.options, + transforms: [ + ...defaultTransforms, + ...cssTransforms, + ], + buildPath: `${theme.outputDir}/css/`, + files: [ + { + destination: `${theme.name}.css`, + format: 'css/variables', + }, + ], + }, + }, + }).buildAllPlatforms(); +}); From f3761157e3b91ad0d032e7024b88209621c9e8b8 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 18 Apr 2023 15:16:38 -0700 Subject: [PATCH 537/696] WIP: add SD --- jest.config.js | 5 + package-lock.json | 6799 ++++++++++++++++++++++-- package.json | 13 +- scripts/transformer/index.ts | 75 + scripts/transformer/run.ts | 44 +- tools/token-transformer/sd-run.test.ts | 13 +- tools/token-transformer/sd-run.ts | 69 +- tools/token-transformer/sd-run.ts.bak | 10 +- tsconfig.json | 19 + 9 files changed, 6530 insertions(+), 517 deletions(-) create mode 100644 jest.config.js create mode 100644 tsconfig.json diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 00000000000..b413e106db6 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,5 @@ +/** @type {import('ts-jest').JestConfigWithTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', +}; \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 932658ddcd3..e7c318a7b97 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,676 +10,4810 @@ "license": "SEE LICENSE IN README.md", "devDependencies": { "@tokens-studio/sd-transforms": "^0.8.1", + "@types/jest": "^29.5.0", "@types/node": "^18.15.11", + "jest": "^29.5.0", "style-dictionary": "^3.7.1", - "token-transformer": "^0.0.27" + "token-transformer": "^0.0.27", + "ts-jest": "^29.0.5", + "ts-node": "^10.9.1", + "tslib": "^2.5.0", + "typescript": "^5.0.2" } }, - "node_modules/@tokens-studio/sd-transforms": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", - "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", "dev": true, "dependencies": { - "@tokens-studio/types": "^0.2.1", - "color2k": "^2.0.1", - "colorjs.io": "^0.4.3", - "expr-eval": "^2.0.2", - "postcss-calc-ast-parser": "^0.1.4", - "style-dictionary": "^3.7.2" + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { - "node": ">=15.14.0" + "node": ">=6.0.0" } }, - "node_modules/@tokens-studio/types": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", - "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==", - "dev": true - }, - "node_modules/@types/node": { - "version": "18.15.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", - "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", - "dev": true + "node_modules/@babel/code-frame": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", + "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } }, - "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==", + "node_modules/@babel/compat-data": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.4.tgz", + "integrity": "sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==", "dev": true, "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "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==", + "node_modules/@babel/core": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", + "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.4", + "@babel/helper-compilation-targets": "^7.21.4", + "@babel/helper-module-transforms": "^7.21.2", + "@babel/helpers": "^7.21.0", + "@babel/parser": "^7.21.4", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.4", + "@babel/types": "^7.21.4", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" }, "engines": { - "node": ">=8" + "node": ">=6.9.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/babel" } }, - "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==", + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, - "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==", + "node_modules/@babel/generator": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", + "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "@babel/types": "^7.21.4", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "node_modules/@babel/helper-compilation-targets": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz", + "integrity": "sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==", "dev": true, "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" + "@babel/compat-data": "^7.21.4", + "@babel/helper-validator-option": "^7.21.0", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@babel/helper-function-name": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", + "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@babel/template": "^7.20.7", + "@babel/types": "^7.21.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=6.9.0" } }, - "node_modules/change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "dev": true, "dependencies": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "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==", + "node_modules/@babel/helper-module-imports": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", + "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", "dev": true, "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "@babel/types": "^7.21.4" }, "engines": { - "node": ">=12" + "node": ">=6.9.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==", + "node_modules/@babel/helper-module-transforms": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", + "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.2", + "@babel/types": "^7.21.2" }, "engines": { - "node": ">=7.0.0" + "node": ">=6.9.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/color2k": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", - "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==", - "dev": true - }, - "node_modules/colorjs.io": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", - "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==", - "dev": true - }, - "node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", "dev": true, "engines": { - "node": ">= 12" + "node": ">=6.9.0" } }, - "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 - }, - "node_modules/constant-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", - "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "node_modules/@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "dev": true, "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" + "@babel/types": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dev": true, "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", "dev": true, "engines": { - "node": ">=6" + "node": ">=6.9.0" } }, - "node_modules/expr-eval": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", - "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", - "dev": true - }, - "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, "engines": { - "node": ">=12" + "node": ">=6.9.0" } }, - "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 - }, - "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==", + "node_modules/@babel/helper-validator-option": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", + "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", "dev": true, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=6.9.0" } }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/@babel/helpers": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz", + "integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==", "dev": true, "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" + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.0", + "@babel/types": "^7.21.0" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=6.9.0" } }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } }, - "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==", + "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==", "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "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==", "dev": true, "dependencies": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" } }, - "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==", + "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==", "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "color-name": "1.1.3" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "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==", "dev": true }, - "node_modules/is-fullwidth-code-point": { + "node_modules/@babel/highlight/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/@babel/highlight/node_modules/has-flag": { "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==", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "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==", "dev": true, - "bin": { - "json5": "lib/cli.js" + "dependencies": { + "has-flag": "^3.0.0" }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "node_modules/@babel/parser": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.4.tgz", + "integrity": "sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==", "dev": true, - "dependencies": { - "universalify": "^2.0.0" + "bin": { + "parser": "bin/babel-parser.js" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "engines": { + "node": ">=6.0.0" } }, - "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/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "dependencies": { - "tslib": "^2.0.3" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "@babel/helper-plugin-utils": "^7.8.0" }, - "engines": { - "node": "*" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "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==", + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "dependencies": { - "wrappy": "1" + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", + "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==", "dev": true, "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "@babel/helper-plugin-utils": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/path-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", - "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "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==", + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/postcss-calc-ast-parser": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", - "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "dependencies": { - "postcss-value-parser": "^3.3.1" + "@babel/helper-plugin-utils": "^7.10.4" }, - "engines": { - "node": ">=6.5" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "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==", + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/sentence-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", - "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-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==", + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "@babel/helper-plugin-utils": "^7.14.5" }, "engines": { - "node": ">=8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "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==", + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", + "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { - "node": ">=8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/style-dictionary": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", - "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", + "node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "change-case": "^4.1.2", - "commander": "^8.3.0", - "fs-extra": "^10.0.0", - "glob": "^7.2.0", - "json5": "^2.2.0", - "jsonc-parser": "^3.0.0", - "lodash": "^4.17.15", - "tinycolor2": "^1.4.1" - }, - "bin": { - "style-dictionary": "bin/style-dictionary" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" }, "engines": { - "node": ">=12.0.0" + "node": ">=6.9.0" } }, - "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==", + "node_modules/@babel/traverse": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.4.tgz", + "integrity": "sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.4", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.21.4", + "@babel/types": "^7.21.4", + "debug": "^4.1.0", + "globals": "^11.1.0" }, "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "node_modules/tinycolor2": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", - "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", + "node_modules/@babel/types": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.4.tgz", + "integrity": "sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==", "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, "engines": { - "node": "*" + "node": ">=6.9.0" } }, - "node_modules/token-transformer": { - "version": "0.0.27", - "resolved": "https://registry.npmjs.org/token-transformer/-/token-transformer-0.0.27.tgz", - "integrity": "sha512-IBClwoMFrOGrlTD9ql/wArgRCe1IpKbPVfYoLPkegS9kK5yAOz7O4U8VJeZbq6FjSy73C+zLmtz7H8V5k2LqjQ==", + "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 + }, + "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": { - "yargs": "^17.4.1" + "@jridgewell/trace-mapping": "0.3.9" }, - "bin": { - "token-transformer": "index.js" + "engines": { + "node": ">=12" } }, - "node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", - "dev": true + "node_modules/@cspotcode/source-map-support/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/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, "engines": { - "node": ">= 10.0.0" + "node": ">=8" } }, - "node_modules/upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", - "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "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, - "dependencies": { - "tslib": "^2.0.3" + "engines": { + "node": ">=8" } }, - "node_modules/upper-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", - "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "node_modules/@jest/console": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", "dev": true, "dependencies": { - "tslib": "^2.0.3" + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "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==", + "node_modules/@jest/core": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "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 + "node_modules/@jest/environment": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "node_modules/@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", "dev": true, + "dependencies": { + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" + }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/yargs": { - "version": "17.6.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", - "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", + "node_modules/@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", "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" + "jest-get-type": "^29.4.3" }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "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==", + "node_modules/@jest/fake-timers": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.25.16" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "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.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz", + "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^2.0.0" + } + }, + "node_modules/@tokens-studio/sd-transforms": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", + "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", + "dev": true, + "dependencies": { + "@tokens-studio/types": "^0.2.1", + "color2k": "^2.0.1", + "colorjs.io": "^0.4.3", + "expr-eval": "^2.0.2", + "postcss-calc-ast-parser": "^0.1.4", + "style-dictionary": "^3.7.2" + }, + "engines": { + "node": ">=15.14.0" + } + }, + "node_modules/@tokens-studio/types": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", + "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==", + "dev": true + }, + "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.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", + "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", + "dev": true + }, + "node_modules/@types/babel__core": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", + "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", + "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==", + "dev": true, + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/node": { + "version": "18.15.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", + "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", + "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "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==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "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/babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.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 + }, + "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, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "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/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001480", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001480.tgz", + "integrity": "sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "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/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/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==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "dev": true + }, + "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/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "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/color2k": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", + "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==", + "dev": true + }, + "node_modules/colorjs.io": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", + "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==", + "dev": true + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "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 + }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "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 + }, + "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/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/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "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/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.367", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.367.tgz", + "integrity": "sha512-mNuDxb+HpLhPGUKrg0hSxbTjHWw8EziwkwlJNkFUj3W60ypigLDRVz04vU+VRsJPi8Gub+FDhYUpuTm9xiEwRQ==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "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/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/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": "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/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/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/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/expr-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", + "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "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": "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/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "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 + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "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-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "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/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "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/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "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/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "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 + }, + "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/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "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==", + "dev": true, + "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 + }, + "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-core-module": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "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, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "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-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/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-cli": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/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/jest-snapshot/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/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/jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "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/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "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/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + }, + "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/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "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/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/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.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "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/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": "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/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/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/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", + "dev": true + }, + "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/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, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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-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/p-locate/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-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/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "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/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "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, + "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, + "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/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "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/pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "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/postcss-calc-ast-parser": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", + "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^3.3.1" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz", + "integrity": "sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "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/resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "dependencies": { + "is-core-module": "^2.11.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.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "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/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/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "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/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.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/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "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/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/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-dictionary": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", + "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.0", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.1" + }, + "bin": { + "style-dictionary": "bin/style-dictionary" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/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/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/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, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tinycolor2": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", + "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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/token-transformer": { + "version": "0.0.27", + "resolved": "https://registry.npmjs.org/token-transformer/-/token-transformer-0.0.27.tgz", + "integrity": "sha512-IBClwoMFrOGrlTD9ql/wArgRCe1IpKbPVfYoLPkegS9kK5yAOz7O4U8VJeZbq6FjSy73C+zLmtz7H8V5k2LqjQ==", + "dev": true, + "dependencies": { + "yargs": "^17.4.1" + }, + "bin": { + "token-transformer": "index.js" + } + }, + "node_modules/ts-jest": { + "version": "29.1.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", + "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/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/ts-jest/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ts-jest/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/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/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", + "dev": true + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", + "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "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/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "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/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/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 + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "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": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "17.6.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", + "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", + "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": "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": { + "@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@babel/code-frame": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", + "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", + "dev": true, + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/compat-data": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.4.tgz", + "integrity": "sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==", + "dev": true + }, + "@babel/core": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", + "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.4", + "@babel/helper-compilation-targets": "^7.21.4", + "@babel/helper-module-transforms": "^7.21.2", + "@babel/helpers": "^7.21.0", + "@babel/parser": "^7.21.4", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.4", + "@babel/types": "^7.21.4", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", + "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", + "dev": true, + "requires": { + "@babel/types": "^7.21.4", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz", + "integrity": "sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.21.4", + "@babel/helper-validator-option": "^7.21.0", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + } + }, + "@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true + }, + "@babel/helper-function-name": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", + "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", + "dev": true, + "requires": { + "@babel/template": "^7.20.7", + "@babel/types": "^7.21.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-imports": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", + "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", + "dev": true, + "requires": { + "@babel/types": "^7.21.4" + } + }, + "@babel/helper-module-transforms": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", + "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.2", + "@babel/types": "^7.21.2" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true + }, + "@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "dev": true, + "requires": { + "@babel/types": "^7.20.2" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", + "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", + "dev": true + }, + "@babel/helpers": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz", + "integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==", + "dev": true, + "requires": { + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.0", + "@babel/types": "^7.21.0" + } + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.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" + } + }, + "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" + } + }, + "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 + }, + "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 + }, + "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 + }, + "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" + } + } + } + }, + "@babel/parser": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.4.tgz", + "integrity": "sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==", + "dev": true + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", + "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", + "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.20.2" + } + }, + "@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + } + }, + "@babel/traverse": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.4.tgz", + "integrity": "sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.21.4", + "@babel/generator": "^7.21.4", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.21.4", + "@babel/types": "^7.21.4", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.4.tgz", + "integrity": "sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + } + }, + "@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 + }, + "@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" + }, + "dependencies": { + "@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" + } + } + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + } + }, + "@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 + }, + "@jest/console": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", + "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0" + } + }, + "@jest/core": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", + "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "dev": true, + "requires": { + "@jest/console": "^29.5.0", + "@jest/reporters": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-resolve-dependencies": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "jest-watcher": "^29.5.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "@jest/environment": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", + "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "dev": true, + "requires": { + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0" + } + }, + "@jest/expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "dev": true, + "requires": { + "expect": "^29.5.0", + "jest-snapshot": "^29.5.0" + } + }, + "@jest/expect-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", + "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "dev": true, + "requires": { + "jest-get-type": "^29.4.3" + } + }, + "@jest/fake-timers": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", + "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + } + }, + "@jest/globals": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", + "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "dev": true, + "requires": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/types": "^29.5.0", + "jest-mock": "^29.5.0" + } + }, + "@jest/reporters": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", + "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + } + }, + "@jest/schemas": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", + "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "dev": true, + "requires": { + "@sinclair/typebox": "^0.25.16" + } + }, + "@jest/source-map": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", + "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.15", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + } + }, + "@jest/test-result": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", + "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "dev": true, + "requires": { + "@jest/console": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", + "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "dev": true, + "requires": { + "@jest/test-result": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "slash": "^3.0.0" + } + }, + "@jest/transform": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", + "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.5.0", + "@jridgewell/trace-mapping": "^0.3.15", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + } + }, + "@jest/types": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", + "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "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.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + }, + "dependencies": { + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + } + } + }, + "@sinclair/typebox": { + "version": "0.25.24", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", + "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "dev": true + }, + "@sinonjs/commons": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", + "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz", + "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==", + "dev": true, + "requires": { + "@sinonjs/commons": "^2.0.0" + } + }, "@tokens-studio/sd-transforms": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", @@ -700,12 +4834,168 @@ "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==", "dev": true }, + "@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.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", + "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", + "dev": true + }, + "@types/babel__core": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", + "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", + "dev": true, + "requires": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", + "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==", + "dev": true, + "requires": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, "@types/node": { "version": "18.15.11", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", "dev": true }, + "@types/prettier": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", + "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", + "dev": true + }, + "@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true + }, + "acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -721,6 +5011,101 @@ "color-convert": "^2.0.1" } }, + "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" + } + }, + "babel-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", + "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "dev": true, + "requires": { + "@jest/transform": "^29.5.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -737,6 +5122,57 @@ "concat-map": "0.0.1" } }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + } + }, + "bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, "camel-case": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", @@ -747,6 +5183,18 @@ "tslib": "^2.0.3" } }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001480", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001480.tgz", + "integrity": "sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ==", + "dev": true + }, "capital-case": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", @@ -788,6 +5236,24 @@ "tslib": "^2.0.3" } }, + "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==", + "dev": true + }, + "ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true + }, + "cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "dev": true + }, "cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -799,6 +5265,18 @@ "wrap-ansi": "^7.0.0" } }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, "color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -849,6 +5327,68 @@ "upper-case": "^2.0.2" } }, + "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 + }, + "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" + } + }, + "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" + } + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "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 + }, + "diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "dev": true + }, "dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", @@ -859,24 +5399,127 @@ "tslib": "^2.0.3" } }, + "electron-to-chromium": { + "version": "1.4.367", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.367.tgz", + "integrity": "sha512-mNuDxb+HpLhPGUKrg0hSxbTjHWw8EziwkwlJNkFUj3W60ypigLDRVz04vU+VRsJPi8Gub+FDhYUpuTm9xiEwRQ==", + "dev": true + }, + "emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "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 }, + "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" + } + }, "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": "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 + }, + "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 + }, + "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" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true + }, + "expect": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", + "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "dev": true, + "requires": { + "@jest/expect-utils": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0" + } + }, "expr-eval": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", "dev": true }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "requires": { + "bser": "2.1.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -894,12 +5537,43 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "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-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true + }, + "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 + }, "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -914,48 +5588,664 @@ "path-is-absolute": "^1.0.0" } }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, "graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, "has-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 }, - "header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, + "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 + }, + "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 + }, + "import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "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-core-module": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "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-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 + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "dev": true, + "requires": { + "@jest/core": "^29.5.0", + "@jest/types": "^29.5.0", + "import-local": "^3.0.2", + "jest-cli": "^29.5.0" + } + }, + "jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "dev": true, + "requires": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + } + }, + "jest-circus": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", + "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "dev": true, + "requires": { + "@jest/environment": "^29.5.0", + "@jest/expect": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.5.0", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.5.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-cli": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", + "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "dev": true, + "requires": { + "@jest/core": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + } + }, + "jest-config": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", + "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.5.0", + "@jest/types": "^29.5.0", + "babel-jest": "^29.5.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.5.0", + "jest-environment-node": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-runner": "^29.5.0", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + } + }, + "jest-diff": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", + "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + } + }, + "jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "dev": true, + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", + "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.5.0", + "pretty-format": "^29.5.0" + } + }, + "jest-environment-node": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", + "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "dev": true, + "requires": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-mock": "^29.5.0", + "jest-util": "^29.5.0" + } + }, + "jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true + }, + "jest-haste-map": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", + "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.5.0", + "jest-worker": "^29.5.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + } + }, + "jest-leak-detector": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", + "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "dev": true, + "requires": { + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + } + }, + "jest-matcher-utils": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", + "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.5.0" + } + }, + "jest-message-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", + "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.5.0", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.5.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-mock": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", + "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "jest-util": "^29.5.0" + } + }, + "jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "requires": {} + }, + "jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true + }, + "jest-resolve": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", + "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.5.0", + "jest-validate": "^29.5.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + } + }, + "jest-resolve-dependencies": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", + "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "dev": true, + "requires": { + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.5.0" + } + }, + "jest-runner": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", + "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "dev": true, + "requires": { + "@jest/console": "^29.5.0", + "@jest/environment": "^29.5.0", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.5.0", + "jest-haste-map": "^29.5.0", + "jest-leak-detector": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-resolve": "^29.5.0", + "jest-runtime": "^29.5.0", + "jest-util": "^29.5.0", + "jest-watcher": "^29.5.0", + "jest-worker": "^29.5.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + } + }, + "jest-runtime": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", + "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", + "dev": true, + "requires": { + "@jest/environment": "^29.5.0", + "@jest/fake-timers": "^29.5.0", + "@jest/globals": "^29.5.0", + "@jest/source-map": "^29.4.3", + "@jest/test-result": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-mock": "^29.5.0", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.5.0", + "jest-snapshot": "^29.5.0", + "jest-util": "^29.5.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + } + }, + "jest-snapshot": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", + "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.5.0", + "@jest/transform": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.5.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.5.0", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.5.0", + "jest-message-util": "^29.5.0", + "jest-util": "^29.5.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.5.0", + "semver": "^7.3.5" + }, + "dependencies": { + "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" + } + }, + "semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "jest-util": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", + "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "jest-validate": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", + "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "dev": true, + "requires": { + "@jest/types": "^29.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.5.0" + }, + "dependencies": { + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + } + } + }, + "jest-watcher": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", + "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "dev": true, + "requires": { + "@jest/test-result": "^29.5.0", + "@jest/types": "^29.5.0", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.5.0", + "string-length": "^4.0.1" + } + }, + "jest-worker": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", + "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", "dev": true, "requires": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" + "@types/node": "*", + "jest-util": "^29.5.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "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": { - "once": "^1.3.0", - "wrappy": "1" + "argparse": "^1.0.7", + "esprima": "^4.0.0" } }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "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==", + "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 }, "json5": { @@ -980,12 +6270,45 @@ "universalify": "^2.0.0" } }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "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 + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, "lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -995,6 +6318,61 @@ "tslib": "^2.0.3" } }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.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 + }, + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "requires": { + "tmpl": "1.0.5" + } + }, + "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 + }, + "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": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -1004,6 +6382,18 @@ "brace-expansion": "^1.1.7" } }, + "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 + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, "no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -1014,6 +6404,33 @@ "tslib": "^2.0.3" } }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node-releases": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", + "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" + } + }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -1023,6 +6440,50 @@ "wrappy": "1" } }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "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-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" + }, + "dependencies": { + "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-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 + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -1033,6 +6494,18 @@ "tslib": "^2.0.3" } }, + "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" + } + }, "pascal-case": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", @@ -1053,12 +6526,57 @@ "tslib": "^2.0.3" } }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "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 + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "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" + } + }, "postcss-calc-ast-parser": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", @@ -1074,12 +6592,91 @@ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "dev": true }, + "pretty-format": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", + "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "dev": true, + "requires": { + "@jest/schemas": "^29.4.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "pure-rand": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz", + "integrity": "sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==", + "dev": true + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, "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 }, + "resolve": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "dev": true, + "requires": { + "is-core-module": "^2.11.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.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, "sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", @@ -1091,6 +6688,39 @@ "upper-case-first": "^2.0.2" } }, + "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 + }, + "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 + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, "snake-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", @@ -1101,6 +6731,47 @@ "tslib": "^2.0.3" } }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.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" + } + }, + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -1121,6 +6792,24 @@ "ansi-regex": "^5.0.1" } }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "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-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, "style-dictionary": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", @@ -1147,12 +6836,50 @@ "has-flag": "^4.0.0" } }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "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, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, "tinycolor2": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", "dev": true }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, "token-transformer": { "version": "0.0.27", "resolved": "https://registry.npmjs.org/token-transformer/-/token-transformer-0.0.27.tgz", @@ -1162,18 +6889,109 @@ "yargs": "^17.4.1" } }, + "ts-jest": { + "version": "29.1.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", + "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "dev": true, + "requires": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "^21.0.1" + }, + "dependencies": { + "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" + } + }, + "semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "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" + } + }, "tslib": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", "dev": true }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + }, + "typescript": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", + "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", + "dev": true + }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true }, + "update-browserslist-db": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", + "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, "upper-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", @@ -1192,6 +7010,49 @@ "tslib": "^2.0.3" } }, + "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 + }, + "v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "dependencies": { + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + } + } + }, + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "requires": { + "makeerror": "1.0.12" + } + }, + "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" + } + }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -1209,12 +7070,28 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, + "write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + } + }, "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": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, "yargs": { "version": "17.6.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", @@ -1235,6 +7112,18 @@ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true + }, + "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 } } } diff --git a/package.json b/package.json index e92601a7f07..3d604d733e1 100644 --- a/package.json +++ b/package.json @@ -44,16 +44,23 @@ "url": "https://github.com/esri/calcite-design-tokens/issues" }, "scripts": { - "test": "echo 'No Tests yet, what are you doing?'", - "build": "npm run build:transformer && npm run build:sd", + "test": "jest", + "test:dev": "jest --watch", + "build": "tsc", "build:sd": "style-dictionary build", "build:transformer": "token-transformer tokens sd-tokens/output.json", "release": "echo 'release is still TBD. Please message Ali Stump or Erik Harper-Dicianno for more information." }, "devDependencies": { "@tokens-studio/sd-transforms": "^0.8.1", + "@types/jest": "^29.5.0", "@types/node": "^18.15.11", + "jest": "^29.5.0", "style-dictionary": "^3.7.1", - "token-transformer": "^0.0.27" + "token-transformer": "^0.0.27", + "ts-jest": "^29.0.5", + "ts-node": "^10.9.1", + "tslib": "^2.5.0", + "typescript": "^5.0.2" } } diff --git a/scripts/transformer/index.ts b/scripts/transformer/index.ts index e69de29bb2d..13e4bb9c697 100644 --- a/scripts/transformer/index.ts +++ b/scripts/transformer/index.ts @@ -0,0 +1,75 @@ +// -- transform(themes file path, tokensDir?: string) -- +// read [themes] file at themes file path + // create [fileName] from [theme].name + // create workingObject + // create a dictionary of [soruce, enabled] from selectedTokenSets + // for source set + // create global object + // read each object from source set look for "value" or a value that is not an object + // check for string starting with "$" + // if true + // [1] + // add full object to global object + // for each enabled set + // read each object from enabled set look for "value" or a value that is not an object + // check for string starting with "$" + // if true + // -- [1] lookupVariable(str:string, globals: Record, { setGlobal: boolean; }) + // [1] lookupVariable from (global object) + // if found + // if variable also has a string starting with "$" + // loop [1] lookupVariable(var, global object, setGlobal = false) + // else + // check loop prop "source" + // if true + // replace string with variable value + // else + // replace string starting with "$" to "{string}" (the SD var way) + // check loop prop "setGlobal" + // if true + // add variable to workingObject.global + // else + // throw an error + + // try [1] lookupVariable(string starting with "$", global object, { setGlobal: true }) + // catch error + // [1] lookupVariable(string starting with "$", working object, { setGlobal: true }) + // catch error + // log an error informing the user the variable was not found + // add each object from enabled set to workingObject + // wait for all objects in enabled set to be read + // save workingObject to temp/[fileName].temp.json + // configure SD to use temp/[fileName].temp.json + // should output expected final assets to outputPath/[fileName].[ext] + + + + + +// calcite-transform config + // input dir + // output dir + // themes + // theme-file + // theme-array-of-objects + // name + // selectedTokenSets + // SD config customizations + +// Read Theme Files +// Style Dictionary input [ ...(path)every file in selected token set ] + +// register valueTransform + // Convert Figma variables to SD variables + +// register attributeTransform + // find name in Object.keys(theme.selectedTokenSets) + // if found + // set attributes['tokenSet'] = theme.selectedTokenSets[name] + // should be 'enabled', 'disabled', or 'source' + +// register ts transforms + +// register format + + diff --git a/scripts/transformer/run.ts b/scripts/transformer/run.ts index 9be1ee91836..4ffca478cf5 100644 --- a/scripts/transformer/run.ts +++ b/scripts/transformer/run.ts @@ -9,32 +9,62 @@ import { buildStyleDictionary } from "./buildStyleDictionary"; export type ThemeObject = { global: Record, [key: string]: Record}; const workingThemeObject: ThemeObject[] = []; +export const readThemesFile = (source: string, buildPath: string) => { + const fileData = readFilToJSON(source); + + // Expect the shape of fileData to match the shape of Figma's $themes.json file + if (Array.isArray(fileData) && typeof fileData[0].id === 'string') { + const tempDir = join(process.cwd(), 'temp'); + + if (buildPath && !existsSync(buildPath)){ + mkdirSync(buildPath); + } + if (tempDir && !existsSync(tempDir)){ + mkdirSync(tempDir); + } + + const themes = [...new Set(fileData.reduce(parseThemeConfig, { name: '', original: {}, dir: buildPath })) as Set]; + const workingObjects = themes.reduce(createWorkingObject, workingThemeObject); + const tokensPromise = workingObjects.map(async (tokenSet) => { + const { $settings, global, ...tokens } = tokenSet; + const { name } = $settings; + const tempFile = join(tempDir, `${$settings.name}.json`); + writeFileSync(tempFile, JSON.stringify({ global, ...tokens }, null, 2)); + return buildStyleDictionary({source, destination: name, buildPath}); + }); + + await Promise.all(tokensPromise); + + rmdirSync(tempDir); + } +} + /** * * @param filePath - the file relative to the current working directory which should be used to create files * @param dir - the directory for source tokens. If not provided the file root will be assumed to be where tokens are */ -export const run = async (filePath: string, input: string, output: string) => { - const fileData = readFilToJSON(filePath, input); +export const run = async (source: string, buildPath: string) => { + const fileData = readFilToJSON(source); if (Array.isArray(fileData) && typeof fileData[0].id === 'string') { const tempDir = join(process.cwd(), 'temp'); - if (output && !existsSync(output)){ - mkdirSync(output); + if (buildPath && !existsSync(buildPath)){ + mkdirSync(buildPath); } if (tempDir && !existsSync(tempDir)){ mkdirSync(tempDir); } - const themes = [...new Set(fileData.reduce(parseThemeConfig, { name: '', original: {}, dir: output })) as Set]; + const themes = [...new Set(fileData.reduce(parseThemeConfig, { name: '', original: {}, dir: buildPath })) as Set]; const workingObjects = themes.reduce(createWorkingObject, workingThemeObject); const tokensPromise = workingObjects.map(async (tokenSet) => { const { $settings, global, ...tokens } = tokenSet; const { name } = $settings; const tempFile = join(tempDir, `${$settings.name}.json`); writeFileSync(tempFile, JSON.stringify({ global, ...tokens }, null, 2)); - return buildStyleDictionary(tempFile, name, output); + return buildStyleDictionary(tempFile, name, buildPath); }); await Promise.all(tokensPromise); @@ -44,6 +74,6 @@ export const run = async (filePath: string, input: string, output: string) => { // Assume we are working with a single file transform // parse file directly with Style Dictionary const name = filePath.match(/($^)/); - await buildStyleDictionary(filePath, name, output); + await buildStyleDictionary(filePath, name, buildPath); } } diff --git a/tools/token-transformer/sd-run.test.ts b/tools/token-transformer/sd-run.test.ts index 4b83b900b77..c21054387cf 100644 --- a/tools/token-transformer/sd-run.test.ts +++ b/tools/token-transformer/sd-run.test.ts @@ -1,3 +1,12 @@ +import { run } from "./sd-run"; +import { existsSync } from "node:fs"; + describe('integration tests', () => { - -}) + beforeAll(() =>{ + run(); + }); + + it('should generate a build directory', () => { + expect(existsSync('build')).toBe(true); + }) +}); diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 550f74a0bbf..9d94459fae4 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -1,54 +1,25 @@ -import { registerTransforms } from '@tokens-studio/sd-transforms'; +// import { registerTransforms } from '@tokens-studio/sd-transforms'; import * as StyleDictionary from 'style-dictionary'; -await registerTransforms(StyleDictionary, { expand: { - composition: true, - typography: true, - border: true, - shadow: true, -}}); - -const sd = StyleDictionary.extend({ - source: ['**/*.tokens.json'], - platforms: { - js: { - transformGroup: 'tokens-studio', - buildPath: 'build/js/', - files: [ - { - destination: 'variables.js', - format: 'javascript/es6', - }, - ], - }, - css: { - transforms: [ - 'ts/descriptionToComment', - 'ts/size/px', - 'ts/opacity', - 'ts/size/css/letterspacing', - 'ts/size/lineheight', - 'ts/type/fontWeight', - 'ts/resolveMath', - 'ts/typography/css/shorthand', - 'ts/border/css/shorthand', - 'ts/shadow/css/shorthand', - 'ts/color/css/hexrgba', - 'ts/color/modifiers', - 'name/cti/kebab', - ], - buildPath: 'build/css/', - files: [ - { - destination: 'variables.css', - format: 'css/variables', - }, - ], +export const run = async () => { + const _sd = StyleDictionary.extend({ + source: ['tokens/**/*.json'], + platforms: { + css: { + transforms: [ + 'name/cti/kebab', + ], + buildPath: 'build/css/', + files: [ + { + destination: 'calcite-headless.css', + format: 'css/variables', + }, + ], + }, }, - }, -}); + }); -export const run = () => { - sd.cleanAllPlatforms(); - sd.buildAllPlatforms(); + _sd.cleanAllPlatforms(); + _sd.buildAllPlatforms(); } diff --git a/tools/token-transformer/sd-run.ts.bak b/tools/token-transformer/sd-run.ts.bak index d72c48181ae..75f24cc951a 100644 --- a/tools/token-transformer/sd-run.ts.bak +++ b/tools/token-transformer/sd-run.ts.bak @@ -17,6 +17,7 @@ export { } from '@tokens-studio/sd-transforms' const tokensDir = path.resolve(process.cwd(), 'tokens'); + const themes = [{ name: 'calcite-headless', enabled: ['core', 'semantic.json', 'component/avatar'], @@ -79,7 +80,14 @@ StyleDictionary.registerFormat({ return token.isSource ? `export const ${token.name} = ${value};`: undefined; }).filter((t) => t); - return + return StyleDictionary.formatHelpers.fileHeader({ file: { + className?: string; + packageName?: string; + destination: string; + format?: string; + filter?: string | Partial | ((token: TransformedToken) => boolean); + options?: Options; + }, commentStyle: 'short'}) } }); diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000000..cfa99445211 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "display": "Default", + "compilerOptions": { + "allowSyntheticDefaultImports": true, + "allowUnreachableCode": false, + "declaration": false, + "esModuleInterop": true, + "experimentalDecorators": true, + "lib": ["dom", "dom.iterable", "ES6"], + "module": "esnext", + "moduleResolution": "node", + "noUnusedLocals": true, + "noUnusedParameters": true, + "resolveJsonModule": true, + "target": "es2020" + }, + "exclude": ["node_modules", "tokens", "build"] +} From 983430bfc0a7c57dbbbf51d9a82ac4d4ffe7c11a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 18 Apr 2023 15:29:44 -0700 Subject: [PATCH 538/696] WIP: token transformer make SD config dynamic to theme --- tools/token-transformer/getThemes.ts | 10 ++++++ tools/token-transformer/index.ts | 4 ++- tools/token-transformer/sd-run.test.ts | 4 +-- tools/token-transformer/sd-run.ts | 49 ++++++++++++++++++++------ 4 files changed, 54 insertions(+), 13 deletions(-) create mode 100644 tools/token-transformer/getThemes.ts diff --git a/tools/token-transformer/getThemes.ts b/tools/token-transformer/getThemes.ts new file mode 100644 index 00000000000..c85301f1b8d --- /dev/null +++ b/tools/token-transformer/getThemes.ts @@ -0,0 +1,10 @@ +export type Theme = { + name: string; + enabled: string[]; + disabled: string[]; + source: string[]; +} + +export async function getThemes( themeFile: string ): Promise { + return [] +} diff --git a/tools/token-transformer/index.ts b/tools/token-transformer/index.ts index 32e48de4851..08ce931fef5 100644 --- a/tools/token-transformer/index.ts +++ b/tools/token-transformer/index.ts @@ -1,3 +1,5 @@ import { run } from "./sd-run"; +import { getThemes } from './getThemes' + +getThemes('tokens/$themes.json').then((themes) => run(['tokens'], 'build', themes)) -run(); diff --git a/tools/token-transformer/sd-run.test.ts b/tools/token-transformer/sd-run.test.ts index c21054387cf..cf39e0cfadd 100644 --- a/tools/token-transformer/sd-run.test.ts +++ b/tools/token-transformer/sd-run.test.ts @@ -2,8 +2,8 @@ import { run } from "./sd-run"; import { existsSync } from "node:fs"; describe('integration tests', () => { - beforeAll(() =>{ - run(); + beforeAll(async () => { + await run(); }); it('should generate a build directory', () => { diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 9d94459fae4..6a6a167e8b2 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -1,23 +1,52 @@ // import { registerTransforms } from '@tokens-studio/sd-transforms'; import * as StyleDictionary from 'style-dictionary'; +import { Theme } from './getThemes' -export const run = async () => { +const defaultThemes: Theme[] = [{ + name: 'calcite-headless', + enabled: [ + "core", "semantic", "component/avatar", "component/checkbox", + "component/chip", "component/loader", "component/radio", "component/rating", + "component/label", "component/tooltip", "component/input-time", "component/switch", + "component/input-message", "component/accordion-item", "component/alert", "component/accordion", + "component/tip", "component/color-picker", "component/date-picker", "component/input-date-picker", + "component/combobox", "component/button", "component/dropdown", "component/input-datetime-local", + "component/link", "component/fab", "component/stepper", "component/pagination", + "component/segmented-control", "component/stepper-item", "component/input-email", "component/input-file", + "component/input-month", "component/input-number", "component/input-password", "component/input-search", + "component/input-telephone", "component/input-text", "component/input-week", "component/textarea", + "component/tab-title", "component/card", "component/tabs", "component/action-bar", + "component/action", "component/action-pad", "component/action-bar-grid", "component/action-pad-grid", + "component/block", "component/block-section", "component/notice", "component/modal", + "component/panel-header", "component/popover", "component/tree-item", "component/tile" + ], + source: [], + disabled: [], +}] + +export const run = async ( + source: string[] = ['tokens/**/*.json'], + buildPath: string = 'build/css/', + themes: Theme[] = defaultThemes) => { const _sd = StyleDictionary.extend({ - source: ['tokens/**/*.json'], + source, platforms: { css: { transforms: [ 'name/cti/kebab', ], - buildPath: 'build/css/', - files: [ - { - destination: 'calcite-headless.css', + buildPath: `${buildPath}`, + files: themes.map(({name, enabled, source, disabled}) => ({ + destination: `${name}.css`, format: 'css/variables', - }, - ], - }, - }, + options: { + enabled, + source, + disabled, + } + })), + } + } }); _sd.cleanAllPlatforms(); From 4083c25f1a7c15977bad3d4513d6a4860ecce1fc Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 19 Apr 2023 19:39:31 +0200 Subject: [PATCH 539/696] Flow updates --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++++-- tokens/component/flow-header.json | 88 +++++++++++++++++++++++++++++++ 3 files changed, 99 insertions(+), 5 deletions(-) create mode 100644 tokens/component/flow-header.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index d57bef73b16..35e4bca87fa 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -48,6 +48,7 @@ "component/tip", "component/tooltip", "component/panel-header", + "component/flow-header", "component/popover", "component/pagination", "component/segmented-control", diff --git a/tokens/$themes.json b/tokens/$themes.json index 6db19037bad..fc41ff7a0dd 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/flow-header": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/flow-header": "disabled" }, "$figmaStyleReferences": {} }, @@ -49,7 +51,8 @@ "core": "source", "semantic": "source", "component/tree-item": "source", - "component/tile": "source" + "component/tile": "source", + "component/flow-header": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -140,7 +143,8 @@ "component/switch": "source", "component/stepper-item": "source", "component/tree-item": "source", - "component/tile": "source" + "component/tile": "source", + "component/flow-header": "disabled" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -266,7 +270,8 @@ "component/panel-header": "enabled", "component/popover": "enabled", "component/tree-item": "enabled", - "component/tile": "enabled" + "component/tile": "enabled", + "component/flow-header": "disabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/flow-header.json b/tokens/component/flow-header.json new file mode 100644 index 00000000000..4d78f119f19 --- /dev/null +++ b/tokens/component/flow-header.json @@ -0,0 +1,88 @@ +{ + "flow-header": { + "font": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "heading": { + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "description": { + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-width": { + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "md": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "top-bottom": { + "md": { + "value": "$core.spacing.6", + "type": "spacing" + } + } + } + } +} \ No newline at end of file From e725295de7998adee5cb7530a24dc0ccc4a6a192 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 19 Apr 2023 20:29:00 +0200 Subject: [PATCH 540/696] Flow updates --- tokens/$themes.json | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index fc41ff7a0dd..6db19037bad 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/flow-header": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/flow-header": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, @@ -51,8 +49,7 @@ "core": "source", "semantic": "source", "component/tree-item": "source", - "component/tile": "source", - "component/flow-header": "disabled" + "component/tile": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -143,8 +140,7 @@ "component/switch": "source", "component/stepper-item": "source", "component/tree-item": "source", - "component/tile": "source", - "component/flow-header": "disabled" + "component/tile": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -270,8 +266,7 @@ "component/panel-header": "enabled", "component/popover": "enabled", "component/tree-item": "enabled", - "component/tile": "enabled", - "component/flow-header": "disabled" + "component/tile": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", From 9cb77dbf4e18a892aa6c010206d903a99047330b Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 20 Apr 2023 22:01:42 +0200 Subject: [PATCH 541/696] updates --- tokens/$metadata.json | 7 +- tokens/$themes.json | 13 +- tokens/calcite/dark.json | 242 +++++++++++++++ tokens/calcite/light.json | 240 +++++++++++++++ tokens/component/chip.json | 64 +++- tokens/component/filter.json | 199 ++++++++++++ tokens/component/flow-header.json | 88 ------ tokens/component/scrim.json | 18 ++ tokens/component/slider-histogram-range.json | 284 +++++++++++++++++ tokens/component/slider-histogram.json | 305 +++++++++++++++++++ tokens/component/slider-range.json | 25 -- tokens/component/tile.json | 152 --------- tokens/component/tip-manager.json | 118 +++++++ tokens/component/tree-item.json | 20 +- tokens/core.json | 4 + 15 files changed, 1488 insertions(+), 291 deletions(-) create mode 100644 tokens/component/filter.json delete mode 100644 tokens/component/flow-header.json create mode 100644 tokens/component/scrim.json create mode 100644 tokens/component/slider-histogram-range.json create mode 100644 tokens/component/slider-histogram.json delete mode 100644 tokens/component/tile.json create mode 100644 tokens/component/tip-manager.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 35e4bca87fa..5ff20261308 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -40,25 +40,28 @@ "component/textarea", "component/label", "component/link", + "component/filter", "component/loader", "component/radio", "component/tab-title", "component/tabs", "component/rating", "component/tip", + "component/tip-manager", "component/tooltip", "component/panel-header", - "component/flow-header", "component/popover", "component/pagination", "component/segmented-control", "component/slider", + "component/slider-histogram", + "component/slider-histogram-range", "component/slider-range", "component/stepper", "component/stepper-item", "component/switch", "component/[template-comp-name]", - "component/tile", + "component/scrim", "component/tree-item", "component/accordion_backup", "calcite/light", diff --git a/tokens/$themes.json b/tokens/$themes.json index 6db19037bad..7e389ba5d7c 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -48,8 +48,7 @@ "component/tooltip": "source", "core": "source", "semantic": "source", - "component/tree-item": "source", - "component/tile": "source" + "component/tree-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -139,8 +138,7 @@ "component/segmented-control": "source", "component/switch": "source", "component/stepper-item": "source", - "component/tree-item": "source", - "component/tile": "source" + "component/tree-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -266,7 +264,12 @@ "component/panel-header": "enabled", "component/popover": "enabled", "component/tree-item": "enabled", - "component/tile": "enabled" + "component/scrim": "enabled", + "component/slider": "enabled", + "component/slider-histogram": "enabled", + "component/slider-histogram-range": "enabled", + "component/slider-range": "enabled", + "component/filter": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index f7f06b71362..b128d792174 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1534,6 +1534,248 @@ } } } + }, + "slider-range": { + "font": { + "label": { + "value": "$slider-range.font.label.dark", + "type": "color" + }, + "tick-label": { + "value": "$slider-range.font.tick-label.dark", + "type": "color" + } + }, + "handle": { + "background": { + "value": "$slider-range.handle.background.dark", + "type": "color" + }, + "border": { + "value": "$slider-range.handle.border.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$slider-range.border.default.dark", + "type": "color" + }, + "active": { + "value": "$slider-range.border.active.dark", + "type": "color" + } + }, + "tick": { + "default": { + "background": { + "value": "$slider-range.tick.default.background.dark", + "type": "color" + }, + "border": { + "value": "$slider-range.tick.default.border.dark", + "type": "color" + } + }, + "active": { + "background": { + "value": "$slider-range.tick.active.background.dark", + "type": "color" + }, + "border": { + "value": "$slider-range.tick.active.border.dark", + "type": "color" + } + } + } + }, + "slider-histogram": { + "font": { + "label": { + "value": "$slider-histogram.font.label.dark", + "type": "color" + }, + "tick-label": { + "value": "$slider-histogram.font.tick-label.dark", + "type": "color" + } + }, + "handle": { + "background": { + "value": "$slider-histogram.handle.background.dark", + "type": "color" + }, + "border": { + "value": "$slider-histogram.handle.border.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$slider-histogram.border.default.dark", + "type": "color" + }, + "active": { + "value": "$slider-histogram.border.active.dark", + "type": "color" + } + }, + "tick": { + "default": { + "background": { + "value": "$slider-histogram.tick.default.background.dark", + "type": "color" + }, + "border": { + "value": "$slider-histogram.tick.default.border.dark", + "type": "color" + } + }, + "active": { + "background": { + "value": "$slider-histogram.tick.active.background.dark", + "type": "color" + }, + "border": { + "value": "$slider-histogram.tick.active.border.dark", + "type": "color" + } + } + }, + "area": { + "active": { + "background": { + "value": "$slider-histogram.area.active.background.dark", + "type": "color" + } + } + }, + "active-end": { + "background": { + "dark": { + "value": "$slider-histogram.active-end.background.dark", + "type": "color" + } + } + } + }, + "slider-histogram-range": { + "font": { + "label": { + "value": "$slider-histogram-range.font.label.dark", + "type": "color" + }, + "tick-label": { + "value": "$slider-histogram-range.font.tick-label.dark", + "type": "color" + } + }, + "handle": { + "background": { + "value": "$slider-histogram-range.handle.background.dark", + "type": "color" + }, + "border": { + "value": "$slider-histogram-range.handle.border.dark", + "type": "color" + } + }, + "border": { + "default": { + "value": "$slider-histogram-range.border.default.dark", + "type": "color" + }, + "active": { + "value": "$slider-histogram-range.border.active.dark", + "type": "color" + } + }, + "tick": { + "default": { + "background": { + "value": "$slider-histogram-range.tick.default.background.dark", + "type": "color" + }, + "border": { + "value": "$slider-histogram-range.tick.default.border.dark", + "type": "color" + } + }, + "active": { + "background": { + "value": "$slider-histogram-range.tick.active.background.dark", + "type": "color" + }, + "border": { + "value": "$slider-histogram-range.tick.active.border.dark", + "type": "color" + } + } + }, + "area": { + "active": { + "background": { + "value": "$slider-histogram-range.area.active.background.dark", + "type": "color" + } + } + }, + "active-end": { + "background": { + "value": "$slider-histogram.active-end.background.dark", + "type": "color" + } + } + }, + "filter": { + "font": { + "value": "$filter.font.dark", + "type": "color" + }, + "icon": { + "value": "$filter.icon.dark", + "type": "color" + }, + "border": { + "value": "$filter.border.dark", + "type": "color" + }, + "background": { + "value": "$filter.background.dark", + "type": "color" + } + }, + "scrim": { + "background": { + "value": "$scrim.background.dark", + "type": "color" + } + }, + "tip-manager": { + "font": { + "heading": { + "value": "$tip-manager.font.heading.dark", + "type": "color" + } + }, + "icon": { + "value": "$tip-manager.icon.dark", + "type": "color" + }, + "background": { + "default": { + "light": { + "value": "$tip-manager.background.default.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "value": "$tip-manager.border.default.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index dfcdbada61d..60b367ebe7f 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1558,6 +1558,246 @@ } } } + }, + "slider-range": { + "font": { + "label": { + "value": "$slider-range.font.label.light", + "type": "color" + }, + "tick-label": { + "value": "$slider-range.font.tick-label.light", + "type": "color" + } + }, + "handle": { + "background": { + "value": "$slider-range.handle.background.light", + "type": "color" + }, + "border": { + "value": "$slider-range.handle.border.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$slider-range.border.default.light", + "type": "color" + }, + "active": { + "value": "$slider-range.border.active.light", + "type": "color" + } + }, + "tick": { + "default": { + "background": { + "value": "$slider-range.tick.default.background.light", + "type": "color" + }, + "border": { + "value": "$slider-range.tick.default.border.light", + "type": "color" + } + }, + "active": { + "background": { + "value": "$slider-range.tick.active.background.light", + "type": "color" + }, + "border": { + "value": "$slider-range.tick.active.border.light", + "type": "color" + } + } + } + }, + "slider-histogram": { + "font": { + "label": { + "value": "$slider-histogram.font.label.light", + "type": "color" + }, + "tick-label": { + "value": "$slider-histogram.font.tick-label.light", + "type": "color" + } + }, + "handle": { + "background": { + "value": "$slider-histogram.handle.background.light", + "type": "color" + }, + "border": { + "value": "$slider-histogram.handle.border.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$slider-histogram.border.default.light", + "type": "color" + }, + "active": { + "value": "$slider-histogram.border.active.light", + "type": "color" + } + }, + "tick": { + "default": { + "background": { + "value": "$slider-histogram.tick.default.background.light", + "type": "color" + }, + "border": { + "value": "$slider-histogram.tick.default.border.light", + "type": "color" + } + }, + "active": { + "background": { + "value": "$slider-histogram.tick.active.background.light", + "type": "color" + }, + "border": { + "value": "$slider-histogram.tick.active.border.light", + "type": "color" + } + } + }, + "area": { + "active": { + "background": { + "value": "$slider-histogram.area.active.background.light", + "type": "color" + } + } + }, + "active-end": { + "background": { + "value": "$slider-histogram.active-end.background.light", + "type": "color" + } + } + }, + "slider-histogram-range": { + "font": { + "label": { + "value": "$slider-histogram-range.font.label.light", + "type": "color" + }, + "tick-label": { + "value": "$slider-histogram-range.font.tick-label.light", + "type": "color" + } + }, + "handle": { + "background": { + "value": "$slider-histogram-range.handle.background.light", + "type": "color" + }, + "border": { + "value": "$slider-histogram-range.handle.border.light", + "type": "color" + } + }, + "border": { + "default": { + "value": "$slider-histogram-range.border.default.light", + "type": "color" + }, + "active": { + "value": "$slider-histogram-range.border.active.light", + "type": "color" + } + }, + "tick": { + "default": { + "background": { + "value": "$slider-histogram-range.tick.default.background.light", + "type": "color" + }, + "border": { + "value": "$slider-histogram-range.tick.default.border.light", + "type": "color" + } + }, + "active": { + "background": { + "value": "$slider-histogram-range.tick.active.background.light", + "type": "color" + }, + "border": { + "value": "$slider-histogram-range.tick.active.border.light", + "type": "color" + } + } + }, + "area": { + "active": { + "background": { + "value": "$slider-histogram-range.area.active.background.light", + "type": "color" + } + } + }, + "active-end": { + "background": { + "value": "$slider-histogram.active-end.background.light", + "type": "color" + } + } + }, + "filter": { + "font": { + "value": "$filter.font.light", + "type": "color" + }, + "icon": { + "value": "$filter.icon.light", + "type": "color" + }, + "border": { + "value": "$filter.border.light", + "type": "color" + }, + "background": { + "value": "$filter.background.light", + "type": "color" + } + }, + "scrim": { + "background": { + "value": "$scrim.background.light", + "type": "color" + } + }, + "tip-manager": { + "font": { + "heading": { + "value": "$tip-manager.font.heading.light", + "type": "color" + } + }, + "icon": { + "value": "$tip-manager.icon.light", + "type": "color" + }, + "background": { + "default": { + "light": { + "value": "$tip-manager.background.default.light", + "type": "color" + } + } + }, + "border": { + "default": { + "value": "$tip-manager.border.default.light", + "type": "color" + } + } } } } diff --git a/tokens/component/chip.json b/tokens/component/chip.json index 65914eb59f6..40fe4105df7 100644 --- a/tokens/component/chip.json +++ b/tokens/component/chip.json @@ -138,6 +138,36 @@ "value": "$semantic.ui.color.text.1.dark", "type": "color" } + }, + "space-around": { + "right": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "left": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } } }, "background": { @@ -237,11 +267,11 @@ "type": "spacing" }, "md": { - "value": "$core.spacing.2", + "value": "$core.spacing.1", "type": "spacing" }, "lg": { - "value": "$core.spacing.3", + "value": "$core.spacing.1", "type": "spacing" } } @@ -300,20 +330,6 @@ } } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "space-around": { "sm": { "value": "$core.spacing.3", @@ -345,6 +361,22 @@ "border-width": { "value": "$core.border.border-width.0", "type": "borderWidth" + }, + "text": { + "space-around": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } } } } \ No newline at end of file diff --git a/tokens/component/filter.json b/tokens/component/filter.json new file mode 100644 index 00000000000..c5aeca71328 --- /dev/null +++ b/tokens/component/filter.json @@ -0,0 +1,199 @@ +{ + "filter": { + "font": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "input": { + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/flow-header.json b/tokens/component/flow-header.json deleted file mode 100644 index 4d78f119f19..00000000000 --- a/tokens/component/flow-header.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "flow-header": { - "font": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "heading": { - "md": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - } - }, - "description": { - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "background": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "border-width": { - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "icon-size": { - "md": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "md": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "space-around": { - "left-right": { - "md": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "top-bottom": { - "md": { - "value": "$core.spacing.6", - "type": "spacing" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/scrim.json b/tokens/component/scrim.json new file mode 100644 index 00000000000..4d7d790e76c --- /dev/null +++ b/tokens/component/scrim.json @@ -0,0 +1,18 @@ +{ + "scrim": { + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "opacity": { + "value": "$core.opacity.85", + "type": "opacity" + } + } +} \ No newline at end of file diff --git a/tokens/component/slider-histogram-range.json b/tokens/component/slider-histogram-range.json new file mode 100644 index 00000000000..16b6feefc94 --- /dev/null +++ b/tokens/component/slider-histogram-range.json @@ -0,0 +1,284 @@ +{ + "slider-histogram-range": { + "font": { + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "tick-label": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } + } + }, + "handle": { + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "tick-size": { + "width": { + "sm": { + "value": "$core.sizing.1", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.1", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.1", + "type": "sizing" + } + }, + "height": { + "sm": { + "value": "$core.sizing.2", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.2", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.2", + "type": "sizing" + } + } + }, + "handle-size": { + "sm": { + "value": "$core.sizing.4", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "tick": { + "default": { + "background": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "active": { + "background": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + } + }, + "area": { + "active": { + "background": { + "light": { + "value": "#9BBDDF", + "type": "color" + }, + "dark": { + "value": "#8DCEF7", + "type": "color" + } + } + } + }, + "active-start-end": { + "width": { + "sm": { + "value": "$core.sizing.0", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.0", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.0", + "type": "sizing" + } + }, + "height": { + "sm": { + "value": "$core.sizing.15", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.15", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.15", + "type": "sizing" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/slider-histogram.json b/tokens/component/slider-histogram.json new file mode 100644 index 00000000000..33970fe2dbe --- /dev/null +++ b/tokens/component/slider-histogram.json @@ -0,0 +1,305 @@ +{ + "slider-histogram": { + "font": { + "label": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "tick-label": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.medium.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + } + } + }, + "handle": { + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + }, + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + } + }, + "tick-size": { + "width": { + "sm": { + "value": "$core.sizing.1", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.1", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.1", + "type": "sizing" + } + }, + "height": { + "sm": { + "value": "$core.sizing.2", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.2", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.2", + "type": "sizing" + } + } + }, + "handle-size": { + "sm": { + "value": "$core.sizing.4", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.6", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + }, + "tick": { + "default": { + "background": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "active": { + "background": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + } + }, + "area": { + "active": { + "background": { + "light": { + "value": "#9BBDDF", + "type": "color" + }, + "dark": { + "value": "#8DCEF7", + "type": "color" + } + } + } + }, + "active-end": { + "width": { + "sm": { + "value": "$core.sizing.0", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.0", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.0", + "type": "sizing" + } + }, + "height": { + "sm": { + "value": "$core.sizing.15", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.15", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.15", + "type": "sizing" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/slider-range.json b/tokens/component/slider-range.json index a2a12fbf356..cc1df3ebeab 100644 --- a/tokens/component/slider-range.json +++ b/tokens/component/slider-range.json @@ -176,31 +176,6 @@ "type": "spacing" } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "tick": { "default": { "background": { diff --git a/tokens/component/tile.json b/tokens/component/tile.json deleted file mode 100644 index bb909d15518..00000000000 --- a/tokens/component/tile.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "tile": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "heading": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "description": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "link": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/tip-manager.json b/tokens/component/tip-manager.json new file mode 100644 index 00000000000..686c4b42a0a --- /dev/null +++ b/tokens/component/tip-manager.json @@ -0,0 +1,118 @@ +{ + "tip": { + "font": { + "heading": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "md": { + "value": "$semantic.font.default.bold.1h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "border-radius": { + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "border": { + "default": { + "light": { + "value": "$semantic.ui.color.border.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.2.dark", + "type": "color" + } + } + }, + "header": { + "space-between": { + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + } + }, + "space-around": { + "left": { + "md": { + "value": "{core.spacing.7}", + "type": "spacing" + } + } + } + }, + "footer": { + "space-around": { + "top": { + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + } + }, + "bottom": { + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + } + } + }, + "space-between": { + "md": { + "value": "{core.spacing.3}", + "type": "spacing" + } + } + }, + "border-width": { + "md": { + "value": "{core.border.border-width.0}", + "type": "borderWidth" + } + }, + "space-around": { + "top-bottom": { + "md": { + "value": "{core.spacing.5}", + "type": "spacing" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tree-item.json b/tokens/component/tree-item.json index df5a496449b..eb2d0b9fa5e 100644 --- a/tokens/component/tree-item.json +++ b/tokens/component/tree-item.json @@ -88,6 +88,20 @@ "type": "color" } }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, "border-width": { "sm": { "value": "$core.border.border-width.1", @@ -132,15 +146,15 @@ }, "space-between": { "sm": { - "value": "$core.spacing.1", + "value": "$core.spacing.9", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "$core.spacing.11", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "$core.spacing.14", "type": "spacing" } }, diff --git a/tokens/core.json b/tokens/core.json index f697f4387a2..cb806b085b7 100644 --- a/tokens/core.json +++ b/tokens/core.json @@ -383,6 +383,10 @@ "value": "80%", "type": "opacity" }, + "85": { + "value": "85%", + "type": "opacity" + }, "90": { "value": "90%", "type": "opacity" From 27e9f554e49dce64423da5a62d5dbce358f9a947 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 20 Apr 2023 13:19:34 -0700 Subject: [PATCH 542/696] WIP: tokens transformer customizations in SD --- .vscode/settings.json | 5 +- package-lock.json | 14 +- package.json | 2 +- tokens/component/input-text.json | 4 +- tokens/component/rating.json | 8 +- tools/token-transformer/TransformOptions.ts | 30 +++ .../parse/expandComposites.ts | 157 ++++++++++++++ .../parse/handleFigmaTokens.ts | 18 ++ tools/token-transformer/sd-run.test.ts | 4 +- tools/token-transformer/sd-run.ts | 203 +++++++++++++++--- tsconfig.json | 4 +- 11 files changed, 404 insertions(+), 45 deletions(-) create mode 100644 tools/token-transformer/TransformOptions.ts create mode 100644 tools/token-transformer/parse/expandComposites.ts create mode 100644 tools/token-transformer/parse/handleFigmaTokens.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index 310757d7850..962a5852742 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,8 @@ { "cSpell.words": [ "typeof" - ] + ], + "search.exclude": { + "**/node_modules": false + } } diff --git a/package-lock.json b/package-lock.json index e7c318a7b97..1086a055a8c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "0.1.0", "license": "SEE LICENSE IN README.md", "devDependencies": { - "@tokens-studio/sd-transforms": "^0.8.1", + "@tokens-studio/sd-transforms": "^0.8.2", "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "jest": "^29.5.0", @@ -997,9 +997,9 @@ } }, "node_modules/@tokens-studio/sd-transforms": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", - "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.2.tgz", + "integrity": "sha512-X++MFWn3NaLOgmN1cHSW41ER9Xq8w8ioCM8+K2OjXYbPWKdPI18zFQf9ZxGcKpz/AxCs5zV2v/ZdvX5V3IfPSA==", "dev": true, "dependencies": { "@tokens-studio/types": "^0.2.1", @@ -4815,9 +4815,9 @@ } }, "@tokens-studio/sd-transforms": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", - "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.2.tgz", + "integrity": "sha512-X++MFWn3NaLOgmN1cHSW41ER9Xq8w8ioCM8+K2OjXYbPWKdPI18zFQf9ZxGcKpz/AxCs5zV2v/ZdvX5V3IfPSA==", "dev": true, "requires": { "@tokens-studio/types": "^0.2.1", diff --git a/package.json b/package.json index 3d604d733e1..c88db0b492f 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "release": "echo 'release is still TBD. Please message Ali Stump or Erik Harper-Dicianno for more information." }, "devDependencies": { - "@tokens-studio/sd-transforms": "^0.8.1", + "@tokens-studio/sd-transforms": "^0.8.2", "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "jest": "^29.5.0", diff --git a/tokens/component/input-text.json b/tokens/component/input-text.json index 3116ce7c069..dd72337b355 100644 --- a/tokens/component/input-text.json +++ b/tokens/component/input-text.json @@ -1,5 +1,5 @@ { - "input-telephone": { + "input-text": { "font": { "placeholder-value": { "light": { @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/rating.json b/tokens/component/rating.json index 13504a88663..5d17a0d8430 100644 --- a/tokens/component/rating.json +++ b/tokens/component/rating.json @@ -47,21 +47,21 @@ "font": { "sm": { "value": { - "typography": "$rating.chip.value-text.font.sm", + "typography": "$core.font.font-size.1", "fontWeights": "$core.font.font-weight.medium-italic" }, "type": "composition" }, "md": { "value": { - "typography": "$rating.chip.value-text.font.md", + "typography": "$core.font.font-size.2", "fontWeights": "$core.font.font-weight.medium-italic" }, "type": "composition" }, "lg": { "value": { - "typography": "$rating.chip.value-text.font.lg", + "typography": "$core.font.font-size.3", "fontWeights": "$core.font.font-weight.medium-italic" }, "type": "composition" @@ -240,4 +240,4 @@ } } } -} \ No newline at end of file +} diff --git a/tools/token-transformer/TransformOptions.ts b/tools/token-transformer/TransformOptions.ts new file mode 100644 index 00000000000..ad65b2f2889 --- /dev/null +++ b/tools/token-transformer/TransformOptions.ts @@ -0,0 +1,30 @@ +import { + SingleBorderToken, + SingleBoxShadowToken, + SingleCompositionToken, + SingleToken, + SingleTypographyToken, +} from '@tokens-studio/types'; + +export type Expandables = + | SingleCompositionToken + | SingleTypographyToken + | SingleBorderToken + | SingleBoxShadowToken; + +export const expandablesAsStringsArr = ['composition', 'typography', 'border', 'boxShadow']; +export type ExpandablesAsStrings = (typeof expandablesAsStringsArr)[number]; + +export type ExpandFilter = (token: T, filePath: string) => boolean; + +export interface ExpandOptions { + typography?: boolean | ExpandFilter; // default false + border?: boolean | ExpandFilter; // default false + shadow?: boolean | ExpandFilter; // default false + composition?: boolean | ExpandFilter; // default true +} + +export interface TransformOptions { + expand?: ExpandOptions | false; + excludeParentKeys?: boolean; +} diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts new file mode 100644 index 00000000000..bd1c40b876e --- /dev/null +++ b/tools/token-transformer/parse/expandComposites.ts @@ -0,0 +1,157 @@ +import { DeepKeyTokenMap, SingleToken } from '@tokens-studio/types'; +import { + ExpandFilter, + TransformOptions, + Expandables, + ExpandablesAsStrings, + expandablesAsStringsArr, +} from '../TransformOptions'; + +const typeMaps = { + boxShadow: { + x: 'dimension', + y: 'dimension', + blur: 'dimension', + spread: 'dimension', + type: 'other', + }, + border: { + width: 'borderWidth', + style: 'other', + }, + composition: { + typography: 'fontSizes', + fontWeight: 'fontWeights', + }, + typography: { + fontFamily: 'fontFamilies', + fontWeight: 'fontWeights', + lineHeight: 'lineHeights', + fontSize: 'fontSizes', + letterSpacing: 'spacing', + paragraphSpacing: 'spacing', + textDecoration: 'fontStyle', + textCase: 'textCase', + }, +}; + +const matchingGroup = new RegExp(/\$[.\w-]+/, 'g'); +function updateFigmaTokenForSD(value: string | number) { + let newValue = `${value}`; + const matchesArr = [...newValue.matchAll(matchingGroup)]; + if (matchesArr.length > 0) { + matchesArr.forEach((match) => { + const figmaVariable = match[0]; + newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); + }); + } + return newValue; +} + +const matchPlaceholderElement = new RegExp(/[\[\]]/, 'g'); +export function expandToken(compToken: SingleToken, isShadow = false) { + const expandedObj = {} as SingleToken; + const getType = (key: string) => typeMaps[compToken.type][key] ?? key; + + if (isShadow && Array.isArray(compToken.value)) { + compToken.value.forEach((shadow, index) => { + expandedObj[index + 1] = {}; + Object.entries(shadow).forEach(([key, value]) => { + if (matchPlaceholderElement.test(`${value}`)) { + return; + } + expandedObj[index + 1][key] = { + value: `${updateFigmaTokenForSD(value)}`, + type: getType(key), + }; + }); + }); + } else { + Object.entries(compToken.value).forEach(([key, value]) => { + if (matchPlaceholderElement.test(`${value}`)) { + return; + } + expandedObj[key] = { + value: `${updateFigmaTokenForSD(value)}`, + type: getType(key), + }; + }); + } + + return expandedObj; +} + +function shouldExpand( + token: T, + condition: boolean | ExpandFilter, + filePath: string, +): boolean { + if (typeof condition === 'function') { + return condition(token, filePath); + } + return condition; +} + +function recurse( + slice: DeepKeyTokenMap, + filePath: string, + transformOpts: TransformOptions = {}, +): DeepKeyTokenMap { + const opts = { + ...transformOpts, + expand: { + composition: true, + typography: false, + border: false, + shadow: false, + ...(transformOpts.expand || {}), + }, + }; + + const returnSlice: DeepKeyTokenMap = {}; + + const newToken = Object.entries(slice).reduce((acc, [key, token]) => { + const { type } = token; + if (matchPlaceholderElement.test(`${key}`) || (typeof matchPlaceholderElement.test(`${token.value}`)) === 'string' && matchPlaceholderElement.test(`${token.value}`)) { + return acc; + } + + if (token.value && type) { + if (typeof type === 'string' && expandablesAsStringsArr.includes(type)) { + const expandType = (type as ExpandablesAsStrings) === 'boxShadow' ? 'shadow' : type; + const expand = shouldExpand( + token as Expandables, + opts.expand[expandType], + filePath, + ); + if (expand) { + if (filePath.includes('semantic')) { + debugger; + } + const expandedToken = expandToken(token as SingleToken, expandType === 'shadow'); + acc[key] = expandedToken; + } + } else { + token['value'] = updateFigmaTokenForSD(token.value as string); + acc[key] = token; + } + } else if (typeof token === 'object') { + // TODO: figure out why we have to hack this typecast, if a value doesn't have a value & type, + // it is definitely a nested DeepKeyTokenMap and not a SingleToken, but TS seems to think it must be + // a SingleToken after this if statement + acc[key] = recurse(token as unknown as DeepKeyTokenMap, filePath, transformOpts); + } + return acc; + }, returnSlice); + + return newToken; +} + +export function expandComposites( + dictionary: DeepKeyTokenMap, + filePath: string, + transformOpts?: TransformOptions, +): DeepKeyTokenMap { + const copy = recurse({ ...dictionary }, filePath, transformOpts); + return copy; +} diff --git a/tools/token-transformer/parse/handleFigmaTokens.ts b/tools/token-transformer/parse/handleFigmaTokens.ts new file mode 100644 index 00000000000..97946b601c7 --- /dev/null +++ b/tools/token-transformer/parse/handleFigmaTokens.ts @@ -0,0 +1,18 @@ +import { DesignToken } from "style-dictionary/types/DesignToken"; + +export function handleFigmaTokens(key: string, value: any): DesignToken { + const matchingGroup = new RegExp(/\$[.\w-]+/, 'g'); + let newValue = value; + + if (typeof newValue === 'string') { + const matches = [...newValue.matchAll(matchingGroup)]; + if (matches.length > 0) { + matches.forEach((match) => { + const figmaVariable = match[0]; + newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); + }); + } + } + + return newValue; +} diff --git a/tools/token-transformer/sd-run.test.ts b/tools/token-transformer/sd-run.test.ts index cf39e0cfadd..d61529070bb 100644 --- a/tools/token-transformer/sd-run.test.ts +++ b/tools/token-transformer/sd-run.test.ts @@ -7,6 +7,6 @@ describe('integration tests', () => { }); it('should generate a build directory', () => { - expect(existsSync('build')).toBe(true); - }) + expect(existsSync('build')).toBeTruthy(); + }); }); diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 6a6a167e8b2..8cb2bc44094 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -1,52 +1,203 @@ // import { registerTransforms } from '@tokens-studio/sd-transforms'; import * as StyleDictionary from 'style-dictionary'; +import { excludeParentKeys, registerTransforms } from '@tokens-studio/sd-transforms'; +import { expandComposites } from './parse/expandComposites'; import { Theme } from './getThemes' - const defaultThemes: Theme[] = [{ name: 'calcite-headless', enabled: [ - "core", "semantic", "component/avatar", "component/checkbox", - "component/chip", "component/loader", "component/radio", "component/rating", - "component/label", "component/tooltip", "component/input-time", "component/switch", - "component/input-message", "component/accordion-item", "component/alert", "component/accordion", - "component/tip", "component/color-picker", "component/date-picker", "component/input-date-picker", - "component/combobox", "component/button", "component/dropdown", "component/input-datetime-local", - "component/link", "component/fab", "component/stepper", "component/pagination", - "component/segmented-control", "component/stepper-item", "component/input-email", "component/input-file", - "component/input-month", "component/input-number", "component/input-password", "component/input-search", - "component/input-telephone", "component/input-text", "component/input-week", "component/textarea", - "component/tab-title", "component/card", "component/tabs", "component/action-bar", - "component/action", "component/action-pad", "component/action-bar-grid", "component/action-pad-grid", - "component/block", "component/block-section", "component/notice", "component/modal", - "component/panel-header", "component/popover", "component/tree-item", "component/tile" + "core", + "semantic", + "component/avatar", + "component/checkbox", + "component/chip", + "component/loader", + "component/radio", + "component/rating", + "component/label", + "component/tooltip", + "component/input-time", + "component/switch", + "component/input-message", + "component/accordion-item", + "component/alert", + "component/accordion", + "component/tip", + "component/color-picker", + "component/date-picker", + "component/input-date-picker", + "component/combobox", + "component/button", + "component/dropdown", + "component/input-datetime-local", + "component/link", + "component/fab", + "component/stepper", + "component/pagination", + "component/segmented-control", + "component/stepper-item", + "component/input-email", + "component/input-file", + "component/input-month", + "component/input-number", + "component/input-password", + "component/input-search", + "component/input-telephone", + "component/input-text", + "component/input-week", + "component/textarea", + "component/tab-title", + "component/card", + "component/tabs", + "component/action-bar", + "component/action", + "component/action-pad", + "component/action-bar-grid", + "component/action-pad-grid", + "component/block", + "component/block-section", + "component/notice", + "component/modal", + "component/panel-header", + "component/popover", + "component/tree-item", + "component/tile" ], source: [], disabled: [], -}] +}]; + +const matchConfigFiles = /\/\$[.\w]+$/; +const matchExclusions = /(backup|\[|\])(?=\.\w+$)/ +const matchFiles = (filePath: string, matchList: string[]) => { + return matchList.some((value) => filePath.includes(value) && !matchExclusions.test(filePath)); +} + +type TokenRef = { + path: string; + referencedBy: string[]; +} export const run = async ( + include: string[] = [ + 'tokens/core.json', + 'tokens/semantic.json', + ...defaultThemes[0].enabled + ], source: string[] = ['tokens/**/*.json'], buildPath: string = 'build/css/', - themes: Theme[] = defaultThemes) => { + themes: Theme[] = defaultThemes +) => { + let referencedTokens: TokenRef[] = []; + + StyleDictionary.registerFormat({ + name: 'calcite/json', + formatter: (fileInfo) => { + const { dictionary, platform, options, file } = fileInfo; + return JSON.stringify(dictionary.tokens, null, 2); + } + }); + + const regexMatchSDVariable = new RegExp('\{[\w\.-]+\}', 'g'); + await registerTransforms(StyleDictionary, { expand: false }); + StyleDictionary.registerTransform({ + name: 'calcite/ref-tokens', + type: 'attribute', + matcher: (token) => { + return regexMatchSDVariable.test(token.original.value); + }, + transformer: (token, options) => { + const tokenPath = token.path.join('.'); + const matches = [...token.original.value.matchAll(/\{[\w\.-]+\}/g)]; + + debugger; + matches.forEach((match) => { + const tokenRef: TokenRef = { + path: match.slice(1, -1), + referencedBy: [tokenPath] + }; + const idx = referencedTokens.findIndex((tokenReference) => { + return tokenReference.path === `${tokenPath}`; + }); + + if (idx === -1) { + referencedTokens.push(tokenRef); + } else { + const updatedReferencedTokens = [...referencedTokens.splice(0, idx), tokenRef, ...referencedTokens.splice(idx+1)]; + referencedTokens = updatedReferencedTokens; + } + }); + + return ({ + ...token.attributes, + hasReference: token.value + }); + } + }) const _sd = StyleDictionary.extend({ source, + include, platforms: { css: { + prefix: "calcite", transforms: [ + 'calcite/ref-tokens', + 'ts/descriptionToComment', + 'ts/size/px', + 'ts/opacity', + 'ts/size/lineheight', + 'ts/type/fontWeight', + 'ts/resolveMath', + 'ts/size/css/letterspacing', + // 'ts/typography/css/shorthand', + // 'ts/border/css/shorthand', + // 'ts/shadow/css/shorthand', + 'ts/color/css/hexrgba', + 'ts/color/modifiers', 'name/cti/kebab', ], buildPath: `${buildPath}`, - files: themes.map(({name, enabled, source, disabled}) => ({ + files: themes.reduce((acc, theme) => { + const { name, enabled, source, disabled } = theme; + const options = { + enabled, + source, + disabled, + outputReferences: true, + }; + + acc.push({ + destination: `debug/${name}.css`, + format: 'calcite/json', + options, + }); + + acc.push({ destination: `${name}.css`, - format: 'css/variables', - options: { - enabled, - source, - disabled, - } - })), + format: "css/variables", + options, + }); + return acc; + }, []) } - } + }, + parsers: themes.reduce((acc, theme) => { + const transformOpts = undefined; + acc.push({ + pattern: /\.json$/, + parse: (file) => { + if (matchFiles(file.filePath, [...include, ...theme.source, ...theme.enabled])) { + const obj = JSON.parse(file.contents); + const expanded = expandComposites(obj, file.filePath, transformOpts); + + return expanded; + } else { + return {}; + } + } + }) + return acc; + }, []) }); _sd.cleanAllPlatforms(); diff --git a/tsconfig.json b/tsconfig.json index cfa99445211..49a1802ebe7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,8 +10,8 @@ "lib": ["dom", "dom.iterable", "ES6"], "module": "esnext", "moduleResolution": "node", - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, + "noUnusedParameters": false, "resolveJsonModule": true, "target": "es2020" }, From bbb56d9d8cea5cc0edd5d2848f8104ccb2d62c89 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 20 Apr 2023 14:15:48 -0700 Subject: [PATCH 543/696] WIP: token transform add attribute hasReference --- tools/token-transformer/sd-run.ts | 33 +++++++++++-------------------- 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 8cb2bc44094..dc544bdd39f 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -88,17 +88,18 @@ export const run = async ( buildPath: string = 'build/css/', themes: Theme[] = defaultThemes ) => { - let referencedTokens: TokenRef[] = []; + let referencedTokens: Record = {}; StyleDictionary.registerFormat({ name: 'calcite/json', formatter: (fileInfo) => { const { dictionary, platform, options, file } = fileInfo; + console.log(referencedTokens) return JSON.stringify(dictionary.tokens, null, 2); } }); - const regexMatchSDVariable = new RegExp('\{[\w\.-]+\}', 'g'); + const regexMatchSDVariable = /\{[\w.-]+\}/g; await registerTransforms(StyleDictionary, { expand: false }); StyleDictionary.registerTransform({ name: 'calcite/ref-tokens', @@ -108,32 +109,22 @@ export const run = async ( }, transformer: (token, options) => { const tokenPath = token.path.join('.'); - const matches = [...token.original.value.matchAll(/\{[\w\.-]+\}/g)]; + const matches = token.original.value.match(/\{[\w.-]+\}/g).map((match) => match.slice(1, -1)); + // const matches = [...token.original.value.matchAll(regexMatchSDVariable)]; - debugger; matches.forEach((match) => { - const tokenRef: TokenRef = { - path: match.slice(1, -1), - referencedBy: [tokenPath] - }; - const idx = referencedTokens.findIndex((tokenReference) => { - return tokenReference.path === `${tokenPath}`; - }); - - if (idx === -1) { - referencedTokens.push(tokenRef); + + if (referencedTokens[match]) { + referencedTokens[match].push(tokenPath) } else { - const updatedReferencedTokens = [...referencedTokens.splice(0, idx), tokenRef, ...referencedTokens.splice(idx+1)]; - referencedTokens = updatedReferencedTokens; + referencedTokens[match] = [tokenPath] } }); - - return ({ - ...token.attributes, - hasReference: token.value - }); + token.attributes['hasReferences'] = matches; + return token; } }) + const _sd = StyleDictionary.extend({ source, include, From 58f00c95d388ae40fe6543f4aa04a00795a96731 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 21 Apr 2023 07:30:13 -0700 Subject: [PATCH 544/696] WIP: add filter for isSource remove old test files --- scripts/transformer/run.test.ts | 0 scripts/transformer/transform.test.ts | 0 tools/token-transformer/sd-run.ts | 16 +++++++++------- 3 files changed, 9 insertions(+), 7 deletions(-) delete mode 100644 scripts/transformer/run.test.ts delete mode 100644 scripts/transformer/transform.test.ts diff --git a/scripts/transformer/run.test.ts b/scripts/transformer/run.test.ts deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/scripts/transformer/transform.test.ts b/scripts/transformer/transform.test.ts deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index dc544bdd39f..8ea61d6bb51 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -79,12 +79,8 @@ type TokenRef = { } export const run = async ( - include: string[] = [ - 'tokens/core.json', - 'tokens/semantic.json', - ...defaultThemes[0].enabled - ], - source: string[] = ['tokens/**/*.json'], + include: string[] = [], + source: string[] = defaultThemes[0].enabled.map(tokenFile => `tokens/${tokenFile}.json`), buildPath: string = 'build/css/', themes: Theme[] = defaultThemes ) => { @@ -94,11 +90,15 @@ export const run = async ( name: 'calcite/json', formatter: (fileInfo) => { const { dictionary, platform, options, file } = fileInfo; - console.log(referencedTokens) return JSON.stringify(dictionary.tokens, null, 2); } }); + StyleDictionary.registerFilter({ + name: 'isSource', + matcher: (token) => token.isSource, + }) + const regexMatchSDVariable = /\{[\w.-]+\}/g; await registerTransforms(StyleDictionary, { expand: false }); StyleDictionary.registerTransform({ @@ -160,12 +160,14 @@ export const run = async ( acc.push({ destination: `debug/${name}.css`, format: 'calcite/json', + filter: 'isSource', options, }); acc.push({ destination: `${name}.css`, format: "css/variables", + filter: 'isSource', options, }); return acc; From 4fe69947a4ee76e5c6b65be89a0c82a1f061471b Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Fri, 21 Apr 2023 21:34:02 +0200 Subject: [PATCH 545/696] updates --- tokens/component/button.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tokens/component/button.json b/tokens/component/button.json index 5669c1ba910..57260682825 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -44,15 +44,15 @@ } }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.regular.0h", "type": "typography" }, "inverse": { @@ -542,21 +542,21 @@ "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "$core.sizing.9", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.7", "type": "spacing" } }, From 1681e18196a22bee50361713d30f616cbfb51f7a Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Fri, 21 Apr 2023 23:26:38 +0200 Subject: [PATCH 546/696] Updates --- tokens/component/button.json | 72 ++++++++++++++++++++++++++---------- 1 file changed, 52 insertions(+), 20 deletions(-) diff --git a/tokens/component/button.json b/tokens/component/button.json index 57260682825..22c38fdfa69 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -491,17 +491,33 @@ } }, "border-radius": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" + "default": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" + "rounded": { + "sm": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } } }, "border-width": { @@ -561,17 +577,33 @@ } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } } } } From 41013fa17345711867f7f1eadfce85b9269e3a30 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Sun, 23 Apr 2023 22:24:16 -0700 Subject: [PATCH 547/696] WIP: add custom format to sort tokens by ref --- config.json | 147 ------------------- package-lock.json | 13 ++ package.json | 1 + tools/token-transformer/format/javascript.ts | 45 ++++++ tools/token-transformer/sd-run.ts | 58 +++----- tools/token-transformer/utils/reverse.ts | 34 +++++ 6 files changed, 113 insertions(+), 185 deletions(-) delete mode 100644 config.json create mode 100644 tools/token-transformer/format/javascript.ts create mode 100644 tools/token-transformer/utils/reverse.ts diff --git a/config.json b/config.json deleted file mode 100644 index 8688b526ccf..00000000000 --- a/config.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "source": ["sd-tokens/**/*.json"], - "platforms": { - "scss": { - "transformGroup": "scss", - "buildPath": "build/scss/", - "files": [{ - "destination": "_variables.scss", - "format": "scss/variables" - }] - }, - "css": { - "transformGroup": "css", - "buildPath": "build/css/", - "files": [{ - "destination": "tokens.css", - "format": "css/variables" - }] - }, - "js": { - "transformGroup": "js", - "buildPath": "build/es6/", - "files": [{ - "destination": "tokens.js", - "format": "javascript/es6" - }, { - "destination": "tokens.d.ts", - "format": "typescript/es6-declarations" - }] - }, - "cjs": { - "transformGroup": "js", - "buildPath": "build/cjs/", - "files": [{ - "destination": "tokens.js", - "format": "javascript/module" - }, { - "destination": "tokens.d.ts", - "format": "typescript/es6-declarations" - }] - }, - "android": { - "transformGroup": "android", - "buildPath": "build/android/", - "files": [{ - "destination": "font_dimens.xml", - "format": "android/fontDimens" - },{ - "destination": "colors.xml", - "format": "android/colors" - }] - }, - "ios": { - "transformGroup": "ios", - "buildPath": "build/ios/", - "files": [{ - "destination": "StyleDictionaryColor.h", - "format": "ios/colors.h", - "className": "StyleDictionaryColor", - "type": "StyleDictionaryColorName", - "filter": { - "attributes": { - "category": "color" - } - } - },{ - "destination": "StyleDictionaryColor.m", - "format": "ios/colors.m", - "className": "StyleDictionaryColor", - "type": "StyleDictionaryColorName", - "filter": { - "attributes": { - "category": "color" - } - } - },{ - "destination": "StyleDictionarySize.h", - "format": "ios/static.h", - "className": "StyleDictionarySize", - "type": "float", - "filter": { - "attributes": { - "category": "size" - } - } - },{ - "destination": "StyleDictionarySize.m", - "format": "ios/static.m", - "className": "StyleDictionarySize", - "type": "float", - "filter": { - "attributes": { - "category": "size" - } - } - }] - }, - "ios-swift": { - "transformGroup": "ios-swift", - "buildPath": "build/ios-swift/", - "files": [{ - "destination": "StyleDictionary+Class.swift", - "format": "ios-swift/class.swift", - "className": "StyleDictionaryClass", - "filter": {} - },{ - "destination": "StyleDictionary+Enum.swift", - "format": "ios-swift/enum.swift", - "className": "StyleDictionaryEnum", - "filter": {} - },{ - "destination": "StyleDictionary+Struct.swift", - "format": "ios-swift/any.swift", - "className": "StyleDictionaryStruct", - "filter": {}, - "options": { - "imports": "SwiftUI", - "objectType": "struct", - "accessControl": "internal" - } - }] - }, - "ios-swift-separate-enums": { - "transformGroup": "ios-swift-separate", - "buildPath": "build/ios-swift/", - "files": [{ - "destination": "StyleDictionaryColor.swift", - "format": "ios-swift/enum.swift", - "className": "StyleDictionaryColor", - "filter": { - "attributes": { - "category": "color" - } - } - },{ - "destination": "StyleDictionarySize.swift", - "format": "ios-swift/enum.swift", - "className": "StyleDictionarySize", - "filter": { - "attributes": { - "category": "size" - } - } - }] - } - } -} diff --git a/package-lock.json b/package-lock.json index 1086a055a8c..bdf333c020f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,6 +13,7 @@ "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "jest": "^29.5.0", + "lodash-es": "^4.17.21", "style-dictionary": "^3.7.1", "token-transformer": "^0.0.27", "ts-jest": "^29.0.5", @@ -2919,6 +2920,12 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "dev": true + }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", @@ -6303,6 +6310,12 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "dev": true + }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", diff --git a/package.json b/package.json index c88db0b492f..fa7e3ada373 100644 --- a/package.json +++ b/package.json @@ -56,6 +56,7 @@ "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "jest": "^29.5.0", + "lodash-es": "^4.17.21", "style-dictionary": "^3.7.1", "token-transformer": "^0.0.27", "ts-jest": "^29.0.5", diff --git a/tools/token-transformer/format/javascript.ts b/tools/token-transformer/format/javascript.ts new file mode 100644 index 00000000000..98021ed48cf --- /dev/null +++ b/tools/token-transformer/format/javascript.ts @@ -0,0 +1,45 @@ +import { Dictionary, File, Options, Platform, TransformedToken, TransformedTokens } from "style-dictionary"; +import { reverse } from "../utils/reverse"; + +function includeReferenceTokens(token: TransformedToken, dictionary: Dictionary, tokenSets: TransformedTokens[], pointer: number) { + let value = JSON.stringify(token.value); + + if (!Array.isArray(tokenSets[pointer])) { + while (tokenSets.length <= pointer) { + tokenSets.push({}) + } + } + + const refs = dictionary.getReferences(token.original.value); + refs.forEach(ref => { + value = value.replace(ref.value, () => { + return `${ref.name}`; + }); + tokenSets = includeReferenceTokens(ref, dictionary, tokenSets, pointer + 1); + }); + + const updatedToken = { ...token, value: JSON.parse(value) } + tokenSets[pointer][token.name] = updatedToken; + + return tokenSets; +} + +export function getSortedTokens(dictionary: Dictionary, includedTokenSets: TransformedTokens[] = []): TransformedTokens[] { + return dictionary.allTokens.reduce((acc, token, idx) => { + acc = includeReferenceTokens(token, dictionary, acc, 0) + return idx === dictionary.allTokens.length - 1 ? reverse(acc) : acc; + }, includedTokenSets); +} + +export function formatJS(fileInfo: { dictionary: Dictionary, file: File, platform: Platform, options: Options}) { + const { dictionary } = fileInfo; + const sortedTokens = getSortedTokens(dictionary) + const formattedTokenSet = sortedTokens.reduce((acc, tokenSet) => { + Object.values(tokenSet).forEach((token) => { + acc.push(`export const ${token.name} = ${token.value};`) + }) + return acc; + }, []); + + return [...new Set(formattedTokenSet)].join('\n'); +} diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 8ea61d6bb51..e974e0bea7f 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -1,14 +1,15 @@ // import { registerTransforms } from '@tokens-studio/sd-transforms'; import * as StyleDictionary from 'style-dictionary'; -import { excludeParentKeys, registerTransforms } from '@tokens-studio/sd-transforms'; +import { registerTransforms } from '@tokens-studio/sd-transforms'; import { expandComposites } from './parse/expandComposites'; import { Theme } from './getThemes' +import { formatJS } from './format/javascript' + const defaultThemes: Theme[] = [{ name: 'calcite-headless', - enabled: [ + source: [ "core", "semantic", - "component/avatar", "component/checkbox", "component/chip", "component/loader", @@ -63,68 +64,51 @@ const defaultThemes: Theme[] = [{ "component/tree-item", "component/tile" ], - source: [], + enabled: [ + "component/avatar" + ], disabled: [], }]; -const matchConfigFiles = /\/\$[.\w]+$/; const matchExclusions = /(backup|\[|\])(?=\.\w+$)/ const matchFiles = (filePath: string, matchList: string[]) => { return matchList.some((value) => filePath.includes(value) && !matchExclusions.test(filePath)); } -type TokenRef = { - path: string; - referencedBy: string[]; -} - export const run = async ( - include: string[] = [], + include: string[] = defaultThemes[0].source.map(tokenFile => `tokens/${tokenFile}.json`), source: string[] = defaultThemes[0].enabled.map(tokenFile => `tokens/${tokenFile}.json`), buildPath: string = 'build/css/', themes: Theme[] = defaultThemes ) => { - let referencedTokens: Record = {}; StyleDictionary.registerFormat({ name: 'calcite/json', - formatter: (fileInfo) => { - const { dictionary, platform, options, file } = fileInfo; - return JSON.stringify(dictionary.tokens, null, 2); - } + formatter: formatJS }); StyleDictionary.registerFilter({ name: 'isSource', - matcher: (token) => token.isSource, + matcher: (token) => token.isSource || token.isEnabled, }) - const regexMatchSDVariable = /\{[\w.-]+\}/g; - await registerTransforms(StyleDictionary, { expand: false }); StyleDictionary.registerTransform({ - name: 'calcite/ref-tokens', + name: 'calcite/setSource', type: 'attribute', matcher: (token) => { - return regexMatchSDVariable.test(token.original.value); + return (!token.isSource); }, transformer: (token, options) => { - const tokenPath = token.path.join('.'); - const matches = token.original.value.match(/\{[\w.-]+\}/g).map((match) => match.slice(1, -1)); - // const matches = [...token.original.value.matchAll(regexMatchSDVariable)]; - - matches.forEach((match) => { - - if (referencedTokens[match]) { - referencedTokens[match].push(tokenPath) - } else { - referencedTokens[match] = [tokenPath] - } - }); - token.attributes['hasReferences'] = matches; + if (options && options['enableIncludes']) { + token.isEnabled = true; + } return token; } }) + // const regexMatchSDVariable = /\{[\w.-]+\}/g; + await registerTransforms(StyleDictionary, { expand: false }); + const _sd = StyleDictionary.extend({ source, include, @@ -132,7 +116,7 @@ export const run = async ( css: { prefix: "calcite", transforms: [ - 'calcite/ref-tokens', + 'calcite/setSource', 'ts/descriptionToComment', 'ts/size/px', 'ts/opacity', @@ -140,9 +124,6 @@ export const run = async ( 'ts/type/fontWeight', 'ts/resolveMath', 'ts/size/css/letterspacing', - // 'ts/typography/css/shorthand', - // 'ts/border/css/shorthand', - // 'ts/shadow/css/shorthand', 'ts/color/css/hexrgba', 'ts/color/modifiers', 'name/cti/kebab', @@ -155,6 +136,7 @@ export const run = async ( source, disabled, outputReferences: true, + enableIncludes: true, }; acc.push({ diff --git a/tools/token-transformer/utils/reverse.ts b/tools/token-transformer/utils/reverse.ts new file mode 100644 index 00000000000..cfd612101a8 --- /dev/null +++ b/tools/token-transformer/utils/reverse.ts @@ -0,0 +1,34 @@ +/* credit to LoDash https://lodash.com/docs/4.17.15#reverse */ + +/** Used for built-in method references. */ +const arrayProto = Array.prototype; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +const nativeReverse = arrayProto.reverse; + +/** + * Reverses `array` so that the first element becomes the last, the second + * element becomes the second to last, and so on. + * + * **Note:** This method mutates `array` and is based on + * [`Array#reverse`](https://mdn.io/Array/reverse). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.reverse(array); + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ +export const reverse = (array) => { + return array == null ? array : nativeReverse.call(array); +} From 86e4b2ccc577bd5757f9178b1d8f858e125bee7f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 24 Apr 2023 05:32:08 -0700 Subject: [PATCH 548/696] WIP: generate CSS & JS --- package-lock.json | 1 + package.json | 1 + tools/token-transformer/format/css.ts | 25 ++++++ tools/token-transformer/format/javascript.ts | 49 ++--------- tools/token-transformer/sd-run.ts | 81 +++++++++++-------- .../transform/nameCamelCase.ts | 5 ++ .../utils/getSortedTokens.ts | 42 ++++++++++ 7 files changed, 130 insertions(+), 74 deletions(-) create mode 100644 tools/token-transformer/format/css.ts create mode 100644 tools/token-transformer/transform/nameCamelCase.ts create mode 100644 tools/token-transformer/utils/getSortedTokens.ts diff --git a/package-lock.json b/package-lock.json index bdf333c020f..61fa38a7004 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,6 +12,7 @@ "@tokens-studio/sd-transforms": "^0.8.2", "@types/jest": "^29.5.0", "@types/node": "^18.15.11", + "change-case": "^4.1.2", "jest": "^29.5.0", "lodash-es": "^4.17.21", "style-dictionary": "^3.7.1", diff --git a/package.json b/package.json index fa7e3ada373..82102e03632 100644 --- a/package.json +++ b/package.json @@ -55,6 +55,7 @@ "@tokens-studio/sd-transforms": "^0.8.2", "@types/jest": "^29.5.0", "@types/node": "^18.15.11", + "change-case": "^4.1.2", "jest": "^29.5.0", "lodash-es": "^4.17.21", "style-dictionary": "^3.7.1", diff --git a/tools/token-transformer/format/css.ts b/tools/token-transformer/format/css.ts new file mode 100644 index 00000000000..f71313807dc --- /dev/null +++ b/tools/token-transformer/format/css.ts @@ -0,0 +1,25 @@ +import { Dictionary, File, Options, Platform, formatHelpers } from "style-dictionary"; +import { getSortedTokens } from "../utils/getSortedTokens"; + +const defaultFormatting = { + lineSeparator: '\n', +} + +export function customFormattedVariables(varInfo) { + const { format, dictionary, outputReferences = false, formatting, options} = varInfo + let {lineSeparator} = Object.assign({}, defaultFormatting, formatting); + const tokens = getSortedTokens(dictionary, options); + return tokens + .map(formatHelpers.createPropertyFormatter(varInfo)) + .filter((strVal) => { return !!strVal }) + .join(lineSeparator); +} + +export function formatCSS (fileInfo: { dictionary: Dictionary, file: File, platform: Platform, options: Options & { themeable?: boolean }}) { + const { dictionary, file, options} = fileInfo + const { outputReferences } = options; + return formatHelpers.fileHeader({file}) + + ':root {' + '\n' + + customFormattedVariables({format: 'css', dictionary, outputReferences, options }) + '\n'+ + '}' + '\n'; +} diff --git a/tools/token-transformer/format/javascript.ts b/tools/token-transformer/format/javascript.ts index 98021ed48cf..8f5154250ef 100644 --- a/tools/token-transformer/format/javascript.ts +++ b/tools/token-transformer/format/javascript.ts @@ -1,45 +1,12 @@ -import { Dictionary, File, Options, Platform, TransformedToken, TransformedTokens } from "style-dictionary"; -import { reverse } from "../utils/reverse"; - -function includeReferenceTokens(token: TransformedToken, dictionary: Dictionary, tokenSets: TransformedTokens[], pointer: number) { - let value = JSON.stringify(token.value); - - if (!Array.isArray(tokenSets[pointer])) { - while (tokenSets.length <= pointer) { - tokenSets.push({}) - } - } - - const refs = dictionary.getReferences(token.original.value); - refs.forEach(ref => { - value = value.replace(ref.value, () => { - return `${ref.name}`; - }); - tokenSets = includeReferenceTokens(ref, dictionary, tokenSets, pointer + 1); - }); - - const updatedToken = { ...token, value: JSON.parse(value) } - tokenSets[pointer][token.name] = updatedToken; - - return tokenSets; -} - -export function getSortedTokens(dictionary: Dictionary, includedTokenSets: TransformedTokens[] = []): TransformedTokens[] { - return dictionary.allTokens.reduce((acc, token, idx) => { - acc = includeReferenceTokens(token, dictionary, acc, 0) - return idx === dictionary.allTokens.length - 1 ? reverse(acc) : acc; - }, includedTokenSets); -} +import { Dictionary, File, Options, Platform, formatHelpers } from "style-dictionary"; +import { getSortedTokens } from "../utils/getSortedTokens"; export function formatJS(fileInfo: { dictionary: Dictionary, file: File, platform: Platform, options: Options}) { - const { dictionary } = fileInfo; - const sortedTokens = getSortedTokens(dictionary) - const formattedTokenSet = sortedTokens.reduce((acc, tokenSet) => { - Object.values(tokenSet).forEach((token) => { - acc.push(`export const ${token.name} = ${token.value};`) - }) - return acc; - }, []); + const { dictionary, options, file } = fileInfo; + const sortedTokens = getSortedTokens(dictionary, options) + const formattedTokenSet = sortedTokens.map((token) => { + return `export const ${token.name} = ${token.value};`; + }); - return [...new Set(formattedTokenSet)].join('\n'); + return formatHelpers.fileHeader({file}) + '\n' + [...new Set(formattedTokenSet)].join('\n'); } diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index e974e0bea7f..04066948c79 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -3,10 +3,12 @@ import * as StyleDictionary from 'style-dictionary'; import { registerTransforms } from '@tokens-studio/sd-transforms'; import { expandComposites } from './parse/expandComposites'; import { Theme } from './getThemes' -import { formatJS } from './format/javascript' +import { formatJS } from './format/javascript'; +import { formatCSS } from './format/css'; +import { nameCamelCase } from './transform/nameCamelCase'; const defaultThemes: Theme[] = [{ - name: 'calcite-headless', + name: 'calcite-component-avatar', source: [ "core", "semantic", @@ -78,47 +80,35 @@ const matchFiles = (filePath: string, matchList: string[]) => { export const run = async ( include: string[] = defaultThemes[0].source.map(tokenFile => `tokens/${tokenFile}.json`), source: string[] = defaultThemes[0].enabled.map(tokenFile => `tokens/${tokenFile}.json`), - buildPath: string = 'build/css/', + buildPath: string = 'build', themes: Theme[] = defaultThemes ) => { + await registerTransforms(StyleDictionary, { expand: false }); + StyleDictionary.registerFormat({ - name: 'calcite/json', + name: 'calcite/js', formatter: formatJS }); - - StyleDictionary.registerFilter({ - name: 'isSource', - matcher: (token) => token.isSource || token.isEnabled, + StyleDictionary.registerFormat({ + name: 'calcite/css', + formatter: formatCSS }) StyleDictionary.registerTransform({ - name: 'calcite/setSource', - type: 'attribute', - matcher: (token) => { - return (!token.isSource); - }, - transformer: (token, options) => { - if (options && options['enableIncludes']) { - token.isEnabled = true; - } - return token; - } + name: 'name/calcite/camel', + type: 'name', + transformer: nameCamelCase }) - // const regexMatchSDVariable = /\{[\w.-]+\}/g; - await registerTransforms(StyleDictionary, { expand: false }); - const _sd = StyleDictionary.extend({ source, include, platforms: { - css: { + js: { prefix: "calcite", transforms: [ - 'calcite/setSource', 'ts/descriptionToComment', - 'ts/size/px', 'ts/opacity', 'ts/size/lineheight', 'ts/type/fontWeight', @@ -126,9 +116,9 @@ export const run = async ( 'ts/size/css/letterspacing', 'ts/color/css/hexrgba', 'ts/color/modifiers', - 'name/cti/kebab', + 'name/calcite/camel', ], - buildPath: `${buildPath}`, + buildPath: `${buildPath}/js/`, files: themes.reduce((acc, theme) => { const { name, enabled, source, disabled } = theme; const options = { @@ -136,20 +126,45 @@ export const run = async ( source, disabled, outputReferences: true, - enableIncludes: true, + sourceReferencesOnly: true, }; acc.push({ - destination: `debug/${name}.css`, - format: 'calcite/json', - filter: 'isSource', + destination: `${name}.js`, + format: "calcite/js", options, }); + return acc; + }, []) + }, + css: { + prefix: "calcite", + transforms: [ + 'ts/descriptionToComment', + 'ts/size/px', + 'ts/opacity', + 'ts/size/lineheight', + 'ts/type/fontWeight', + 'ts/resolveMath', + 'ts/size/css/letterspacing', + 'ts/color/css/hexrgba', + 'ts/color/modifiers', + 'name/cti/kebab', + ], + buildPath: `${buildPath}/css/`, + files: themes.reduce((acc, theme) => { + const { name, enabled, source, disabled } = theme; + const options = { + enabled, + source, + disabled, + outputReferences: true, + sourceReferencesOnly: true, + }; acc.push({ destination: `${name}.css`, - format: "css/variables", - filter: 'isSource', + format: "calcite/css", options, }); return acc; diff --git a/tools/token-transformer/transform/nameCamelCase.ts b/tools/token-transformer/transform/nameCamelCase.ts new file mode 100644 index 00000000000..a009d2cc61f --- /dev/null +++ b/tools/token-transformer/transform/nameCamelCase.ts @@ -0,0 +1,5 @@ +import { camelCase } from 'change-case'; + +export function nameCamelCase(token, options) { + return camelCase( [options.prefix].concat(token.path).join(' ') ); +} diff --git a/tools/token-transformer/utils/getSortedTokens.ts b/tools/token-transformer/utils/getSortedTokens.ts new file mode 100644 index 00000000000..483bacc504a --- /dev/null +++ b/tools/token-transformer/utils/getSortedTokens.ts @@ -0,0 +1,42 @@ +import { Dictionary, File, Options, Platform, TransformedToken, TransformedTokens } from "style-dictionary"; +import { reverse } from "./reverse"; + +function includeReferenceTokens(token: TransformedToken, dictionary: Dictionary, tokenSets: TransformedTokens[], pointer: number) { + let value = JSON.stringify(token.value); + + if (!Array.isArray(tokenSets[pointer])) { + while (tokenSets.length <= pointer) { + tokenSets.push({}) + } + } + + const refs = dictionary.getReferences(token.original.value); + refs.forEach(ref => { + value = value.replace(ref.value, () => { + return `${ref.name}`; + }); + tokenSets = includeReferenceTokens(ref, dictionary, tokenSets, pointer + 1); + }); + + const updatedToken = { ...token, value: JSON.parse(value) } + tokenSets[pointer][token.name] = updatedToken; + + return tokenSets; +} + +export function getSortedTokens(dictionary: Dictionary, options: Options, includedTokenSets: TransformedTokens[] = []): TransformedTokens[] { + return dictionary.allTokens.reduce((acc, token, idx) => { + if(!!options.sourceReferencesOnly && token.isSource) { + acc = includeReferenceTokens(token, dictionary, acc, 0) + } else if (!options.sourceReferencesOnly) { + acc = includeReferenceTokens(token, dictionary, acc, 0) + } + + return idx === dictionary.allTokens.length - 1 ? reverse(acc) : acc; + }, includedTokenSets).reduce((acc, tokenSet) => { + Object.values(tokenSet).forEach((token) => { + acc.push(token) + }) + return [...acc]; +}, []);; +} From 64d462b2971ea058c3d6175ff2b8fe918fe7231d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 24 Apr 2023 05:33:50 -0700 Subject: [PATCH 549/696] WIP: delete very outdated scripts version --- scripts/transformer/buildStyleDictionary.ts | 50 -------- scripts/transformer/createWorkingObject.ts | 37 ------ scripts/transformer/index.ts | 75 ----------- scripts/transformer/parseThemeConfig.ts | 49 ------- scripts/transformer/run.ts | 79 ------------ scripts/transformer/sd-plugins.ts | 2 - scripts/transformer/transform.ts | 121 ------------------ scripts/transformer/utils/readFiles.ts | 7 - .../token-transformer/src/utils/parseName.ts | 25 ---- .../token-transformer}/utils/parseName.ts | 0 10 files changed, 445 deletions(-) delete mode 100644 scripts/transformer/buildStyleDictionary.ts delete mode 100644 scripts/transformer/createWorkingObject.ts delete mode 100644 scripts/transformer/index.ts delete mode 100644 scripts/transformer/parseThemeConfig.ts delete mode 100644 scripts/transformer/run.ts delete mode 100644 scripts/transformer/sd-plugins.ts delete mode 100644 scripts/transformer/transform.ts delete mode 100644 scripts/transformer/utils/readFiles.ts delete mode 100644 tools/token-transformer/src/utils/parseName.ts rename {scripts/transformer => tools/token-transformer}/utils/parseName.ts (100%) diff --git a/scripts/transformer/buildStyleDictionary.ts b/scripts/transformer/buildStyleDictionary.ts deleted file mode 100644 index ca30df52ef3..00000000000 --- a/scripts/transformer/buildStyleDictionary.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { registerTransforms } from '@tokens-studio/sd-transforms'; -import StyleDictionary from 'style-dictionary'; - -export const buildStyleDictionary = async (options: {source:string; destination: string; buildPath: string;}) => { - const {source, destination, buildPath} = options; - await registerTransforms(StyleDictionary); - - const sd = StyleDictionary.extend({ - source: [source], - platforms: { - js: { - transformGroup: 'tokens-studio', - buildPath: `${buildPath}/js/`, - files: [ - { - destination: `${destination}.js`, - format: 'javascript/es6', - }, - ], - }, - css: { - transforms: [ - 'ts/descriptionToComment', - 'ts/size/px', - 'ts/opacity', - 'ts/size/css/letterspacing', - 'ts/size/lineheight', - 'ts/type/fontWeight', - 'ts/resolveMath', - 'ts/typography/css/shorthand', - 'ts/border/css/shorthand', - 'ts/shadow/css/shorthand', - 'ts/color/css/hexrgba', - 'ts/color/modifiers', - 'name/cti/kebab', - ], - buildPath: `${buildPath}/css/`, - files: [ - { - destination: `${destination}.css`, - format: 'css/variables', - }, - ], - }, - }, - }); - - sd.cleanAllPlatforms(); - sd.buildAllPlatforms(); -} diff --git a/scripts/transformer/createWorkingObject.ts b/scripts/transformer/createWorkingObject.ts deleted file mode 100644 index f1a5367f69c..00000000000 --- a/scripts/transformer/createWorkingObject.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { join } from 'path'; -import { readFileSync } from 'fs'; - -import { ThemeConfig } from "./parseThemeConfig"; -import { ThemeObject } from "./run"; - -export const createWorkingObject = (returnObj: ThemeObject[], themeConfig: ThemeConfig) => { - const { original, ...settings } = themeConfig; - let workingObject: ThemeObject = { global: {} }; - - workingObject['$settings'] = settings; - - Object.entries(original.selectedTokenSets).forEach((tokenSet: [setFile: string, selected: 'enabled' | 'disabled' | 'source']) => { - const [ setFile, selected ] = tokenSet; - const filepath = join(settings.dir || '', `${setFile}.json`); - const dataString = readFileSync(filepath, 'utf-8'); - const data = JSON.parse(dataString); - - switch(selected){ - case 'disabled': - break; - case 'enabled': - workingObject = { ...workingObject, ...data }; - break; - case 'source': - workingObject['global'] = { ...workingObject['global'], ...data }; - break; - default: - console.error(`Unknown token set selection. Found '${selected}'. Expected 'enabled', 'disabled', or 'source'`); - break; - } - }); - - returnObj.push(workingObject); - - return returnObj; -} diff --git a/scripts/transformer/index.ts b/scripts/transformer/index.ts deleted file mode 100644 index 13e4bb9c697..00000000000 --- a/scripts/transformer/index.ts +++ /dev/null @@ -1,75 +0,0 @@ -// -- transform(themes file path, tokensDir?: string) -- -// read [themes] file at themes file path - // create [fileName] from [theme].name - // create workingObject - // create a dictionary of [soruce, enabled] from selectedTokenSets - // for source set - // create global object - // read each object from source set look for "value" or a value that is not an object - // check for string starting with "$" - // if true - // [1] - // add full object to global object - // for each enabled set - // read each object from enabled set look for "value" or a value that is not an object - // check for string starting with "$" - // if true - // -- [1] lookupVariable(str:string, globals: Record, { setGlobal: boolean; }) - // [1] lookupVariable from (global object) - // if found - // if variable also has a string starting with "$" - // loop [1] lookupVariable(var, global object, setGlobal = false) - // else - // check loop prop "source" - // if true - // replace string with variable value - // else - // replace string starting with "$" to "{string}" (the SD var way) - // check loop prop "setGlobal" - // if true - // add variable to workingObject.global - // else - // throw an error - - // try [1] lookupVariable(string starting with "$", global object, { setGlobal: true }) - // catch error - // [1] lookupVariable(string starting with "$", working object, { setGlobal: true }) - // catch error - // log an error informing the user the variable was not found - // add each object from enabled set to workingObject - // wait for all objects in enabled set to be read - // save workingObject to temp/[fileName].temp.json - // configure SD to use temp/[fileName].temp.json - // should output expected final assets to outputPath/[fileName].[ext] - - - - - -// calcite-transform config - // input dir - // output dir - // themes - // theme-file - // theme-array-of-objects - // name - // selectedTokenSets - // SD config customizations - -// Read Theme Files -// Style Dictionary input [ ...(path)every file in selected token set ] - -// register valueTransform - // Convert Figma variables to SD variables - -// register attributeTransform - // find name in Object.keys(theme.selectedTokenSets) - // if found - // set attributes['tokenSet'] = theme.selectedTokenSets[name] - // should be 'enabled', 'disabled', or 'source' - -// register ts transforms - -// register format - - diff --git a/scripts/transformer/parseThemeConfig.ts b/scripts/transformer/parseThemeConfig.ts deleted file mode 100644 index 972c329b4ae..00000000000 --- a/scripts/transformer/parseThemeConfig.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { join } from 'path'; -import { parseName } from './utils/parseName'; - -export const parseThemeConfigBeta = (theme: Theme, config: Config) => { - const globalTokens = new Set(); - globalTokens.add({ name: 'global' }); - const workingTokens = new Set(); - workingTokens.add({ name: theme.name, path: config.output}); - const { enabled, source } = getTokenSet(theme.selectedTokenSets); - - source.forEach((filePath) => { - const rawDataStr = readFileSync(join(config.input, `${globalTokens[0].name}.json`), 'utf-8'); - // @ts-expect-error - TS is in conflict with itself. It wants the first param to be "this" but then the other error "An arrow function cannot have a 'this' parameter." will appear. In my opinion using "this" is the more incorrect pattern here. - const data: Record = JSON.parse(rawDataStr, handleFigmaTokenUpdate(true)); - globalTokens.add(data); - }); - - enabled.forEach((filePath) => { - const rawDataStr = readFileSync(join(config.input, `${workingTokens[0].name}.json`), 'utf-8'); - // @ts-expect-error - TS is in conflict with itself. It wants the first param to be "this" but then the other error "An arrow function cannot have a 'this' parameter." will appear. In my opinion using "this" is the more incorrect pattern here. - const data: Record = JSON.parse(rawDataStr, handleFigmaTokenUpdate(false)); - workingTokens.add(data); - }); -} - -export type FigmaThemeConfig = { - "id": string; - "name": string; - "selectedTokenSets": Record; - "$figmaStyleReferences": Record; -} - -export type ThemeConfig = { name: string; original: FigmaThemeConfig; dir: string } - -export const parseThemeConfig = (returnObj: ThemeConfig, themeConfig: FigmaThemeConfig) => { - const { name } = themeConfig; - - // Object.entries(selectedTokenSets).forEach(([key, value]) => { - // const filepath = join(returnObj.dir || '', `${key}.json`); - // if ( !returnObj[value] ) { - // returnObj[value] = []; - // } - // returnObj[value]?.push(filepath); - // }); - - returnObj['original'] = themeConfig; - returnObj['name'] = parseName(name); - return returnObj; -} diff --git a/scripts/transformer/run.ts b/scripts/transformer/run.ts deleted file mode 100644 index 4ffca478cf5..00000000000 --- a/scripts/transformer/run.ts +++ /dev/null @@ -1,79 +0,0 @@ -import { writeFileSync, mkdirSync, existsSync, rmdirSync } from 'fs'; -import { join } from 'path'; - -import { readFilToJSON } from "./utils/readFiles"; -import { parseThemeConfig, ThemeConfig } from "./parseThemeConfig"; -import { createWorkingObject } from "./createWorkingObject"; -import { buildStyleDictionary } from "./buildStyleDictionary"; - -export type ThemeObject = { global: Record, [key: string]: Record}; -const workingThemeObject: ThemeObject[] = []; - -export const readThemesFile = (source: string, buildPath: string) => { - const fileData = readFilToJSON(source); - - // Expect the shape of fileData to match the shape of Figma's $themes.json file - if (Array.isArray(fileData) && typeof fileData[0].id === 'string') { - const tempDir = join(process.cwd(), 'temp'); - - if (buildPath && !existsSync(buildPath)){ - mkdirSync(buildPath); - } - if (tempDir && !existsSync(tempDir)){ - mkdirSync(tempDir); - } - - const themes = [...new Set(fileData.reduce(parseThemeConfig, { name: '', original: {}, dir: buildPath })) as Set]; - const workingObjects = themes.reduce(createWorkingObject, workingThemeObject); - const tokensPromise = workingObjects.map(async (tokenSet) => { - const { $settings, global, ...tokens } = tokenSet; - const { name } = $settings; - const tempFile = join(tempDir, `${$settings.name}.json`); - writeFileSync(tempFile, JSON.stringify({ global, ...tokens }, null, 2)); - return buildStyleDictionary({source, destination: name, buildPath}); - }); - - await Promise.all(tokensPromise); - - rmdirSync(tempDir); - } -} - -/** - * - * @param filePath - the file relative to the current working directory which should be used to create files - * @param dir - the directory for source tokens. If not provided the file root will be assumed to be where tokens are - */ -export const run = async (source: string, buildPath: string) => { - const fileData = readFilToJSON(source); - - if (Array.isArray(fileData) && typeof fileData[0].id === 'string') { - const tempDir = join(process.cwd(), 'temp'); - - if (buildPath && !existsSync(buildPath)){ - mkdirSync(buildPath); - } - if (tempDir && !existsSync(tempDir)){ - mkdirSync(tempDir); - } - - const themes = [...new Set(fileData.reduce(parseThemeConfig, { name: '', original: {}, dir: buildPath })) as Set]; - const workingObjects = themes.reduce(createWorkingObject, workingThemeObject); - const tokensPromise = workingObjects.map(async (tokenSet) => { - const { $settings, global, ...tokens } = tokenSet; - const { name } = $settings; - const tempFile = join(tempDir, `${$settings.name}.json`); - writeFileSync(tempFile, JSON.stringify({ global, ...tokens }, null, 2)); - return buildStyleDictionary(tempFile, name, buildPath); - }); - - await Promise.all(tokensPromise); - - rmdirSync(tempDir); - } else { - // Assume we are working with a single file transform - // parse file directly with Style Dictionary - const name = filePath.match(/($^)/); - await buildStyleDictionary(filePath, name, buildPath); - } -} diff --git a/scripts/transformer/sd-plugins.ts b/scripts/transformer/sd-plugins.ts deleted file mode 100644 index bfc6ea6b7b2..00000000000 --- a/scripts/transformer/sd-plugins.ts +++ /dev/null @@ -1,2 +0,0 @@ -// Style Dictionary plugins -// convert figma token studio variables to SD tokens diff --git a/scripts/transformer/transform.ts b/scripts/transformer/transform.ts deleted file mode 100644 index a660ca2222b..00000000000 --- a/scripts/transformer/transform.ts +++ /dev/null @@ -1,121 +0,0 @@ -import { join } from 'path'; -import { readFileSync, createWriteStream } from 'fs'; - -export type Theme = { - id: string, - name: string, - selectedTokenSets: TokenSet, - $figmaStyleReferences: Record -} - -export type Config = { - input: string, - output: string, -} - -export type Tokens = Record - -export function createFileName(str: string) { - return ''; -} - -export type TokenSet = Record; -export function getTokenSet(selectedTokenSets: Theme['selectedTokenSets']) { - const dict: Record<'enabled'|'source', string[]>= { enabled: [], source: [] }; - return Object.entries(selectedTokenSets).reduce((acc, [tokenFileName, status]) => { - switch(status) { - case 'enabled': - acc.enabled.push(tokenFileName) - break; - case 'source': - acc.source.push(tokenFileName) - break; - default: - break; - } - return acc; - }, dict); -} - -export const regexMatchVariable = /^\$/; -export function findVariable(obj, key, value) { - if (typeof obj[key] === 'string') { - if ( regexMatchVariable.test(obj[key]) ) { - - } - } -} - -export function jsonParseMatcher (matchingGroup: RegExp, updateMatch: (_: any, key: string, val: string) => any) { - return (_: any, key: string, val: string) => { - debugger; - if (typeof val === 'string') { - const match = Array.from(val.matchAll(matchingGroup)); - if (match.length > 0) { - // handle Figma Token Variable matching - _ = updateMatch(_, key, val); - } - } - - return _; - }; -} - -// handle Figma Token Variable matching - replace with style-dictionary var structure -export function handleFigmaTokenUpdate(isSource = false) { return (_: any, key: string, val: string) => { - const matchingGroup = new RegExp(/\$[.\w-]+/g); - const newValue = val; - - if (typeof newValue === 'string') { - const matches = [...newValue.matchAll(matchingGroup)]; - if (matches.length > 0) { - matches.forEach((match) => { - const figmaVariable = match[0]; - if(isSource) { - if() { - - } - } else { - newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); - } - }); - } - } - - return newValue; -}} - -export type TokenObjectValue = string | number | Record | (string | number | Record)[]; - -// export const handleTheme = (theme: Theme, config: Config) => { -// const globalTokens = new Set(); -// globalTokens.add({ name: 'global' }); -// const workingTokens = new Set(); -// workingTokens.add({ name: theme.name, path: config.output}); -// const { enabled, source } = getTokenSet(theme.selectedTokenSets); - -// source.forEach((filePath) => { -// const rawDataStr = readFileSync(join(config.input, `${globalTokens[0].name}.json`), 'utf-8'); -// // @ts-expect-error - TS is in conflict with itself. It wants the first param to be "this" but then the other error "An arrow function cannot have a 'this' parameter." will appear. In my opinion using "this" is the more incorrect pattern here. -// const data: Record = JSON.parse(rawDataStr, handleFigmaTokenUpdate(true)); -// globalTokens.add(data); -// }); - -// enabled.forEach((filePath) => { -// const rawDataStr = readFileSync(join(config.input, `${workingTokens[0].name}.json`), 'utf-8'); -// // @ts-expect-error - TS is in conflict with itself. It wants the first param to be "this" but then the other error "An arrow function cannot have a 'this' parameter." will appear. In my opinion using "this" is the more incorrect pattern here. -// const data: Record = JSON.parse(rawDataStr, handleFigmaTokenUpdate(false)); -// workingTokens.add(data); -// }); -// } - -/** - * - * @param themesFilePath - the file relative to the current working directory which should be used to create files - * @param tokensDir - the directory for source tokens. If not provided the file root will be assumed to be where tokens are - */ - - - - - diff --git a/scripts/transformer/utils/readFiles.ts b/scripts/transformer/utils/readFiles.ts deleted file mode 100644 index 7b0bb0107b0..00000000000 --- a/scripts/transformer/utils/readFiles.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { readFileSync } from 'fs'; -import { join } from 'path'; - -export const readFilToJSON = (filePath: string, dir?: string) => { - const file = readFileSync(join(dir || '', filePath), 'utf-8'); - return JSON.parse(file); -} diff --git a/tools/token-transformer/src/utils/parseName.ts b/tools/token-transformer/src/utils/parseName.ts deleted file mode 100644 index 371ca2fd251..00000000000 --- a/tools/token-transformer/src/utils/parseName.ts +++ /dev/null @@ -1,25 +0,0 @@ -export function parseName(name: string, prefix?: string) { - const regexWord = /^\w+$/; - - function createNewWord (acc: string, word: string, idx: number) { - let newWord = ''; - if(idx === 0) { - if (prefix) { - const firstLetter = word.charAt(0).toUpperCase(); - const ord = word.slice(1).toLowerCase(); - newWord = prefix + firstLetter + ord; - } else { - newWord = word.toLocaleLowerCase(); - } - } else { - const firstLetter = word.charAt(0).toUpperCase(); - const ord = word.slice(1).toLowerCase(); - newWord = firstLetter + ord; - } - - acc += newWord; - return acc; - } - - return name.split(' ').filter((word) => regexWord.test(word)).reduce(createNewWord, ''); -} diff --git a/scripts/transformer/utils/parseName.ts b/tools/token-transformer/utils/parseName.ts similarity index 100% rename from scripts/transformer/utils/parseName.ts rename to tools/token-transformer/utils/parseName.ts From b56639bbabc220da1d805cf06507b73a999cd565 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 24 Apr 2023 16:17:00 +0200 Subject: [PATCH 550/696] Updates --- tokens/$metadata.json | 1 + tokens/component/button.json | 86 +++++----------- tokens/component/input-text.json | 2 +- tokens/component/time-picker.json | 163 ++++++++++++++++++++++++++++++ tokens/component/tip-manager.json | 14 +-- 5 files changed, 199 insertions(+), 67 deletions(-) create mode 100644 tokens/component/time-picker.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 5ff20261308..4160109de4f 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -61,6 +61,7 @@ "component/stepper-item", "component/switch", "component/[template-comp-name]", + "component/time-picker", "component/scrim", "component/tree-item", "component/accordion_backup", diff --git a/tokens/component/button.json b/tokens/component/button.json index 22c38fdfa69..5669c1ba910 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -44,15 +44,15 @@ } }, "sm": { - "value": "$semantic.font.default.regular.-2h", + "value": "$semantic.font.default.bold.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "$semantic.font.default.bold.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.regular.0h", + "value": "$semantic.font.default.bold.0h", "type": "typography" }, "inverse": { @@ -491,33 +491,17 @@ } }, "border-radius": { - "default": { - "sm": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.none", - "type": "borderRadius" - } + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" }, - "rounded": { - "sm": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - } + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" } }, "border-width": { @@ -558,52 +542,36 @@ "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "$core.spacing.9", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "$core.spacing.11", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "$core.spacing.14", "type": "spacing" } }, "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } + "sm": { + "value": "$core.spacing.7", + "type": "spacing" }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" - } + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" } } } diff --git a/tokens/component/input-text.json b/tokens/component/input-text.json index 3116ce7c069..acc116af666 100644 --- a/tokens/component/input-text.json +++ b/tokens/component/input-text.json @@ -1,5 +1,5 @@ { - "input-telephone": { + "input-text": { "font": { "placeholder-value": { "light": { diff --git a/tokens/component/time-picker.json b/tokens/component/time-picker.json new file mode 100644 index 00000000000..18d7045ddac --- /dev/null +++ b/tokens/component/time-picker.json @@ -0,0 +1,163 @@ +{ + "time-picker": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/tip-manager.json b/tokens/component/tip-manager.json index 686c4b42a0a..734b91bf505 100644 --- a/tokens/component/tip-manager.json +++ b/tokens/component/tip-manager.json @@ -1,5 +1,5 @@ { - "tip": { + "tip-manager": { "font": { "heading": { "light": { @@ -92,12 +92,6 @@ "type": "spacing" } } - }, - "space-between": { - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - } } }, "border-width": { @@ -106,6 +100,12 @@ "type": "borderWidth" } }, + "space-between": { + "md": { + "value": "{core.spacing.none}", + "type": "spacing" + } + }, "space-around": { "top-bottom": { "md": { From 257ac342ba1e21a1969b095b90053bbb3cd4f4cb Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 24 Apr 2023 08:04:43 -0700 Subject: [PATCH 551/696] WIP: token themes all building --- .vscode/settings.json | 5 +- tokens/$themes.json | 99 +++++++++-- tokens/calcite/dark.json | 12 +- tokens/calcite/light.json | 10 +- tokens/component/accordion-item.json | 18 +- tokens/component/action.json | 20 +-- tokens/component/rating.json | 2 +- tokens/component/slider.json | 4 +- tools/token-transformer/format/css.ts | 8 +- tools/token-transformer/getThemes.ts | 34 +++- tools/token-transformer/index.test.ts | 12 ++ tools/token-transformer/index.ts | 8 +- tools/token-transformer/sd-run.test.ts | 12 -- tools/token-transformer/sd-run.ts | 161 +++++------------- .../utils/getSortedTokens.ts | 15 +- tsconfig.json | 2 +- 16 files changed, 216 insertions(+), 206 deletions(-) create mode 100644 tools/token-transformer/index.test.ts delete mode 100644 tools/token-transformer/sd-run.test.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index 962a5852742..310757d7850 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,8 +1,5 @@ { "cSpell.words": [ "typeof" - ], - "search.exclude": { - "**/node_modules": false - } + ] } diff --git a/tokens/$themes.json b/tokens/$themes.json index fb8924e7592..52ba57ea666 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -26,30 +26,63 @@ "name": "Calcite - Dark", "selectedTokenSets": { "calcite/dark": "enabled", + "component/accordion-item": "source", + "component/accordion": "source", + "component/action-bar-grid": "source", + "component/action-bar": "source", + "component/action-pad-grid": "source", + "component/action-pad": "source", + "component/action": "source", + "component/alert": "source", "component/avatar": "source", + "component/block-section": "source", + "component/block": "source", "component/button": "source", + "component/card": "source", "component/checkbox": "source", "component/chip": "source", "component/color-picker": "source", "component/combobox": "source", + "component/date-picker": "source", "component/dropdown": "source", "component/fab": "source", + "component/input-date-picker": "source", "component/input-datetime-local": "source", + "component/input-email": "source", + "component/input-file": "source", + "component/input-message": "source", + "component/input-month": "source", + "component/input-number": "source", + "component/input-password": "source", + "component/input-search": "source", + "component/input-telephone": "source", + "component/input-text": "source", + "component/input-time": "source", + "component/input-week": "source", "component/label": "source", "component/link": "source", "component/loader": "source", + "component/modal": "source", + "component/notice": "source", "component/pagination": "source", + "component/panel-header": "source", + "component/popover": "source", "component/radio": "source", "component/rating": "source", "component/segmented-control": "source", + "component/slider": "source", "component/stepper-item": "source", "component/stepper": "source", "component/switch": "source", + "component/tab-title": "source", + "component/tabs": "source", + "component/textarea": "source", + "component/tile": "source", + "component/tip": "source", "component/tooltip": "source", - "core": "source", - "semantic": "source", "component/tree-item": "source", - "component/tile": "source" + "core": "source", + "semantic": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -116,31 +149,65 @@ "id": "ed0c822a9f81dad2733717990c607c1527803a14", "name": "Calcite - Light", "selectedTokenSets": { - "core": "source", - "semantic": "source", "calcite/light": "enabled", - "component/label": "source", + "component/[template-comp-name]": "disabled", + "component/accordion-item": "source", + "component/accordion": "source", + "component/action-bar-grid": "source", + "component/action-bar": "source", + "component/action-pad-grid": "source", + "component/action-pad": "source", + "component/action": "source", + "component/alert": "source", "component/avatar": "source", + "component/block-section": "source", + "component/block": "source", + "component/button": "source", + "component/card": "source", "component/checkbox": "source", "component/chip": "source", - "component/loader": "source", - "component/radio": "source", - "component/rating": "source", - "component/tooltip": "source", + "component/color-picker": "source", "component/combobox": "source", - "component/button": "source", + "component/date-picker": "source", "component/dropdown": "source", - "component/color-picker": "source", + "component/fab": "source", + "component/input-date-picker": "source", "component/input-datetime-local": "source", + "component/input-email": "source", + "component/input-file": "source", + "component/input-message": "source", + "component/input-month": "source", + "component/input-number": "source", + "component/input-password": "source", + "component/input-search": "source", + "component/input-telephone": "source", + "component/input-text": "source", + "component/input-time": "source", + "component/input-week": "source", + "component/label": "source", "component/link": "source", - "component/fab": "source", - "component/stepper": "source", + "component/loader": "source", + "component/modal": "source", + "component/notice": "source", "component/pagination": "source", + "component/panel-header": "source", + "component/popover": "source", + "component/radio": "source", + "component/rating": "source", "component/segmented-control": "source", - "component/switch": "source", "component/stepper-item": "source", + "component/stepper": "source", + "component/switch": "source", + "component/slider": "source", + "component/tab-title": "source", + "component/tabs": "source", + "component/textarea": "source", + "component/tile": "source", + "component/tip": "source", + "component/tooltip": "source", "component/tree-item": "source", - "component/tile": "source" + "core": "source", + "semantic": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index f7f06b71362..46af4b87e5c 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -375,12 +375,6 @@ } }, "chip": { - "value-text": { - "font": { - "value": "$rating.chip.value-text.font.dark", - "type": "color" - } - }, "count": { "font": { "value": "$rating.chip.count.font.dark", @@ -420,7 +414,7 @@ }, "icon": { "default": { - "value": "$accordion-item.icon.default.dark", + "value": "$accordion-item.icon.dark", "type": "color" }, "expanded": { @@ -1272,7 +1266,7 @@ }, "icon": { "default": { - "value": "$action.icon.default.dark", + "value": "$action.icon.dark", "type": "color" }, "active": { @@ -1537,4 +1531,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index dfcdbada61d..8c0e8564fbc 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -375,12 +375,6 @@ } }, "chip": { - "value-text": { - "font": { - "value": "$rating.chip.value-text.font.light", - "type": "color" - } - }, "count": { "font": { "value": "$rating.chip.count.font.light", @@ -420,7 +414,7 @@ }, "icon": { "default": { - "value": "$accordion-item.icon.default.light", + "value": "$accordion-item.icon.light", "type": "color" }, "expanded": { @@ -1561,4 +1555,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index 3e8f1edc798..ecfb4c3d442 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -49,15 +49,13 @@ } }, "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" }, "expanded": { "light": { @@ -173,4 +171,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action.json b/tokens/component/action.json index 59b04a09b57..a30c80cd32f 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -43,15 +43,13 @@ } }, "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" }, "active": { "light": { @@ -63,7 +61,7 @@ "type": "color" } } - }, + }, "background": { "default": { "light": { @@ -188,4 +186,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/rating.json b/tokens/component/rating.json index 5d17a0d8430..f0f5e3674ea 100644 --- a/tokens/component/rating.json +++ b/tokens/component/rating.json @@ -19,7 +19,7 @@ "value": "$semantic.border.border-radius.pill", "type": "borderRadius" }, - "value-text": { + "value_text": { "font": { "sm": { "value": "$semantic.font.default.bold.-2h", diff --git a/tokens/component/slider.json b/tokens/component/slider.json index 1ece5fd7554..730942b650c 100644 --- a/tokens/component/slider.json +++ b/tokens/component/slider.json @@ -10,7 +10,7 @@ "value": "$semantic.ui.color.text.1.dark", "type": "color" }, - "sm": { + "sm": { "value": "$semantic.font.default.regular.-2h", "type": "typography" }, @@ -248,4 +248,4 @@ } } } -} \ No newline at end of file +} diff --git a/tools/token-transformer/format/css.ts b/tools/token-transformer/format/css.ts index f71313807dc..ae0bf67086f 100644 --- a/tools/token-transformer/format/css.ts +++ b/tools/token-transformer/format/css.ts @@ -10,7 +10,13 @@ export function customFormattedVariables(varInfo) { let {lineSeparator} = Object.assign({}, defaultFormatting, formatting); const tokens = getSortedTokens(dictionary, options); return tokens - .map(formatHelpers.createPropertyFormatter(varInfo)) + .map(formatHelpers.createPropertyFormatter({ + outputReferences: true, + dictionary, + format, + formatting, + })) + .map((token) => token.replaceAll('"', '')) .filter((strVal) => { return !!strVal }) .join(lineSeparator); } diff --git a/tools/token-transformer/getThemes.ts b/tools/token-transformer/getThemes.ts index c85301f1b8d..a86ebf00216 100644 --- a/tools/token-transformer/getThemes.ts +++ b/tools/token-transformer/getThemes.ts @@ -1,10 +1,42 @@ +import { readFileSync } from "fs"; +import { parseName } from "./utils/parseName"; +import { Options } from "style-dictionary"; + +export interface ThemeFileInterface { + id: string; + name: string; + selectedTokenSets: Record; + $figmaStyleReferences?: Record; +} + export type Theme = { name: string; + fileName: string; enabled: string[]; disabled: string[]; source: string[]; + id?: string; + options?: Options } export async function getThemes( themeFile: string ): Promise { - return [] + const rawData = await readFileSync(themeFile, {encoding: 'utf-8'}); + const data: ThemeFileInterface[] = JSON.parse(rawData); + return data.map((themeConfig) => { + const themeTypes = {enabled: [], disabled: [], source: []}; + const { name, id, selectedTokenSets} = themeConfig; + const { enabled, disabled, source } = Object.entries(selectedTokenSets).reduce((acc, [key, value]) => { + acc[value].push(key); + return acc; + }, themeTypes); + + return { + name, + fileName: parseName(name), + id, + enabled, + disabled, + source, + }; + }) } diff --git a/tools/token-transformer/index.test.ts b/tools/token-transformer/index.test.ts new file mode 100644 index 00000000000..f9d5f739a25 --- /dev/null +++ b/tools/token-transformer/index.test.ts @@ -0,0 +1,12 @@ +import { existsSync } from "fs"; +import { transformTokens } from "." + +describe('Token transformer integration tests', () => { + beforeAll(() => { + return transformTokens(); + }) + + it('should build', () => { + expect(existsSync('build')).toBeTruthy(); + }) +}) diff --git a/tools/token-transformer/index.ts b/tools/token-transformer/index.ts index 08ce931fef5..cfaacc67910 100644 --- a/tools/token-transformer/index.ts +++ b/tools/token-transformer/index.ts @@ -1,5 +1,7 @@ import { run } from "./sd-run"; -import { getThemes } from './getThemes' - -getThemes('tokens/$themes.json').then((themes) => run(['tokens'], 'build', themes)) +import { getThemes } from './getThemes'; +export const transformTokens = async () => { + const themes = await getThemes('tokens/$themes.json'); + return Promise.all(themes.map((theme) => run('tokens', 'build', theme))); +} diff --git a/tools/token-transformer/sd-run.test.ts b/tools/token-transformer/sd-run.test.ts deleted file mode 100644 index d61529070bb..00000000000 --- a/tools/token-transformer/sd-run.test.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { run } from "./sd-run"; -import { existsSync } from "node:fs"; - -describe('integration tests', () => { - beforeAll(async () => { - await run(); - }); - - it('should generate a build directory', () => { - expect(existsSync('build')).toBeTruthy(); - }); -}); diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 04066948c79..4bb1c4b544f 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -6,71 +6,7 @@ import { Theme } from './getThemes' import { formatJS } from './format/javascript'; import { formatCSS } from './format/css'; import { nameCamelCase } from './transform/nameCamelCase'; - -const defaultThemes: Theme[] = [{ - name: 'calcite-component-avatar', - source: [ - "core", - "semantic", - "component/checkbox", - "component/chip", - "component/loader", - "component/radio", - "component/rating", - "component/label", - "component/tooltip", - "component/input-time", - "component/switch", - "component/input-message", - "component/accordion-item", - "component/alert", - "component/accordion", - "component/tip", - "component/color-picker", - "component/date-picker", - "component/input-date-picker", - "component/combobox", - "component/button", - "component/dropdown", - "component/input-datetime-local", - "component/link", - "component/fab", - "component/stepper", - "component/pagination", - "component/segmented-control", - "component/stepper-item", - "component/input-email", - "component/input-file", - "component/input-month", - "component/input-number", - "component/input-password", - "component/input-search", - "component/input-telephone", - "component/input-text", - "component/input-week", - "component/textarea", - "component/tab-title", - "component/card", - "component/tabs", - "component/action-bar", - "component/action", - "component/action-pad", - "component/action-bar-grid", - "component/action-pad-grid", - "component/block", - "component/block-section", - "component/notice", - "component/modal", - "component/panel-header", - "component/popover", - "component/tree-item", - "component/tile" - ], - enabled: [ - "component/avatar" - ], - disabled: [], -}]; +import { parseName } from './utils/parseName'; const matchExclusions = /(backup|\[|\])(?=\.\w+$)/ const matchFiles = (filePath: string, matchList: string[]) => { @@ -78,11 +14,20 @@ const matchFiles = (filePath: string, matchList: string[]) => { } export const run = async ( - include: string[] = defaultThemes[0].source.map(tokenFile => `tokens/${tokenFile}.json`), - source: string[] = defaultThemes[0].enabled.map(tokenFile => `tokens/${tokenFile}.json`), + tokenDir: string = 'tokens', buildPath: string = 'build', - themes: Theme[] = defaultThemes + theme: Theme ) => { + const fileName = parseName(theme.name); + const include = theme.source.map(tokenFile => `tokens/${tokenFile}.json`); + const source = theme.enabled.map(tokenFile => `tokens/${tokenFile}.json`); + const options = { + enabled: theme.enabled, + source: theme.source, + disabled: theme.disabled, + outputReferences: true, + sourceReferencesOnly: true, + }; await registerTransforms(StyleDictionary, { expand: false }); @@ -119,23 +64,11 @@ export const run = async ( 'name/calcite/camel', ], buildPath: `${buildPath}/js/`, - files: themes.reduce((acc, theme) => { - const { name, enabled, source, disabled } = theme; - const options = { - enabled, - source, - disabled, - outputReferences: true, - sourceReferencesOnly: true, - }; - - acc.push({ - destination: `${name}.js`, - format: "calcite/js", - options, - }); - return acc; - }, []) + files: [{ + destination: `${fileName}.js`, + format: "calcite/js", + options, + }] }, css: { prefix: "calcite", @@ -152,44 +85,32 @@ export const run = async ( 'name/cti/kebab', ], buildPath: `${buildPath}/css/`, - files: themes.reduce((acc, theme) => { - const { name, enabled, source, disabled } = theme; - const options = { - enabled, - source, - disabled, - outputReferences: true, - sourceReferencesOnly: true, - }; - - acc.push({ - destination: `${name}.css`, - format: "calcite/css", - options, - }); - return acc; - }, []) + files: [{ + destination: `${fileName}.css`, + format: "calcite/css", + options, + }] } }, - parsers: themes.reduce((acc, theme) => { - const transformOpts = undefined; - acc.push({ - pattern: /\.json$/, - parse: (file) => { - if (matchFiles(file.filePath, [...include, ...theme.source, ...theme.enabled])) { - const obj = JSON.parse(file.contents); - const expanded = expandComposites(obj, file.filePath, transformOpts); - - return expanded; - } else { - return {}; - } + parsers: [{ + pattern: /\.json$/, + parse: (file) => { + if (matchFiles(file.filePath, [...include, ...theme.source, ...theme.enabled])) { + const obj = JSON.parse(file.contents); + const expanded = expandComposites(obj, file.filePath); + + return expanded; + } else { + return {}; } - }) - return acc; - }, []) + } + }] }); - _sd.cleanAllPlatforms(); - _sd.buildAllPlatforms(); + try { + _sd.cleanAllPlatforms(); + _sd.buildAllPlatforms(); + } catch (error) { + console.error(error) + } } diff --git a/tools/token-transformer/utils/getSortedTokens.ts b/tools/token-transformer/utils/getSortedTokens.ts index 483bacc504a..a882697f87d 100644 --- a/tools/token-transformer/utils/getSortedTokens.ts +++ b/tools/token-transformer/utils/getSortedTokens.ts @@ -10,15 +10,16 @@ function includeReferenceTokens(token: TransformedToken, dictionary: Dictionary, } } - const refs = dictionary.getReferences(token.original.value); - refs.forEach(ref => { - value = value.replace(ref.value, () => { - return `${ref.name}`; + try { + const refs = dictionary.getReferences(token.original.value); + refs.forEach(ref => { + tokenSets = includeReferenceTokens(ref, dictionary, tokenSets, pointer + 1); }); - tokenSets = includeReferenceTokens(ref, dictionary, tokenSets, pointer + 1); - }); + } catch (error) { + console.error(error) + } - const updatedToken = { ...token, value: JSON.parse(value) } + const updatedToken = { ...token, value } tokenSets[pointer][token.name] = updatedToken; return tokenSets; diff --git a/tsconfig.json b/tsconfig.json index 49a1802ebe7..362fb7c796d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,7 @@ "declaration": false, "esModuleInterop": true, "experimentalDecorators": true, - "lib": ["dom", "dom.iterable", "ES6"], + "lib": ["dom", "dom.iterable", "es2021"], "module": "esnext", "moduleResolution": "node", "noUnusedLocals": false, From 090b3a45526bec95c9bf6f93075b49fcf4ad1143 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 24 Apr 2023 08:11:39 -0700 Subject: [PATCH 552/696] Delete package-lock.json --- .github/actions/updateIssue/package-lock.json | 1032 ----------------- 1 file changed, 1032 deletions(-) delete mode 100644 .github/actions/updateIssue/package-lock.json diff --git a/.github/actions/updateIssue/package-lock.json b/.github/actions/updateIssue/package-lock.json deleted file mode 100644 index 2d189e7dc55..00000000000 --- a/.github/actions/updateIssue/package-lock.json +++ /dev/null @@ -1,1032 +0,0 @@ -{ - "name": "updateIssue", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "dependencies": { - "@tokens-studio/sd-transforms": "^0.8.1" - } - }, - "node_modules/@tokens-studio/sd-transforms": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", - "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", - "dependencies": { - "@tokens-studio/types": "^0.2.1", - "color2k": "^2.0.1", - "colorjs.io": "^0.4.3", - "expr-eval": "^2.0.2", - "postcss-calc-ast-parser": "^0.1.4", - "style-dictionary": "^3.7.2" - }, - "engines": { - "node": ">=15.14.0" - } - }, - "node_modules/@tokens-studio/types": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", - "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==" - }, - "node_modules/@types/color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" - }, - "node_modules/balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "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==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/camel-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/capital-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "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/node_modules/ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "dependencies": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/chalk/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==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/chalk/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==" - }, - "node_modules/change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", - "dependencies": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/change-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/color2k": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", - "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==" - }, - "node_modules/colorjs.io": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", - "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==" - }, - "node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "engines": { - "node": ">= 12" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "node_modules/constant-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", - "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "node_modules/constant-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dot-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/expr-eval": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", - "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==" - }, - "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "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==" - }, - "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==", - "engines": { - "node": ">=8" - } - }, - "node_modules/header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", - "dependencies": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/header-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "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==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lower-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/no-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/param-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/pascal-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/path-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", - "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss-calc-ast-parser": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", - "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", - "dependencies": { - "postcss-value-parser": "^3.3.1" - }, - "engines": { - "node": ">=6.5" - } - }, - "node_modules/postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - }, - "node_modules/sentence-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", - "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/sentence-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/snake-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/style-dictionary": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", - "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", - "dependencies": { - "chalk": "^4.0.0", - "change-case": "^4.1.2", - "commander": "^8.3.0", - "fs-extra": "^10.0.0", - "glob": "^7.2.0", - "json5": "^2.2.0", - "jsonc-parser": "^3.0.0", - "lodash": "^4.17.15", - "tinycolor2": "^1.4.1" - }, - "bin": { - "style-dictionary": "bin/style-dictionary" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/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==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tinycolor2": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", - "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" - }, - "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", - "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/upper-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", - "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/upper-case-first/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/upper-case/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - } - }, - "dependencies": { - "@tokens-studio/sd-transforms": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.1.tgz", - "integrity": "sha512-gt5ck98HZo6fculZLX3cMq6j+NJgKrGr4KxFGqotu6jHbqFaQmnG8BhP77CsICpN/HxCR1ZfPuSwjaRBHIC/tw==", - "requires": { - "@tokens-studio/types": "^0.2.1", - "color2k": "^2.0.1", - "colorjs.io": "^0.4.3", - "expr-eval": "^2.0.2", - "postcss-calc-ast-parser": "^0.1.4", - "style-dictionary": "^3.7.2" - } - }, - "@tokens-studio/types": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", - "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==" - }, - "@types/color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "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==" - } - } - }, - "change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", - "requires": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "color2k": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", - "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==" - }, - "colorjs.io": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", - "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==" - }, - "commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "constant-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", - "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "expr-eval": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", - "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==" - }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "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==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", - "requires": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - }, - "jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "requires": { - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "requires": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { - "wrappy": "1" - } - }, - "param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "path-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", - "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "postcss-calc-ast-parser": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", - "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", - "requires": { - "postcss-value-parser": "^3.3.1" - } - }, - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - }, - "sentence-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", - "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "style-dictionary": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", - "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", - "requires": { - "chalk": "^4.0.0", - "change-case": "^4.1.2", - "commander": "^8.3.0", - "fs-extra": "^10.0.0", - "glob": "^7.2.0", - "json5": "^2.2.0", - "jsonc-parser": "^3.0.0", - "lodash": "^4.17.15", - "tinycolor2": "^1.4.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==", - "requires": { - "has-flag": "^4.0.0" - } - }, - "tinycolor2": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", - "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" - }, - "upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", - "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", - "requires": { - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "upper-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", - "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", - "requires": { - "tslib": "^2.0.3" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - } - } -} From 45c1f010d562da78cfd19d1dace9cda0c302ec82 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 24 Apr 2023 08:11:49 -0700 Subject: [PATCH 553/696] Delete package.json --- .github/actions/updateIssue/package.json | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 .github/actions/updateIssue/package.json diff --git a/.github/actions/updateIssue/package.json b/.github/actions/updateIssue/package.json deleted file mode 100644 index a33d9d95229..00000000000 --- a/.github/actions/updateIssue/package.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "dependencies": { - "@tokens-studio/sd-transforms": "^0.8.1" - } -} From 36c4295ee1f884a9c6f3146cf69926c8155396e3 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 24 Apr 2023 17:43:58 +0200 Subject: [PATCH 554/696] Updates --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/component/split-button.json | 578 +++++++++++++++++++++++++++++ 3 files changed, 589 insertions(+), 5 deletions(-) create mode 100644 tokens/component/split-button.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 4160109de4f..3f68b549fa8 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -6,6 +6,7 @@ "component/accordion", "component/action", "component/button", + "component/split-button", "component/fab", "component/checkbox", "component/chip", diff --git a/tokens/$themes.json b/tokens/$themes.json index 7e389ba5d7c..35baa8bea66 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/split-button": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/split-button": "disabled" }, "$figmaStyleReferences": {} }, @@ -48,7 +50,8 @@ "component/tooltip": "source", "core": "source", "semantic": "source", - "component/tree-item": "source" + "component/tree-item": "source", + "component/split-button": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -138,7 +141,8 @@ "component/segmented-control": "source", "component/switch": "source", "component/stepper-item": "source", - "component/tree-item": "source" + "component/tree-item": "source", + "component/split-button": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -269,7 +273,8 @@ "component/slider-histogram": "enabled", "component/slider-histogram-range": "enabled", "component/slider-range": "enabled", - "component/filter": "enabled" + "component/filter": "enabled", + "component/split-button": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json new file mode 100644 index 00000000000..5669c1ba910 --- /dev/null +++ b/tokens/component/split-button.json @@ -0,0 +1,578 @@ +{ + "button": { + "font": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "icon": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } + }, + "border": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "background": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.none", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + } + } +} \ No newline at end of file From 7eb860700f56aaebba96b3f223dfb4f9040dc693 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 24 Apr 2023 20:12:02 +0200 Subject: [PATCH 555/696] Updates --- tokens/$themes.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 35baa8bea66..ab3145e831f 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/split-button": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/split-button": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, From 214a62a220ab1cae32e35aa10986ce84c9ed44e6 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 09:14:27 +0200 Subject: [PATCH 556/696] Updates --- tokens/$themes.json | 2026 +++++++++++++++++++++++----- tokens/component/button.json | 46 +- tokens/component/split-button.json | 256 +++- 3 files changed, 1923 insertions(+), 405 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index ab3145e831f..4ea14952cbc 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -275,267 +275,267 @@ "component/split-button": "enabled" }, "$figmaStyleReferences": { - "semantic.ui.color.brand.default.light": "S:959c4907a32cb62f2227db1c3fb7a88c3eedcbb9,", - "semantic.ui.color.brand.default.dark": "S:dc08168dedb25eef87bd1146eaf8d764bbad0c56,", - "semantic.ui.color.brand.hover.light": "S:faf5709c966e8c3e501b5d375c0a45223147d85f,", - "semantic.ui.color.brand.hover.dark": "S:da912c345758b308ab1e9310b6427be9ff812189,", - "semantic.ui.color.brand.press.light": "S:815e0459774900a1340b17e1fd3385a85a7cd71b,", - "semantic.ui.color.brand.press.dark": "S:0b4b15ffbf56f8c83f5b3ee70df54490f036da3d,", - "semantic.ui.color.background.light": "S:7da3f8cc963008c21ef8a4b98987fc1bc7608962,", - "semantic.ui.color.background.dark": "S:f30a7103a5575cddf9df779c5a39613382155d4b,", - "semantic.ui.color.foreground.1.light": "S:088547e45dbeae5a451bad927fd7ad79950de9af,", - "semantic.ui.color.foreground.1.dark": "S:fe26baec57d73150a3d07dcf353f151dd47f52fa,", - "semantic.ui.color.foreground.2.light": "S:ae79d7395255179df83591ad76626a0ed1ffded9,", - "semantic.ui.color.foreground.2.dark": "S:b404c86d6282aaaee06a13446634dff7604271b1,", - "semantic.ui.color.foreground.3.light": "S:4ba4507eeefc30733de3cb38be6d13d54fc7cc6b,", - "semantic.ui.color.foreground.3.dark": "S:09a8400a2f2c78575c51443082a66817c1170e47,", - "semantic.ui.color.text.1.light": "S:58266cb06bf17a2d7291901c04049162b37941e0,", - "semantic.ui.color.text.1.dark": "S:a945f27bac73286c5c4db7f38caa27a5c60b3347,", - "semantic.ui.color.text.2.light": "S:a2c295113a0d3f592c4153f22a7729f0ce21707c,", - "semantic.ui.color.text.2.dark": "S:9ba5767ef476a6e178e6277bc6a3906c8642ad2c,", - "semantic.ui.color.text.3.light": "S:29ef8222a0b7197895349c38a6f390126dd77556,", - "semantic.ui.color.text.3.dark": "S:f2fd4863c94ce41dc4d5163fee1051dde8490612,", - "semantic.ui.color.text.inverse.light": "S:61ee82fceeaa9a75c4fa93cec856a7708f1f750f,", - "semantic.ui.color.text.inverse.dark": "S:35f3db7d69d7a23780618a533b0eaee149164ab4,", - "semantic.ui.color.text.link.light": "S:3086890b48d39271cd888fd07b4bd3f925d852b4,", - "semantic.ui.color.text.link.dark": "S:4cc6203a86c1c2ff3361ac4be61a82080878d6bf,", - "semantic.ui.color.border.1.light": "S:7f8e1e2c06b2dfcf9d0542eee8e9b2f5a65c177b,", - "semantic.ui.color.border.1.dark": "S:3a6caec0bf9d73c6a21751001a3f7d53702de358,", - "semantic.ui.color.border.2.light": "S:62699cdacc14138672282f3f6591e8ff12a5fdef,", - "semantic.ui.color.border.2.dark": "S:ae5873c9070a7ccd7d6890d25d0d980d9d0094d4,", - "semantic.ui.color.border.3.light": "S:f6c9d1e601e8704f69dff81b3f2474c919f7087b,", - "semantic.ui.color.border.3.dark": "S:d565602ab981c6651c5afe3f0456852a968da6ca,", - "semantic.ui.color.border.input.light": "S:4d8c3948bdd537b61b45ee0bd18c2eb5e5151798,", - "semantic.ui.color.border.input.dark": "S:6848d17996de90cc57609a5d073082ab28f022b6,", - "semantic.ui.color.info.default.light": "S:f3219c3a0d0db700b5877005316bec5c1ded7157,", - "semantic.ui.color.info.default.dark": "S:a544b2feb4094bd893af13fe5d2727517c8b1063,", - "semantic.ui.color.info.hover.light": "S:038bd28110a983a2657d6127588ecde46e3231d5,", - "semantic.ui.color.info.hover.dark": "S:dac709af4220b8083c053e51f36358d1b9fd7c8d,", - "semantic.ui.color.info.press.light": "S:c2c5db9f88e9abcf8cb42ba55d867421b74a8c04,", - "semantic.ui.color.info.press.dark": "S:82941083d5171966f918543e92a981104be4d819,", - "semantic.ui.color.success.default.light": "S:0ef3aed0989caeb89a4bde8a39274d6ca673ed7b,", - "semantic.ui.color.success.default.dark": "S:d1c261439f20120d528e6ac9a6d94b8104925467,", - "semantic.ui.color.success.hover.light": "S:a73b694ef9d6e74dcf8b722d4410a8508849c2de,", - "semantic.ui.color.success.hover.dark": "S:b53252f836eaafce607fe01ac41ad536f9af898e,", - "semantic.ui.color.success.press.light": "S:68a94b245f19a0587846b62be42c67ee7da3871e,", - "semantic.ui.color.success.press.dark": "S:75aaa4ffe2ac8721d0670953f01fc22f4cfc377f,", - "semantic.ui.color.warning.default.light": "S:e70ff7b2db59e015e10dfafcd8d560155e6b7349,", - "semantic.ui.color.warning.default.dark": "S:7882a29e06ab39364001a73f4430f0320f5e72f4,", - "semantic.ui.color.warning.hover.light": "S:20adaeb9015a07b41921c29c105f42e1cec11e61,", - "semantic.ui.color.warning.hover.dark": "S:f3ffcca43eb5e1c3c5f2b2cf4cd4e4e4baaa37f7,", - "semantic.ui.color.warning.press.light": "S:229130fbe231ddfcfe65755cc7bfd6fb99e65140,", - "semantic.ui.color.warning.press.dark": "S:716b513e21be5fec85c22f2e3ce4fa0adf57ab2f,", - "semantic.ui.color.danger.default.light": "S:3543b012ad4ed1abd004a4d38e27dd2930d159be,", - "semantic.ui.color.danger.default.dark": "S:4122f418ba8e2ae84f881f78e8092d1f1ef9af41,", - "semantic.ui.color.danger.hover.light": "S:fdc0f3baca92a73f8aa662e82fec0fa78b282bcc,", - "semantic.ui.color.danger.hover.dark": "S:758a09b2840fdcd310691bd76c2aeb52d25e1cbd,", - "semantic.ui.color.danger.press.light": "S:437a780a3ff5b467cf72c8323980c86280e1984b,", - "semantic.ui.color.danger.press.dark": "S:acdc478b831fc5c9a2229f144ff8e4662fcf2e2a,", - "semantic.ui.color.inverse.light": "S:9e6d9b55fc3692c8fc419775644937ffce4402fe,", - "semantic.ui.color.inverse.dark": "S:919a1c670a0b1df1d414d7bea29da8ffd723dd4f,", - "core.color.neutral.blk-000": "S:a010f8dcd734441063afe364292315dbe912c906,", - "core.color.neutral.blk-005": "S:e85992c5185ab8bd8fd3305151c22d75780c157e,", - "core.color.neutral.blk-010": "S:cf73da5e56aeedda64efd3ce2713eccbd41c91ab,", - "core.color.neutral.blk-020": "S:c1fa579b8b367506a872881d9d3a415e8e365abc,", - "core.color.neutral.blk-030": "S:ed02d42de6c2a57bd1cbb637548b5fd7a4107436,", - "core.color.neutral.blk-040": "S:e982352ffe66ce608c3feeb2ddc6e2362ee7772a,", - "core.color.neutral.blk-050": "S:472ab4093bded18db3d8cb6b903237f3fe9628b2,", - "core.color.neutral.blk-060": "S:44057bd5aca7553f1240b080903a0cfcf2386d47,", - "core.color.neutral.blk-070": "S:ef04d5645485fecb7d8b996e4c33ef79b9338a5b,", - "core.color.neutral.blk-080": "S:f43c5dcff868967fc8adcc4413d2934b8934484c,", - "core.color.neutral.blk-090": "S:966b386e4e1d76b5a6d85c8c9957e8d0eb0d1fcb,", - "core.color.neutral.blk-100": "S:67a97e52da9af49c477ba584e4fbe7aa22d7627d,", - "core.color.neutral.blk-110": "S:4e414cd94ef4870c7028e156d7721385bcb45158,", - "core.color.neutral.blk-120": "S:cebf393f611ac504eee1f3ccde4407072a98c1c7,", - "core.color.neutral.blk-130": "S:dc60775d256d49159687a665f7024effe641f1ad,", - "core.color.neutral.blk-140": "S:0cae459233aa8c2747cfff9a6a5dac36150debba,", - "core.color.neutral.blk-150": "S:9b62958b37d6ea41ed5e31f9b2366df7cebfd01d,", - "core.color.neutral.blk-160": "S:63652a60545167a055851b855bcb03a4168bd9a6,", - "core.color.neutral.blk-170": "S:9bc8205b2d44d4b5db55cf7d650faa09f498869e,", - "core.color.neutral.blk-180": "S:eed7f9cce0e295b9349c8e93a07c88a431baca64,", - "core.color.neutral.blk-190": "S:eb76569b6daa3895c1fb937da505567a9ad8e726,", - "core.color.neutral.blk-200": "S:1b52e9155ee9dcf43bc5786fb733b52431c9f033,", - "core.color.neutral.blk-210": "S:a9b20ec76c7faf28936e49c267468f0f7c96a532,", - "core.color.neutral.blk-220": "S:68037daa7b3491f5cbd72f9c161429d4891a7848,", - "core.color.neutral.blk-230": "S:193a1a63e202a7ecfd1eaf32138e5d2b8990d17c,", - "core.color.neutral.blk-235": "S:936db607440f743a7fa36a16fe1d1ea0fb194724,", - "core.color.neutral.blk-240": "S:6ce968f04daa27fb54b89b145c61714e69de8fae,", - "core.color.palette.high-saturation.blue.h-bb-010": "S:657a47efc5cff6201e876244be3af7d86b475311,", - "core.color.palette.high-saturation.blue.h-bb-020": "S:8c108cf80762e08983903fef993709002395eb7d,", - "core.color.palette.high-saturation.blue.h-bb-030": "S:c3390cfbc412051e38f275fd4b2d22d67892e034,", - "core.color.palette.high-saturation.blue.h-bb-040": "S:e7d09c0017866bf6f3de9918311d0b8220d2e5e5,", - "core.color.palette.high-saturation.blue.h-bb-050": "S:294888326cd684cab90953d576f0aa6250848a48,", - "core.color.palette.high-saturation.blue.h-bb-060": "S:1bca399130ed448fe67badee7fb4281ff9e7b991,", - "core.color.palette.high-saturation.blue.h-bb-070": "S:3ad306de21046af410510b4889bd9d14a2359e5a,", - "core.color.palette.high-saturation.blue.h-bb-080": "S:e87bdd1d3b827c4d927ca1bac6b464819616713b,", - "core.color.palette.high-saturation.blue.h-bb-090": "S:7b6b2e87c0939219757094d5669c378ea7a24f40,", - "core.color.palette.high-saturation.blue.h-bb-100": "S:12d3ceccf3b5f214b011639ba55091dd1856518e,", - "core.color.palette.high-saturation.green-blue.h-gb-010": "S:d4f61acf42efed297447f52e597769baf858cff2,", - "core.color.palette.high-saturation.green-blue.h-gb-020": "S:961970b72d2185f8fd811cd69751096c4c422a8a,", - "core.color.palette.high-saturation.green-blue.h-gb-030": "S:d1a1ddbf2431e141c1e958772f7589e7fe8c5133,", - "core.color.palette.high-saturation.green-blue.h-gb-040": "S:553318528ebc67c1cbf0a87bcc1848b92f1c86ed,", - "core.color.palette.high-saturation.green-blue.h-gb-050": "S:3ca11fa9f17d8cd6800ebdac15bce0ea43ac33bf,", - "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7cb5961a92690c20079bf59d582dab43bb689a61,", - "core.color.palette.high-saturation.green-blue.h-gb-070": "S:85c3e0b235da8a33a53fc173bc7b0c0c5fb6840a,", - "core.color.palette.high-saturation.green-blue.h-gb-080": "S:4568556659b2f4469fa026a1657a2fce75838717,", - "core.color.palette.high-saturation.green-blue.h-gb-090": "S:2ab16b979bf959c78fa17ba6b364c897923a5476,", - "core.color.palette.high-saturation.green-blue.h-gb-100": "S:ba969f984611f128dc91e2f9f1c32c40cf4275a0,", - "core.color.palette.high-saturation.green.h-gg-010": "S:b8e192dd77c9e92e236e5aedfd6ccc2a4118e2ec,", - "core.color.palette.high-saturation.green.h-gg-020": "S:473cbc3d99d58734a651dda065d0c26fb473b867,", - "core.color.palette.high-saturation.green.h-gg-030": "S:6e03345c42967553e7a8f81115a69a09d7619556,", - "core.color.palette.high-saturation.green.h-gg-040": "S:6da199c2914409b81614ca19538627638e8f9af7,", - "core.color.palette.high-saturation.green.h-gg-050": "S:177d15036b76c3664e1d4b3dcd96c9426b051565,", - "core.color.palette.high-saturation.green.h-gg-060": "S:a92a01a93146db8e98b4e177eac5cb687df68d5d,", - "core.color.palette.high-saturation.green.h-gg-070": "S:cd53529bd7d34f16a0e5622e4351682dd51d98e4,", - "core.color.palette.high-saturation.green.h-gg-080": "S:0aa8c25e8fcbe30775835267569414984f996d43,", - "core.color.palette.high-saturation.green.h-gg-090": "S:087269c4f4972de90b0ff1ce3a3bd5c9dab03db7,", - "core.color.palette.high-saturation.green.h-gg-100": "S:cc11a29b9747bbb29d6c0e8b90e5d2e2a4c37b31,", - "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:4666c265b953c56a95ba2095ac56b36f87ae5b9b,", - "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:61bdc4c0b5fdf3a0b68646ec5b193c3bfcfabb7d,", - "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:ab2e09000dfbdcc08a146d6f343b55a9834677ae,", - "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:d954451c64236575459d39d6a29e8396349f626f,", - "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:b9a7167b38614b41c47242ab62374d8eeeb440da,", - "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:7b82af7ca009a0750ad02206ae11e5aeb87a40fb,", - "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:bc3196a0637123d60e5ff7f3cee87df0a73025ed,", - "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:ccd7f78eba2a34f855bf4f4fa23f0392878098a4,", - "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:de5106828109d769aceea2db87562e6235efbde7,", - "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:464bb2d3874ceae918c683257b52b383ccf456d0,", - "core.color.palette.high-saturation.yellow.h-yy-010": "S:3b3e9fefdf2ad3cde9138953de8a9e3a624ae5c3,", - "core.color.palette.high-saturation.yellow.h-yy-020": "S:5d859b3d9efef9282f1ae85a39d649adbc0fad8b,", - "core.color.palette.high-saturation.yellow.h-yy-030": "S:e516ac7ae462efb119386efe0165a8f6378306d1,", - "core.color.palette.high-saturation.yellow.h-yy-040": "S:8d0cdb8f33de991125ff23b3e62a7c2c65d203dc,", - "core.color.palette.high-saturation.yellow.h-yy-050": "S:237963ea0149d5163a54c55fa2b003810c5c0470,", - "core.color.palette.high-saturation.yellow.h-yy-060": "S:69cceda92186ca4c785ccfdecd11dce30a6c10c7,", - "core.color.palette.high-saturation.yellow.h-yy-070": "S:6aa97443ee70be40bcd7a303c031a7fa9412fd11,", - "core.color.palette.high-saturation.yellow.h-yy-080": "S:8cdea552c693fb3c674270bee617b430612a295e,", - "core.color.palette.high-saturation.yellow.h-yy-090": "S:7693b1606b90a6abae845fc4120686eced5a3854,", - "core.color.palette.high-saturation.yellow.h-yy-100": "S:e8192bab21e6d5d710af4b02220c02b6e0da9af3,", - "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:b01d4e8ee9b968dbe01d868eb6a51697bf53ecdc,", - "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:416511a048b70f908a48966f8cb0e0c94f4f5134,", - "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:ac370314dbfa431613166375406e27b7b02bc1e4,", - "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:936c87d869a73988d61ce452ecb2969f716496b2,", - "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:d66901a241f62567be09dac68239c6460ceeb7a3,", - "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:95e7c35b22049186d2d625dd5affb8c1b6fbb8db,", - "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:a706d616a7aa1b8b1a941a95c5bf08d45278241c,", - "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:40980bebdf61f140813bfca54fe314735e6ef53e,", - "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:679ed50bf01e309db8c4e2b6d213cea531d0a5ee,", - "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:b38661723e3d1fcfb6c83ac54e0171e77fdb6fc7,", - "core.color.palette.high-saturation.orange.h-oo-010": "S:3690754d5e8c2c977bf4270ed0e7d9a3cd2e5059,", - "core.color.palette.high-saturation.orange.h-oo-020": "S:53cad790d2b3c201c1d46a6a0407085c3119ad2e,", - "core.color.palette.high-saturation.orange.h-oo-030": "S:973c3d843d9bf6f474cecee1b673e2aee54d9ef7,", - "core.color.palette.high-saturation.orange.h-oo-040": "S:f987f7cb02005334518f9a634ae25548bfb03d65,", - "core.color.palette.high-saturation.orange.h-oo-050": "S:b65b44e606cf2051218a77238789ee502488bf78,", - "core.color.palette.high-saturation.orange.h-oo-060": "S:95af8da804239a72217b15cf72ab104a2cf78d82,", - "core.color.palette.high-saturation.orange.h-oo-070": "S:85bc1ea58d934d4ba69cb0cf27ead7e9dbebfeba,", - "core.color.palette.high-saturation.orange.h-oo-080": "S:3b6e9108be05c87cf217e2be5d461cf50aaa3297,", - "core.color.palette.high-saturation.orange.h-oo-090": "S:ecb23c257403b8c400fc74ae36d61e68464cc204,", - "core.color.palette.high-saturation.orange.h-oo-100": "S:1a43e7f132ddcbd4e087e3a82882364288575795,", - "core.color.palette.high-saturation.red-orange.h-ro-010": "S:3c2d6c9bf7004483f4058054d475ade6849eaf48,", - "core.color.palette.high-saturation.red-orange.h-ro-020": "S:b49889b3bb4b3207ac7998f2c5d6d8f60598fde1,", - "core.color.palette.high-saturation.red-orange.h-ro-030": "S:cb7d3d5461892e652e15e909fe0034102e80a584,", - "core.color.palette.high-saturation.red-orange.h-ro-040": "S:c7faabb1a91674a2dbf7ee1fccf37e3a2be3106a,", - "core.color.palette.high-saturation.red-orange.h-ro-050": "S:cfc463bddc83b95b19625abdb1695d90f1e1342a,", - "core.color.palette.high-saturation.red-orange.h-ro-060": "S:c7d99b319692da127f4d3964d52452b0931c77ce,", - "core.color.palette.high-saturation.red-orange.h-ro-070": "S:83913e85c8886b61ba316951c689fff5764a7ce3,", - "core.color.palette.high-saturation.red-orange.h-ro-080": "S:8a4562108c592f7f8960fe0fb7c318bfb0298e8a,", - "core.color.palette.high-saturation.red-orange.h-ro-090": "S:f870d7fd1bf8cf6c30381792c57230e41c8288a6,", - "core.color.palette.high-saturation.red-orange.h-ro-100": "S:6cd7cbaffe818282ac56a6cc82393284ba802cf2,", - "core.color.palette.high-saturation.red.h-rr-010": "S:1d88dcb1f9483ef91663691fe3d68e9e9f5330f3,", - "core.color.palette.high-saturation.red.h-rr-020": "S:8937f83000f6394d82b9e99b597bce2683826922,", - "core.color.palette.high-saturation.red.h-rr-030": "S:69adbaa6cfa76743d6fd40b43fdeb2332b46149c,", - "core.color.palette.high-saturation.red.h-rr-040": "S:2724af90ac53c97cd70d600d288dc53c70e8d1f9,", - "core.color.palette.high-saturation.red.h-rr-050": "S:45c804ce626e6275196043a41213657476f3b01f,", - "core.color.palette.high-saturation.red.h-rr-060": "S:7b91834d2d4fc655747922a2a96a2daf116d463d,", - "core.color.palette.high-saturation.red.h-rr-070": "S:687928bfa23ce20e17e2e2e73eb2b0dc8bb775f7,", - "core.color.palette.high-saturation.red.h-rr-080": "S:2f95486a85152737dcf4e5ecf8ad6a9dc8e11210,", - "core.color.palette.high-saturation.red.h-rr-090": "S:c6c8855bd036d34a64db1c722499caf33841a24b,", - "core.color.palette.high-saturation.red.h-rr-100": "S:d971f4b5ff53e8c464a209b6e2644adb097f11b2,", - "core.color.palette.high-saturation.pink.h-pk-010": "S:db010dd866c623bd91d31e67e1785ef94de06d95,", - "core.color.palette.high-saturation.pink.h-pk-020": "S:d0af278eecd6d0d1c1f8b4986f281208184d6172,", - "core.color.palette.high-saturation.pink.h-pk-030": "S:130ebe0e25ec494f8517e695799ca9f36e45a19b,", - "core.color.palette.high-saturation.pink.h-pk-040": "S:2066ce040d7fdcfdd6e8c056065868f216f6ff40,", - "core.color.palette.high-saturation.pink.h-pk-050": "S:0c94ce63c44140fd978c4f891831744ddf0b32a6,", - "core.color.palette.high-saturation.pink.h-pk-060": "S:60f08c4d1cae4a614be5d77cd9e851debaca3093,", - "core.color.palette.high-saturation.pink.h-pk-070": "S:7ff3d344f7cdd96073316bf7f09bc392857ffb2a,", - "core.color.palette.high-saturation.pink.h-pk-080": "S:5589b8a1256ec27a0e2e63ed7bf39be37b76c75c,", - "core.color.palette.high-saturation.pink.h-pk-090": "S:abf488f3281719fa8f92f24ac43f608beccd96df,", - "core.color.palette.high-saturation.pink.h-pk-100": "S:794060349f96624cf706e143701d89165c07277b,", - "core.color.palette.high-saturation.violet-red.h-vr-010": "S:252086136838f32124509173f3f4060b09991d7e,", - "core.color.palette.high-saturation.violet-red.h-vr-020": "S:944d79b4b12c770006d898b3dab1b491874fd33c,", - "core.color.palette.high-saturation.violet-red.h-vr-030": "S:b2058b9247c8fa45106432818ec1561bf440b74a,", - "core.color.palette.high-saturation.violet-red.h-vr-040": "S:7a358c827c9db80a61bf84248433ecdd4cb704f7,", - "core.color.palette.high-saturation.violet-red.h-vr-050": "S:cff548922c56c1959b3575b3ed2a1ab73d95d270,", - "core.color.palette.high-saturation.violet-red.h-vr-060": "S:5204efd30cc0e5bb4f86baca38af9cb14be681d2,", - "core.color.palette.high-saturation.violet-red.h-vr-070": "S:fef2563f859628c4a16e599bd599a923e182667f,", - "core.color.palette.high-saturation.violet-red.h-vr-080": "S:a13e466b381d7a295d60edb6240464ede50596a9,", - "core.color.palette.high-saturation.violet-red.h-vr-090": "S:4a17811b418817a6778dea98c2830411a6cadefa,", - "core.color.palette.high-saturation.violet-red.h-vr-100": "S:9ea8adf93233df076e779295c969a173c153e3a2,", - "core.color.palette.high-saturation.violet.h-vv-010": "S:3d12136e21bb3c6fe8f0994656ad80b6186d8591,", - "core.color.palette.high-saturation.violet.h-vv-020": "S:8a1938ba08d6c93e9a61da0d5b99318fedfeecc7,", - "core.color.palette.high-saturation.violet.h-vv-030": "S:da73cc17359c71428b42731ab6cd01f6940d2fc2,", - "core.color.palette.high-saturation.violet.h-vv-040": "S:f80f469e8516c0cbc3163581f3beed531cf20590,", - "core.color.palette.high-saturation.violet.h-vv-050": "S:1c686a4308b7393c1f719ffb4bbee93a9d001682,", - "core.color.palette.high-saturation.violet.h-vv-060": "S:f9f167581f09941a66e5f63a85984c3aae92d86b,", - "core.color.palette.high-saturation.violet.h-vv-070": "S:2b2dbf251e7567b9621417c3600913140c4cec2d,", - "core.color.palette.high-saturation.violet.h-vv-080": "S:7a5633eb1e0b6a1c9eabc647f3ba1f7c38134536,", - "core.color.palette.high-saturation.violet.h-vv-090": "S:d75ec5dae057709d83032e11598f565a6ee1d349,", - "core.color.palette.high-saturation.violet.h-vv-100": "S:77ccf172966f2e8f7f49e534627ab9404a81e470,", - "core.color.palette.vibrant.blue.v-bb-120": "S:96413f1068361b84a5a2d52f311823d932c3689a,", - "core.color.palette.vibrant.blue.v-bb-140": "S:f10c26aa6d73dec49b3b7dbeddc9807bc6cf12ef,", - "core.color.palette.vibrant.blue.v-bb-160": "S:a2bee8b29cd474d5dcf5d292a453fb3a1c4eb43c,", - "core.color.palette.vibrant.blue.v-bb-180": "S:c1a31aa6798af01564256f6778e4b2e5aa7eb0df,", - "core.color.palette.vibrant.green-blue.v-gb-120": "S:82d5141977827ba11dcaa0ae6b674fba5d91f034,", - "core.color.palette.vibrant.green-blue.v-gb-140": "S:6fa9479912e3e3f6de7f94e31ac587a12844c9ab,", - "core.color.palette.vibrant.green-blue.v-gb-160": "S:87c63038c184f36181bb15fd31bc56bd69ee2239,", - "core.color.palette.vibrant.green-blue.v-gb-180": "S:6eb16f6fd31db2e297ad3d7528f85a5c6f822693,", - "core.color.palette.vibrant.green.v-gg-120": "S:cd42f5f643d535735cd2d2faf3e8345c00cb526e,", - "core.color.palette.vibrant.green.v-gg-140": "S:5ceec0fc2a9e4aaffa2ff6879bcb48c37602a536,", - "core.color.palette.vibrant.green.v-gg-160": "S:f79f40b5daed5a440adee3a42893275de1d94263,", - "core.color.palette.vibrant.green.v-gg-180": "S:6b17ee154af2eaa85564a851adf2dd348eb8fb0e,", - "core.color.palette.vibrant.yellow-green.v-yg-120": "S:515903b45138e166bf6091e30933d4f25fba5157,", - "core.color.palette.vibrant.yellow-green.v-yg-140": "S:40c43bad3feaf1f80680db8b957c18ad4814d42c,", - "core.color.palette.vibrant.yellow-green.v-yg-160": "S:e56b160227a0843beb2a6cb3e3a0fd0ccea6aac4,", - "core.color.palette.vibrant.yellow-green.v-yg-180": "S:7cc25a9f1bb271f24a9c0f5d00071c09c9f170aa,", - "core.color.palette.vibrant.yellow.v-yy-120": "S:fef35d4ab75812b732318879a053f6e385ab728c,", - "core.color.palette.vibrant.yellow.v-yy-140": "S:2abeed805967f9db35daf98423bcdf01c6346ebd,", - "core.color.palette.vibrant.yellow.v-yy-160": "S:644f047c6c04dcae9ce28c8813a28ed52ba5a348,", - "core.color.palette.vibrant.yellow.v-yy-180": "S:74a61f9645e4393e99a0fd6b091938443d8fb420,", - "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:eeef67b44804c9b16914a0507a871e1639807086,", - "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:b59dfe0721ed940d331ef1f92c349bbd1e29857d,", - "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:ce14520a187ff134ea4d473bc3c6a0dfd04e7987,", - "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:46eca8468558ec8f65095fa0d19e1e5d42992bc6,", - "core.color.palette.vibrant.red-orange.v-ro-120": "S:787b480b2864722889de5739a6be05300bab211f,", - "core.color.palette.vibrant.red-orange.v-ro-140": "S:0f5169aba915c52a9490d5ee87a034797e961ee3,", - "core.color.palette.vibrant.red-orange.v-ro-160": "S:6948bb2ca85c04141de991357246b290719bd2d6,", - "core.color.palette.vibrant.red-orange.v-ro-180": "S:9bb5ecabc85e58ecea1b9df43ca9fc052b84b3cb,", - "core.color.palette.vibrant.red.v-rr-120": "S:5a1cc66d8bad0c49bc9cb5ff99a862edd40a28c1,", - "core.color.palette.vibrant.red.v-rr-140": "S:76abf2d3b98389aaafa436bd0b69b4ac95b01cd4,", - "core.color.palette.vibrant.red.v-rr-160": "S:648f99110b3ee11ea0cce84ea14327ced763e14d,", - "core.color.palette.vibrant.red.v-rr-180": "S:2500a05957ce08d1f7a7c0186108550e60298ad6,", - "core.color.palette.vibrant.pink.v-pk-120": "S:9fc699ac54bddf4e5e967d3781525f31ca72cb72,", - "core.color.palette.vibrant.pink.v-pk-140": "S:7f02fda63c84ff1ff07012140088f06664233a26,", - "core.color.palette.vibrant.pink.v-pk-160": "S:f1bc8cf1518117c83d7665a7eebd4028a21d46dd,", - "core.color.palette.vibrant.pink.v-pk-180": "S:92ac96cd97d3a524413702368c3127242a5fd64f,", - "core.color.palette.vibrant.violet-red.v-vr-120": "S:dec1df078ce34b14be9c9d5f0ccb9dd91d3a09cb,", - "core.color.palette.vibrant.violet-red.v-vr-140": "S:d04c101bc5f18cb9ab3137dacb64673fbf8e5683,", - "core.color.palette.vibrant.violet-red.v-vr-160": "S:d3b319bde3565f763a53f7fbe31374e8cca0b2c1,", - "core.color.palette.vibrant.violet-red.v-vr-180": "S:fcc0aaa650e8b81edba1abc9b58967657355990b,", - "core.color.palette.vibrant.violet.v-vv-120": "S:777d6681fd7fb083c40d2722483d4019336be24a,", - "core.color.palette.vibrant.violet.v-vv-140": "S:929269de08b0c8bee19cf1e008e4703b7adc848a,", - "core.color.palette.vibrant.violet.v-vv-160": "S:b0def496680190c58da832c9764a4c18aa25affc,", - "core.color.palette.vibrant.violet.v-vv-180": "S:b3ec4d7c8148bb790fe370c70190aa83281076ab,", - "core.color.palette.dark.green.d-gg-410": "S:4667cc4eb973f1f4a011e61b941b467e82ec37e4,", - "core.color.palette.dark.green.d-gg-420": "S:2aeb372fe369e7b7c40880fd7622f8216739247e,", - "core.color.palette.dark.green.d-gg-430": "S:3c2d389f16cc08a775e9e67444b0606296ceee41,", - "core.color.palette.dark.yellow.d-yy-410": "S:ec907e528df1b6cba601fa14c97dce49fe2eb78b,", - "core.color.palette.dark.yellow.d-yy-420": "S:85a00177140c4811cc826cfc25aa959c574c4b17,", - "core.color.palette.dark.yellow.d-yy-430": "S:21c547462cdba1dbb43eebfd071ba863b9402dea,", - "core.color.palette.dark.red.d-rr-410": "S:c44a137339ab52dff1872b268f051178026a0d9c,", - "core.color.palette.dark.red.d-rr-420": "S:f977e3eb18d6d3426d235eb3e2dd724ee43f9dcd,", - "core.color.palette.dark.red.d-rr-430": "S:a7295992a38bb9b9149a33252208239caec1e352,", - "core.color.palette.dark.blue.d-bb-410": "S:b2065e4c7b97ce8ee9c89b4ceb7f2bf85d52ddd3,", - "core.color.palette.dark.blue.d-bb-420": "S:0643c493b159c217416b3028a2df5a88a0760b71,", - "core.color.palette.dark.blue.d-bb-430": "S:c90c5d488f85a20a5f6c5dc14b78ab22d2514fb0,", + "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", + "semantic.ui.color.brand.default.dark": "S:ff86eaace467ba24e95a7f0d1ca36e2e3dc13c36,", + "semantic.ui.color.brand.hover.light": "S:875002e4989b5f6f33ba973f006d3047f2b75ec8,", + "semantic.ui.color.brand.hover.dark": "S:5e594584b58499f6ff3a7585e6f5cfac871c883a,", + "semantic.ui.color.brand.press.light": "S:1cdfc0334a4e2836371c621c8bbe1b3eae058378,", + "semantic.ui.color.brand.press.dark": "S:913695f5e3dcf642406582f6968dd8d79ec5d4e3,", + "semantic.ui.color.background.light": "S:306f58c70f1ef21336c630a511f67008734c7695,", + "semantic.ui.color.background.dark": "S:25ddbb665ba99d050fcfd4a1eca4307eac11f69b,", + "semantic.ui.color.foreground.1.light": "S:9dd422cbb46d827a6a16c08ceec1c4b521f43d1a,", + "semantic.ui.color.foreground.1.dark": "S:ce0f83b6569b348b76c4640824e2d0a656e6275c,", + "semantic.ui.color.foreground.2.light": "S:a31002f2b1a51bd4fedafbf593735a26461b3a7d,", + "semantic.ui.color.foreground.2.dark": "S:f260c383d532520db9d12e649a880b2cfb7b8e24,", + "semantic.ui.color.foreground.3.light": "S:a9d51394e6365799ec9946a3f10d571337ad925a,", + "semantic.ui.color.foreground.3.dark": "S:b6288fc1b16cd947843f0b1d5b1fc659c3d5e4ad,", + "semantic.ui.color.text.1.light": "S:8c8054c9d1acdad360937d1e87b39868b4a30cdb,", + "semantic.ui.color.text.1.dark": "S:e21a0c3c8d5a685ab9c217f711d86e4e0d7c14b2,", + "semantic.ui.color.text.2.light": "S:5a28ed5672ec6dd9950a05742f3be134c44c2d51,", + "semantic.ui.color.text.2.dark": "S:a7860d0a07d9c233bc07a62703bf53a65a12accf,", + "semantic.ui.color.text.3.light": "S:ff1caa6a3822f4a34a62a44f8f98f63a1940fd73,", + "semantic.ui.color.text.3.dark": "S:3783278595fbf16ede70a66d09553f69b13b53a5,", + "semantic.ui.color.text.inverse.light": "S:f1e9b8d6929f1e925d6fa3f1c0964ab856d616d3,", + "semantic.ui.color.text.inverse.dark": "S:73a7f9d57384b11dc91f8bacd71aa73ee3768a17,", + "semantic.ui.color.text.link.light": "S:325ed178e00c12b2ed52ba1a50938d96244776ee,", + "semantic.ui.color.text.link.dark": "S:a5f800dd18722eff9d0f9bec0656826fedee956b,", + "semantic.ui.color.border.1.light": "S:a96ee43d9f87e727e1d163dae97e943aa9748f52,", + "semantic.ui.color.border.1.dark": "S:de10c926746cf058e312d25bbe1293923913ea3a,", + "semantic.ui.color.border.2.light": "S:c34ac7fe01960d487e1340a413d05bbbce372b8c,", + "semantic.ui.color.border.2.dark": "S:d5b02aa93adc37c2cb7f7ad09e2c9936fef1af79,", + "semantic.ui.color.border.3.light": "S:99c548dfdede861e5b4ca80c8e0e27a8ffd970b2,", + "semantic.ui.color.border.3.dark": "S:72dc2b15e848a591fce54e9a782b31cfd35f69ea,", + "semantic.ui.color.border.input.light": "S:05a96982b292c82f827ed448b7d1b1b73112f0ff,", + "semantic.ui.color.border.input.dark": "S:9b2d20bd17e3afe23b7555baba0542ed04718efa,", + "semantic.ui.color.info.default.light": "S:bc35ccb3f80820fad15134da4de9ca7ca618e760,", + "semantic.ui.color.info.default.dark": "S:8941782f2e8868518a8fba39df6bc1cea8fd42d6,", + "semantic.ui.color.info.hover.light": "S:1e1db2e409ab5142882dcca056f99a725da762e1,", + "semantic.ui.color.info.hover.dark": "S:23f26a31cedad39725a8c7549d93d5d427a3298e,", + "semantic.ui.color.info.press.light": "S:1532ddb6aa0fc5804f9c7abe7a09f5bb3171e400,", + "semantic.ui.color.info.press.dark": "S:27a9a23a009acf6a0e1491af580f2483da196ae4,", + "semantic.ui.color.success.default.light": "S:c7736e420c97f32c40c2aff9ba2dc3f35cfc4692,", + "semantic.ui.color.success.default.dark": "S:a4377176e8858a49ec7bb8466e663377b9bbe1c0,", + "semantic.ui.color.success.hover.light": "S:aadf659591f998182a22a593a71e4b8b2647ee00,", + "semantic.ui.color.success.hover.dark": "S:370f35e29a3a78b921a889a3b667ee01f0500cca,", + "semantic.ui.color.success.press.light": "S:65bb5e488168506c092284ea9943854bee4d8f60,", + "semantic.ui.color.success.press.dark": "S:c11d3d9223c0c3ffe3e32bedd5d6e04f56b6befd,", + "semantic.ui.color.warning.default.light": "S:a5f527c61c655c43a0032fe9357db48396daa2ac,", + "semantic.ui.color.warning.default.dark": "S:de4aea1e80c12dbbacaf32f2839123028a90ccb4,", + "semantic.ui.color.warning.hover.light": "S:b6f88f4f688d7ba49a0ffe93f8a3476b930f05c3,", + "semantic.ui.color.warning.hover.dark": "S:c004e1251a7e8ab8dda7d53acd286eea6b8da229,", + "semantic.ui.color.warning.press.light": "S:864044c19214493bb045462f0fead60fe6c064aa,", + "semantic.ui.color.warning.press.dark": "S:463b75a567d4495c2cb746fdc8292f0b9f661548,", + "semantic.ui.color.danger.default.light": "S:d9e760f9671a60e78405554f0d6136d5d8da409a,", + "semantic.ui.color.danger.default.dark": "S:bcd9526377574c8aa55265c56efe052ee58106e5,", + "semantic.ui.color.danger.hover.light": "S:3248a4c66f727779f4aa07e18ad426c7700efe27,", + "semantic.ui.color.danger.hover.dark": "S:3bc83d4c69f16109138ff03bd2c9305f9ca12b55,", + "semantic.ui.color.danger.press.light": "S:0317416c5e7ce3abeaf8c10beef54611785cedd1,", + "semantic.ui.color.danger.press.dark": "S:c7a0d083475a2dbaa3b2c5cee77b93b306523975,", + "semantic.ui.color.inverse.light": "S:5b474932a5a9f9d8b7c02009b7a5100290ee961c,", + "semantic.ui.color.inverse.dark": "S:a32fdc05568e2e4282b4836265cb5687e2521e91,", + "core.color.neutral.blk-000": "S:a67e6b964c87a95c90d2051109e6235f971cfed6,", + "core.color.neutral.blk-005": "S:e007de0e5126b5656ab20a44ef5542ec38d3b1b7,", + "core.color.neutral.blk-010": "S:379de77e676e45964aa0d9fa8830a22c2ddb9cef,", + "core.color.neutral.blk-020": "S:9fc3b3acbeda4ebd6eaa9694a799615de38c8f53,", + "core.color.neutral.blk-030": "S:6e7010ebd7da11ef0c8677c7b3e138d0d6b6666b,", + "core.color.neutral.blk-040": "S:2c369ccc2bd9dbf119b1a447eb6f638012b7c193,", + "core.color.neutral.blk-050": "S:e71ce79ebfa1e5e47b70284bde8298e0f428d0af,", + "core.color.neutral.blk-060": "S:c48ae66b1205086fbe209ba6e1ec0ef224315646,", + "core.color.neutral.blk-070": "S:568e210e3abc4bac9c59fd6da505eca60c2906eb,", + "core.color.neutral.blk-080": "S:c2923315fc6b3128caec7736fdfda9db5bb2dc55,", + "core.color.neutral.blk-090": "S:6e336f0e932fe1694dbf4eedd383b3d287406fbb,", + "core.color.neutral.blk-100": "S:b8cb9ddaa17b8e52cc8baa461fdb88c5070770e8,", + "core.color.neutral.blk-110": "S:dfdbe4ae031086d3977fbfc3c6690eebbb539915,", + "core.color.neutral.blk-120": "S:d02ee52cc6cbb1f64e4d644a46775b5a09c681bc,", + "core.color.neutral.blk-130": "S:4bbb7914654196933c1da872015c7993e1fcfccc,", + "core.color.neutral.blk-140": "S:7ca7950c73120089cd71e7c82d252be795b3b62e,", + "core.color.neutral.blk-150": "S:3c918f8d749ef073ead2218c7efefbf14ba6dffb,", + "core.color.neutral.blk-160": "S:f792b9890c36f6ac70f1c1ee1c3a498ef9161808,", + "core.color.neutral.blk-170": "S:411d4fc1eac1ec98b04758e6aa28d5971a769297,", + "core.color.neutral.blk-180": "S:de8af9b59e8116339ed199ec765893f2bf77bdc3,", + "core.color.neutral.blk-190": "S:3689986e44266e08bee9f4ac1f89a65af7d277d9,", + "core.color.neutral.blk-200": "S:dfc3a1482e86e0d79479102515ae1640cfda7660,", + "core.color.neutral.blk-210": "S:4b85d05798bcf10f05e1001665a163eedad46a25,", + "core.color.neutral.blk-220": "S:d38ce197c2a81d738c3aa36fb428a48cf869e172,", + "core.color.neutral.blk-230": "S:bd064ee87818ec8a5e4600cc049237ef96898eaa,", + "core.color.neutral.blk-235": "S:9c64ecf6085cefb0f09181a4f78a9dc3276a43f6,", + "core.color.neutral.blk-240": "S:566e201f296c4048cfdee8da4654fa663916fb97,", + "core.color.palette.high-saturation.blue.h-bb-010": "S:a30ba21a5a769859a1a365443ec1a7ae1c0dbc4b,", + "core.color.palette.high-saturation.blue.h-bb-020": "S:f16fe042a5395dde509e4df0f4c400a080226b2b,", + "core.color.palette.high-saturation.blue.h-bb-030": "S:e3038d72f66ffc3f0b34a95b3489a19e0de9b294,", + "core.color.palette.high-saturation.blue.h-bb-040": "S:615c572713be17f77d4c24bf0643f1a29296240e,", + "core.color.palette.high-saturation.blue.h-bb-050": "S:381bfaa859daf1e49bb01f6a3c2e2ff6ae345f87,", + "core.color.palette.high-saturation.blue.h-bb-060": "S:29331b79a5d4ac10298a460dfba3786bdd9f5254,", + "core.color.palette.high-saturation.blue.h-bb-070": "S:2b5067dd954b317dc7703d6972506b7212b63311,", + "core.color.palette.high-saturation.blue.h-bb-080": "S:a4e84e53aafa35d7114425188e4bc2fa8ca8016d,", + "core.color.palette.high-saturation.blue.h-bb-090": "S:3646636061731a38d31d34ae2ba82e7226630c0b,", + "core.color.palette.high-saturation.blue.h-bb-100": "S:b137c82c753cee8690ad1bf580378f945e59413e,", + "core.color.palette.high-saturation.green-blue.h-gb-010": "S:86acdd47f813a3b6840e5be60646304724e8e694,", + "core.color.palette.high-saturation.green-blue.h-gb-020": "S:6a141dd9a788a88b35b66538cfce91fbefbd359b,", + "core.color.palette.high-saturation.green-blue.h-gb-030": "S:21271ba54272055068ddcc604f3ac1316c7a755c,", + "core.color.palette.high-saturation.green-blue.h-gb-040": "S:e036ed954eecd1cf1060b9e347f07257db1ac99c,", + "core.color.palette.high-saturation.green-blue.h-gb-050": "S:bbbd7b4a5478ce9d9a4f47979e3f2e6c3fbfa657,", + "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7a22a2f99c80ae2bb0019677140ce920343271a9,", + "core.color.palette.high-saturation.green-blue.h-gb-070": "S:76a07fa6afbb24ffaebe9848da2d56584bca1139,", + "core.color.palette.high-saturation.green-blue.h-gb-080": "S:cfebc84ef66573b8762db2e67afa4e8707853f53,", + "core.color.palette.high-saturation.green-blue.h-gb-090": "S:f9cd0722f121b1e14620c509c50d8cc8a035af0d,", + "core.color.palette.high-saturation.green-blue.h-gb-100": "S:2b1ec16718e0780eb78c84fbc8a863132534b2db,", + "core.color.palette.high-saturation.green.h-gg-010": "S:430c8695a2cbf32dc936ec92d352440f6b8baa83,", + "core.color.palette.high-saturation.green.h-gg-020": "S:bcdae4d9ef10acd863a18e695fe4bbd8c42b124d,", + "core.color.palette.high-saturation.green.h-gg-030": "S:fa64724d0f31c0a4fd76055afff3965be2202599,", + "core.color.palette.high-saturation.green.h-gg-040": "S:5abb8c81a3309fb62ac92b87e3ce880df36f4050,", + "core.color.palette.high-saturation.green.h-gg-050": "S:bfcb47dc8a77c4cae92c5cfdaea6e6871c309405,", + "core.color.palette.high-saturation.green.h-gg-060": "S:d2e08acc23f2d375003d815977b639a57ae3c5d7,", + "core.color.palette.high-saturation.green.h-gg-070": "S:4a4ca908024da34195ae5e1f53dfca68ad8bfc16,", + "core.color.palette.high-saturation.green.h-gg-080": "S:9b853997dedc3bcbd9414437bd09ddac84b21322,", + "core.color.palette.high-saturation.green.h-gg-090": "S:96ff382489dfbf8f473d91b02e14164d3f18cb04,", + "core.color.palette.high-saturation.green.h-gg-100": "S:aefb6e4a31ab9d60b6ab5b724409c2e5bce732c0,", + "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:fb933c69a7eb66e3ace1dcc3018d8b72309b5494,", + "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:d7441f89845f36a907304a2b8d134941df2faa55,", + "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:99c2d767e05c9741f3a70061c3802f9a96ca7b92,", + "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:5b721c955c1ad2f3350c4984f126debac5cfecce,", + "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:c076b7e08ccc3cd2831039cd69140bf1ab1d718e,", + "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:263daeecd3a70bbd9b3c1ef9050317d62809156d,", + "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:d7b0744a407d03166754e72118d86c97eb5786dd,", + "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:81bfa9f3dd5ac7b5f90cc6b7ba807fa5d3b7947e,", + "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:1ad692e88dc7c0849892dd2f12fe1708e87fca1a,", + "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:6f81213d26a0986b6c8b1807a4df5b0313a5609e,", + "core.color.palette.high-saturation.yellow.h-yy-010": "S:157f230fe60c3e396f37284470728605f8515c63,", + "core.color.palette.high-saturation.yellow.h-yy-020": "S:3a54f6277edbd4c92c83d72cf7eb8663f7b1867d,", + "core.color.palette.high-saturation.yellow.h-yy-030": "S:e3c57eefabd42b3d15e138b62ccf76f673d532c0,", + "core.color.palette.high-saturation.yellow.h-yy-040": "S:430d25da287d5fd16a8f398cb2fdf1e8a93e5db4,", + "core.color.palette.high-saturation.yellow.h-yy-050": "S:45c181165c8cf7dc9a75172b796f13ea5e6865e1,", + "core.color.palette.high-saturation.yellow.h-yy-060": "S:aaf6b1686716ba60e09e442bceace906c0c3c4bc,", + "core.color.palette.high-saturation.yellow.h-yy-070": "S:5490cdcefbff5b5e61fbb460e3210b71856ccd18,", + "core.color.palette.high-saturation.yellow.h-yy-080": "S:cb4adac94e31977c65f30ecdc3f162f47350a9a5,", + "core.color.palette.high-saturation.yellow.h-yy-090": "S:fe8696238f9f363040075ebad9eadcfdb5fc4070,", + "core.color.palette.high-saturation.yellow.h-yy-100": "S:a07d09607ed87f74630d11f30c9e403e6b682b30,", + "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:d6886cfda04ce1879187dace6439eca99196bd25,", + "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:36febea423bf21b8ffade26dfbdff1d1d86b16be,", + "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:c3584d602a0f67a3648d67ddaa13444d4334c301,", + "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:ab7f0583694d290842d460dd1393c8e3903dd257,", + "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:05fd025c8c0381fcf82d5e21e9fde71f5867bc48,", + "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:e451d7ee43ff8164e124b5a13004188b668c068e,", + "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:fdb4b6f58a600d604560d871399b3bf5c02a37a8,", + "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:82c5ecfe97d81153b8cf0df3bbdf4946e0941844,", + "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:6a0862425705cdce19f742977f3555b7b4e20b88,", + "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:23a580aae4798bcff45cff8bf23a29e5cbb587cd,", + "core.color.palette.high-saturation.orange.h-oo-010": "S:9dd0ce8fa68b2f403cd935dcb85865bdaf3c7c40,", + "core.color.palette.high-saturation.orange.h-oo-020": "S:f8335f88872810e2e490e4b60f82b916c4fabdb5,", + "core.color.palette.high-saturation.orange.h-oo-030": "S:30b22a97e608f144d24de0a31361b51ce0326e8c,", + "core.color.palette.high-saturation.orange.h-oo-040": "S:819bee7a96e0cbc320a63f1e202847e617cafa0f,", + "core.color.palette.high-saturation.orange.h-oo-050": "S:f565589dd9c7ecbe21fd6b16af88fec443a80757,", + "core.color.palette.high-saturation.orange.h-oo-060": "S:fc495462d9c23608df5d3a2f33dd6ca7c1e54ea6,", + "core.color.palette.high-saturation.orange.h-oo-070": "S:2821799e9639eccd07992e27c4e6694ae02bf6d0,", + "core.color.palette.high-saturation.orange.h-oo-080": "S:728bb41c33fd83583676baf7033dca60bdd741d6,", + "core.color.palette.high-saturation.orange.h-oo-090": "S:31b0367b23ffd087b0fd223313d735f05c36f7a6,", + "core.color.palette.high-saturation.orange.h-oo-100": "S:9997f139bbc6b8d1cf2c9ff289ff2311bfcc8c0f,", + "core.color.palette.high-saturation.red-orange.h-ro-010": "S:01ff093ba2e7b3dc3221f560f2448f25f34208ab,", + "core.color.palette.high-saturation.red-orange.h-ro-020": "S:723100344827d512b6a2cdd6c7fcae745c7aebd5,", + "core.color.palette.high-saturation.red-orange.h-ro-030": "S:7dffa36a03dbc41ebb16e38f018cb82a2094c275,", + "core.color.palette.high-saturation.red-orange.h-ro-040": "S:5e070803b21a2c5647a6e9fa17671aaae548d6d2,", + "core.color.palette.high-saturation.red-orange.h-ro-050": "S:5f3ba5da8df574574b3fd2b1ab6d2ebdc4c5fb19,", + "core.color.palette.high-saturation.red-orange.h-ro-060": "S:4a71ecd5bf9ed15033f518e68bcfab66d7fb960a,", + "core.color.palette.high-saturation.red-orange.h-ro-070": "S:6d7d6dc19cdd30aaabf0c11637edad931b5feb3e,", + "core.color.palette.high-saturation.red-orange.h-ro-080": "S:4d5899b3aa7be56bf41d2dbfa3b95e825c8e0114,", + "core.color.palette.high-saturation.red-orange.h-ro-090": "S:d3593a25f6453c441e3c2e3d517f7980f3428c60,", + "core.color.palette.high-saturation.red-orange.h-ro-100": "S:91a05bf108f4f03541653f686a2078fd2a5672ed,", + "core.color.palette.high-saturation.red.h-rr-010": "S:72bf4c6626a6aadaa819d25c4081562f06fa12a2,", + "core.color.palette.high-saturation.red.h-rr-020": "S:15ddbfa8e4581df9079cde86d7d0fdfe5eb34b1e,", + "core.color.palette.high-saturation.red.h-rr-030": "S:9e593aa8f214b38e98522453c863ba486475382e,", + "core.color.palette.high-saturation.red.h-rr-040": "S:cf51d25a58cb8bec4ef72b73d550c88ad41c41dc,", + "core.color.palette.high-saturation.red.h-rr-050": "S:0429df1a99a360307086093dca26f12feba95567,", + "core.color.palette.high-saturation.red.h-rr-060": "S:df92c84bbe47af0a506a11389ffa25980ddbf71d,", + "core.color.palette.high-saturation.red.h-rr-070": "S:3698204b2caa7d34f77be9ddba8fcc76321b2821,", + "core.color.palette.high-saturation.red.h-rr-080": "S:c77c87f684559adb69e175e12897529c3645ddf1,", + "core.color.palette.high-saturation.red.h-rr-090": "S:093ed2efb025d6d2f406dcdac508de589658437e,", + "core.color.palette.high-saturation.red.h-rr-100": "S:02824a1c296eabc6218cf6bb7daeb1dcde36fac4,", + "core.color.palette.high-saturation.pink.h-pk-010": "S:c027bd4128a5857b7cbedba5209e6c3aabc3de7a,", + "core.color.palette.high-saturation.pink.h-pk-020": "S:87bf40f484e94e4021da62d8b092c37d7edab62b,", + "core.color.palette.high-saturation.pink.h-pk-030": "S:91afaaa48482a5e2b7172933e8564fdba0469a12,", + "core.color.palette.high-saturation.pink.h-pk-040": "S:802fed85b89883a05fd3ea3174504d923a99ff29,", + "core.color.palette.high-saturation.pink.h-pk-050": "S:476e1afaadd97e03ec2eda43c296ba05d2a616f8,", + "core.color.palette.high-saturation.pink.h-pk-060": "S:eb4f19e47f82b5bdcb4455d330e63eb9f8ef1e06,", + "core.color.palette.high-saturation.pink.h-pk-070": "S:1cf5b4431ac55c0284ece0b3506136ca63e128cc,", + "core.color.palette.high-saturation.pink.h-pk-080": "S:b680dba4a6e7a534893958e1a09b45da536164f5,", + "core.color.palette.high-saturation.pink.h-pk-090": "S:9211d5dd09ee4a12c6f559870ecb4ca3273e7d38,", + "core.color.palette.high-saturation.pink.h-pk-100": "S:fea2af5d6af09bf9ca344cc8a8b59720ff57e043,", + "core.color.palette.high-saturation.violet-red.h-vr-010": "S:d9a5369ff6ac626201326882679bcd4663801de9,", + "core.color.palette.high-saturation.violet-red.h-vr-020": "S:e1f2e31077d7dc45b8543998d1b79fbd154cc441,", + "core.color.palette.high-saturation.violet-red.h-vr-030": "S:9e1a260e10913714d0d9bbcbdb6474da33d9ac49,", + "core.color.palette.high-saturation.violet-red.h-vr-040": "S:dbfa38e55babf7dda9961547f0eb16e67a8f0265,", + "core.color.palette.high-saturation.violet-red.h-vr-050": "S:32dae974bd24d671c83feb6465949a849294ab06,", + "core.color.palette.high-saturation.violet-red.h-vr-060": "S:afbb6f3f9dfece8273608c1f00c980150ba1c277,", + "core.color.palette.high-saturation.violet-red.h-vr-070": "S:8ed7669af254c3fe12310ab115f77b7227366a06,", + "core.color.palette.high-saturation.violet-red.h-vr-080": "S:f4451432a831473289c70f7e7282e6dbde9ccb0a,", + "core.color.palette.high-saturation.violet-red.h-vr-090": "S:7fd97dfa464285509bf40fc039af159d56f579bc,", + "core.color.palette.high-saturation.violet-red.h-vr-100": "S:90fd71cf8895dcb1cd034bd0580aa225950aca34,", + "core.color.palette.high-saturation.violet.h-vv-010": "S:a4fd8438ca3d2c0f65c436a971d30284c488fb58,", + "core.color.palette.high-saturation.violet.h-vv-020": "S:500d0566c62490d66a912c0def0642822ebbe276,", + "core.color.palette.high-saturation.violet.h-vv-030": "S:08f873b4f74a821fe521827382bed72817884c07,", + "core.color.palette.high-saturation.violet.h-vv-040": "S:8a4a73cdf4253aa6ad58d663e97a2999cfb0bd5b,", + "core.color.palette.high-saturation.violet.h-vv-050": "S:244f69540b20db975232e019cfe2e81e4fb82695,", + "core.color.palette.high-saturation.violet.h-vv-060": "S:b39c473f516e51267bca75819d192b6ea3f2f020,", + "core.color.palette.high-saturation.violet.h-vv-070": "S:c66eafbfef67edcfb9e898e636cd9ff49d29e20b,", + "core.color.palette.high-saturation.violet.h-vv-080": "S:3973dd0fe8d726ed4265989b0b8c8d206077a2d0,", + "core.color.palette.high-saturation.violet.h-vv-090": "S:1d48293e45fac39396eea9a16c52258d1b7447d5,", + "core.color.palette.high-saturation.violet.h-vv-100": "S:f2f832092ddc91fd4d4f417c4ca5c9d1fc1ba280,", + "core.color.palette.vibrant.blue.v-bb-120": "S:1b912737566790521b736fc0cb5790e0d1758549,", + "core.color.palette.vibrant.blue.v-bb-140": "S:7d847def6e5074a8cdd43baf422978ac08d09741,", + "core.color.palette.vibrant.blue.v-bb-160": "S:ce4e4c4afaa37ac070a03dc8ea77b6e26f23f8a9,", + "core.color.palette.vibrant.blue.v-bb-180": "S:aeaa8f622e7673b47171d53cef6e5d305c52cdad,", + "core.color.palette.vibrant.green-blue.v-gb-120": "S:e545cc972786b8b866be0af383adac42b93490c0,", + "core.color.palette.vibrant.green-blue.v-gb-140": "S:24ef68b4113dd8865413e7b7fedbc975f73b1844,", + "core.color.palette.vibrant.green-blue.v-gb-160": "S:26257d454cefefa4b0e0392539b29967da80cd03,", + "core.color.palette.vibrant.green-blue.v-gb-180": "S:41faa42c025c8b0835b46833622ef8d566ac0ef8,", + "core.color.palette.vibrant.green.v-gg-120": "S:3c32e87b40218532cf223d4f25ddd8e585252178,", + "core.color.palette.vibrant.green.v-gg-140": "S:5c0a317d12ecd5afa4821a63bf48bfcff4b66908,", + "core.color.palette.vibrant.green.v-gg-160": "S:3c7e9cc671a86bcd48bba238963182d8fd5dec84,", + "core.color.palette.vibrant.green.v-gg-180": "S:d3e30b0e8fe8bb40a0bc3cdd3ac61c6d09603232,", + "core.color.palette.vibrant.yellow-green.v-yg-120": "S:4715ea79a577a93a3a6e99ce0142e742df6a5068,", + "core.color.palette.vibrant.yellow-green.v-yg-140": "S:101f1e34931f4dcd0fafe5fa2720fdc404e74885,", + "core.color.palette.vibrant.yellow-green.v-yg-160": "S:fe8e96fc343e65cd13c7741a9933cda392073117,", + "core.color.palette.vibrant.yellow-green.v-yg-180": "S:117baa81e4d628adcaea061e4c929c48a415edc8,", + "core.color.palette.vibrant.yellow.v-yy-120": "S:aa8ac761db055ea5816853564704bcc9063cec02,", + "core.color.palette.vibrant.yellow.v-yy-140": "S:22614e355bd4fb8c2b132207ec8dccb4e46e31f7,", + "core.color.palette.vibrant.yellow.v-yy-160": "S:3457eb204ca408d52ddbb80f84a111e911dea55d,", + "core.color.palette.vibrant.yellow.v-yy-180": "S:88d256ac4a6561ce88e2f7f256ad037d8ec3ff8b,", + "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:391020c0f092b5402febc0c2d0667d48de33d1ad,", + "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:506b1d01e499bcba07730eb885aa9fef7b5c3cf3,", + "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:f0b69b624b41a6645e8d23660b2a115d23d68d6c,", + "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:beb78cc618755d86db5cca1545c79fce4931d70c,", + "core.color.palette.vibrant.red-orange.v-ro-120": "S:e2b928465273fe8d962655e71d78fb1f9f686490,", + "core.color.palette.vibrant.red-orange.v-ro-140": "S:980e62e80e8f3f9f09425a6d8b26b7302705716b,", + "core.color.palette.vibrant.red-orange.v-ro-160": "S:7403c860250af93694c42ca2464fdcd59d02ca28,", + "core.color.palette.vibrant.red-orange.v-ro-180": "S:e8e13ec2d4406a6683e5f91f9fa1cd664aaf28a1,", + "core.color.palette.vibrant.red.v-rr-120": "S:bcda3ca03b09b394fed9066f9c726fea24ddfe82,", + "core.color.palette.vibrant.red.v-rr-140": "S:b75af4155f1f5474e4032009d0d948a99184999a,", + "core.color.palette.vibrant.red.v-rr-160": "S:88cd4e4fc13847018e7936084c7314042cea5fdd,", + "core.color.palette.vibrant.red.v-rr-180": "S:74c93bbf5b2823acd54016fed51129bcd455703f,", + "core.color.palette.vibrant.pink.v-pk-120": "S:135ed546e2076187d3745c85a8da21a7e7c16d53,", + "core.color.palette.vibrant.pink.v-pk-140": "S:bad80534e3ba23d8230747873bc575b34a608067,", + "core.color.palette.vibrant.pink.v-pk-160": "S:a777eaeb101c5d8a3f518f06043d630a82ad4ef9,", + "core.color.palette.vibrant.pink.v-pk-180": "S:5ccaaf1a5b41cd71e837d43f9bd0f695691fe4c3,", + "core.color.palette.vibrant.violet-red.v-vr-120": "S:9155708e86a8fb667554b200f87c3fb462789caf,", + "core.color.palette.vibrant.violet-red.v-vr-140": "S:b4d6d11c17004435c313505d1c208a4b4258db38,", + "core.color.palette.vibrant.violet-red.v-vr-160": "S:c2609e360b146b6c6b7bc109099d50679f8e049b,", + "core.color.palette.vibrant.violet-red.v-vr-180": "S:5e1709c59c961c97c2d8876919128d145b9b2922,", + "core.color.palette.vibrant.violet.v-vv-120": "S:5962188393f63a4aacda8dbf97c8fee5d9d51624,", + "core.color.palette.vibrant.violet.v-vv-140": "S:12e4253328fc0297e55cd1dd6f47b5fb6921207d,", + "core.color.palette.vibrant.violet.v-vv-160": "S:8497c9ebd8d903caabcb33da8ef48c502beac564,", + "core.color.palette.vibrant.violet.v-vv-180": "S:94ceff7a97452d069c1c06d0b100d989a68b92f8,", + "core.color.palette.dark.green.d-gg-410": "S:696963c67cccb3184f70df720c18499ba54372cc,", + "core.color.palette.dark.green.d-gg-420": "S:1d8b212500ead45da840547917f11b1750d24330,", + "core.color.palette.dark.green.d-gg-430": "S:6e32f21df7c3e9cccb516f157cbd0c73cfe090bd,", + "core.color.palette.dark.yellow.d-yy-410": "S:4906ceee1669c1ba45f248d40c9402fa223bc15e,", + "core.color.palette.dark.yellow.d-yy-420": "S:23b7ad4f5dc84a74b4025093726a20bdbd487a85,", + "core.color.palette.dark.yellow.d-yy-430": "S:3a9e706df7bfee778d832ebc36bb0bc67a9bc6e6,", + "core.color.palette.dark.red.d-rr-410": "S:d1efd5a9b420f32748921b6ec6d718b6e1af465a,", + "core.color.palette.dark.red.d-rr-420": "S:e97c4e83c642e168f0bf9870c3caa3966dd9831e,", + "core.color.palette.dark.red.d-rr-430": "S:515edae396cbd56599053c86abb3d1b0eeda8070,", + "core.color.palette.dark.blue.d-bb-410": "S:098d21075614d6c47f49f3c326099ab1b5934010,", + "core.color.palette.dark.blue.d-bb-420": "S:08f1dadd6b907fa2e4c5022c4dfba0973b892372,", + "core.color.palette.dark.blue.d-bb-430": "S:90e82be07ee6af71f6fb71a8bc1c964f18a2d396,", "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", @@ -632,10 +632,10 @@ "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", - "core.box-shadow.0": "S:7ddfcb704a15ca2248cad563680dc32f706abb04,", - "core.box-shadow.1": "S:d6276fdcb7edcb89ffdcf3c6f3f5cb577ea61e24,", - "core.box-shadow.2": "S:000e9f994062be3417234054e7c72ed7a24c758b,", - "core.box-shadow.none": "S:a3cc0b28a09f7a81ad542d4ed9706af8ab0c5c58,", + "core.box-shadow.0": "S:b15553f1884f62f3316a48a6e38b8c0e8f8e72d2,", + "core.box-shadow.1": "S:bf2ed3904ec79304842edb9a26b9f7493058ad06,", + "core.box-shadow.2": "S:405e9e5847d05b187655689838208704356b6e1b,", + "core.box-shadow.none": "S:bce4a69329ebfff685ce2a044bcfb3d09a8ad7ec,", "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", @@ -684,118 +684,1398 @@ "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", - "semantic.font.default.light.-3h": "S:6df3d2be9c07144d115e4861548534eb32daccae,", - "semantic.font.default.light.-2h": "S:4f63b9c283f577b906ebb20546150d8b67d96a84,", - "semantic.font.default.light.-1h": "S:b787a5be550d903b03fc4e941e8f56862b3ef486,", - "semantic.font.default.light.0h": "S:abc25ff79a64cf0828a066825d4f34ad995f697f,", - "semantic.font.default.light.1h": "S:a9628a0b6861e76bc7d3099b842b9cdbf77b120c,", - "semantic.font.default.light.2h": "S:abec5f30b5cdaff58ef76349a45b2d6d4b8ec85d,", - "semantic.font.default.light.3h": "S:cfa475e70dfea306c4afc93895941946d77ff676,", - "semantic.font.default.light.4h": "S:c961a60894be5964b23c7febdc1028ab94e69d98,", - "semantic.font.default.light.5h": "S:ecdd5666503760509fb3b53fc9c9dc26978b896b,", - "semantic.font.default.light.6h": "S:a754ad732447b30205904a4190b36b94cc95cbfd,", - "semantic.font.default.light.7h": "S:2722e58d978e7c9751e19cacfe2f3bf0e255d61c,", - "semantic.font.default.light.8h": "S:35e352c270e2c3eb8859d7d201fcf9fcaef82a6a,", - "semantic.font.default.regular.-3h": "S:f61518118bf4e4f77da6210ed499739183d4f66a,", - "semantic.font.default.regular.-2h": "S:48039fe7b066ecaa4174b7c2c349969c9f776aaa,", - "semantic.font.default.regular.-1h": "S:9b2dedc4f8dda45cad5c7c0f465787507bd1ad9b,", - "semantic.font.default.regular.0h": "S:503eb6eab4e98cec47db6482978fc54b0e53f58a,", - "semantic.font.default.regular.1h": "S:be9a26f660589a61e709d44a4ae7e9690d928a3f,", - "semantic.font.default.regular.2h": "S:17a5c223035a05bd5a8f27c62facf66a18f0bfc2,", - "semantic.font.default.regular.3h": "S:8e2b6692ab9227cd5c059bb0e8f9d693d6ae28fa,", - "semantic.font.default.regular.4h": "S:7c9504b0c2e535e97fd14b995bea64ede47b8666,", - "semantic.font.default.regular.5h": "S:2c1041a36d68499b401b7e76ddb9ad895339e7d0,", - "semantic.font.default.regular.6h": "S:ec8091c372e6fd580cb5c953d70b20f697e62fa5,", - "semantic.font.default.regular.7h": "S:714dccfbf5fffc281d7594c40b2d664de6f57c3d,", - "semantic.font.default.regular.8h": "S:9abd9546305be6a93e5c700eb00db294aa6dcb53,", - "semantic.font.default.medium.-3h": "S:6b248d60cfcc2696520f1582227007ca03a9fa68,", - "semantic.font.default.medium.-2h": "S:d0d980400bb88a3137a28a0fdd863ff993bd34c3,", - "semantic.font.default.medium.-1h": "S:7487cce085f450cce43b7c79cf6ccef21e585beb,", - "semantic.font.default.medium.0h": "S:bbc0a76d054a0706ee55ec3051dce9fc9ab26e31,", - "semantic.font.default.medium.1h": "S:13bd91eebbdb11141c6d24458918a46999336517,", - "semantic.font.default.medium.2h": "S:7ea54c357b30c42004c9abfcbe56c86eddf70b58,", - "semantic.font.default.medium.3h": "S:41973b8809df200cfe1d9b10fba9d77e9221db7e,", - "semantic.font.default.medium.4h": "S:8076b9d501735318141d218699fe9f2de686ef96,", - "semantic.font.default.medium.5h": "S:33e98e63a8e5284d33a4239a8e3f4b15ef768125,", - "semantic.font.default.medium.6h": "S:9c0a2b4b3e7464c6f1720dda3f31ab28b6b55707,", - "semantic.font.default.medium.7h": "S:b692e81ddcf42e1c27f4cc1c6f1df49c9b868be8,", - "semantic.font.default.medium.8h": "S:8cbf12dfafb96452c5b8c4e62bf69d37e5e5bdcc,", - "semantic.font.default.bold.-3h": "S:08cfc875f0b4df087645b6be6518ecf35d1a7974,", - "semantic.font.default.bold.-2h": "S:cc13f34e5c72b6485f0509691396532e80fef316,", - "semantic.font.default.bold.-1h": "S:ff467cd023b9ce1ac4a089e847c640cb7eb1494a,", - "semantic.font.default.bold.0h": "S:df63a9a5b969c425884fb90080d4aef8119adec1,", - "semantic.font.default.bold.1h": "S:f2fef3758cccc6f5e1a845f3f67bd8304f274ad1,", - "semantic.font.default.bold.2h": "S:79b79a195954821c25e8b6695b8ab07859992900,", - "semantic.font.default.bold.3h": "S:0b36451a7e6c86e637d2c2736f1e28e40ac71aaf,", - "semantic.font.default.bold.4h": "S:21670a8be9783d85a84601dce7ee9b9949827faa,", - "semantic.font.default.bold.5h": "S:762ddee04c5c790710a8f84bda4ac0db9b765881,", - "semantic.font.default.bold.6h": "S:5433605b17525a354191f282900f20a88133910c,", - "semantic.font.default.bold.7h": "S:b994cccf6a3eef2f7ed5583cf2840824a536a4dd,", - "semantic.font.default.bold.8h": "S:d391f7bb8ba6288566bb0881fb7fe2d1d8a19786,", + "semantic.font.default.light.-3h": "S:448b8eef6afc320529c1511a5d210297c4b712da,", + "semantic.font.default.light.-2h": "S:6d4d0ce7635f3287bc32b08ba7b014de59921559,", + "semantic.font.default.light.-1h": "S:d97c48634357f806ef3d1480c9656ef66fab7289,", + "semantic.font.default.light.0h": "S:33d15e08a02cd7e1bdf1011762f6b9adfae79b27,", + "semantic.font.default.light.1h": "S:d1ffb1864e795d393f0095a4235916dc58a8259e,", + "semantic.font.default.light.2h": "S:0952400b4b67b69f03816c2f9c925db27c7d801f,", + "semantic.font.default.light.3h": "S:4ea96f94c15953429909c2b2dc15c3bb0b2815bf,", + "semantic.font.default.light.4h": "S:d64e93a9f77b74fa9349db68933422df14e8fb10,", + "semantic.font.default.light.5h": "S:0be059d62f7cfd1b86c5eb059707982ff5e32b23,", + "semantic.font.default.light.6h": "S:0fa03ed4d3b9f4473d72982137b02379de784218,", + "semantic.font.default.light.7h": "S:df73e52a2cdf830d1cee6bbc8c28905ca60a8dcb,", + "semantic.font.default.light.8h": "S:bbf4a7b49b5e20bfd25da69a7a1e081b3922727c,", + "semantic.font.default.regular.-3h": "S:e539f06b6ef0f93743d99f050c67d6496056799c,", + "semantic.font.default.regular.-2h": "S:c2ce2e62c26dd7e48297ebb52dd530aa12efe109,", + "semantic.font.default.regular.-1h": "S:d226510a3405bab79fb709f0894da8ffe83f0f49,", + "semantic.font.default.regular.0h": "S:901d996f7d9fdb561034d4ec0e8e74ab5de106d8,", + "semantic.font.default.regular.1h": "S:c48245c10d68383746909343a54fdf5a920ae81c,", + "semantic.font.default.regular.2h": "S:9c34f9ed2b0abde711f5f65c08633627314a491b,", + "semantic.font.default.regular.3h": "S:f8ff4a752cb1cc3baeb4c4186543b98a592f6ac7,", + "semantic.font.default.regular.4h": "S:6a50b1b7c5a005593fd4fa8eec8230f8f783ef44,", + "semantic.font.default.regular.5h": "S:34db3a1662fbcf2c075d6e5b607b6bbb27a50948,", + "semantic.font.default.regular.6h": "S:e3f9d7e0f4439e711883b04d94c827dbfff20a8d,", + "semantic.font.default.regular.7h": "S:6683a70fc5ca1dd68eef7ba2656ba179376fe239,", + "semantic.font.default.regular.8h": "S:f33bdcf5723f8bd3ff9fbe33b6d07d1c18525ffd,", + "semantic.font.default.medium.-3h": "S:a68637f330054d193a760d2f79d0a8e643e9ec31,", + "semantic.font.default.medium.-2h": "S:8a9b402b814f835cbc6842d324c047ea41ac92a8,", + "semantic.font.default.medium.-1h": "S:06e0d4a94b16fa9a0c903e1b57f53d101fc775f2,", + "semantic.font.default.medium.0h": "S:5ea926036783771ab1655f2b2ceb56250968522b,", + "semantic.font.default.medium.1h": "S:d540a3df6537a70aa5846a51abf53d8648ab1082,", + "semantic.font.default.medium.2h": "S:1472f2ed1508242eb3ec85d507371921258b2bbf,", + "semantic.font.default.medium.3h": "S:98c7c2afadd9444f79f3a87629fc6be454982068,", + "semantic.font.default.medium.4h": "S:371251870d9e73733636f040c0c06062eaeda112,", + "semantic.font.default.medium.5h": "S:4d391a8697373fd0fd8dac6cec59936e7c1598bd,", + "semantic.font.default.medium.6h": "S:5b77ac013b402efcd145ccf0d0719a9299958808,", + "semantic.font.default.medium.7h": "S:67029b6225ab20096df8da8ca9de08de43491255,", + "semantic.font.default.medium.8h": "S:b9869105637e6d3b5e4e789b9adab73c9b0b8723,", + "semantic.font.default.bold.-3h": "S:f9691e3bc28d14127e0937c5709a6adac1abb1b1,", + "semantic.font.default.bold.-2h": "S:542864c12a09091cd711ee99382dfb670da75d56,", + "semantic.font.default.bold.-1h": "S:17b20c9348892cad57a5264d833eff914389be66,", + "semantic.font.default.bold.0h": "S:36cc6065d5108adcd6fd5ae0a2dd7aae3ac9b7ab,", + "semantic.font.default.bold.1h": "S:7f20641af4349763385cccaa4c922507d0509bbb,", + "semantic.font.default.bold.2h": "S:7ffe88bbc64eb05102b59d71d053a9eec4e193a0,", + "semantic.font.default.bold.3h": "S:cd6d4da5cbd8097ce2998db554909e0d69681d29,", + "semantic.font.default.bold.4h": "S:6294f9009b4ca52cd74b62fc93429e5270c2e1e7,", + "semantic.font.default.bold.5h": "S:542a6d26a8c5de3ef75e36d3be6e4c77e3e47d47,", + "semantic.font.default.bold.6h": "S:fe0f1febd1e9d6d281b8598a68ed8491c4afc6d6,", + "semantic.font.default.bold.7h": "S:e44d20e160df29f5b8bb28d38b69ea93faf3b424,", + "semantic.font.default.bold.8h": "S:4b05ff3e5710321f82cf95d7e57335bc6ca4f1cb,", "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", - "semantic.font.wrap.light.0": "S:7f63ecaef5560422bd5abadf21044b6014bc95e4,", - "semantic.font.wrap.light.1": "S:3b552cf70103ab02428dcb3a92072073b9407d23,", - "semantic.font.wrap.light.2": "S:d0ba3478326329b01fdb0a20aba5417c402ea66f,", - "semantic.font.wrap.light.3": "S:cd1228f3452e846db397cdba657ccdfeb0e41d45,", - "semantic.font.wrap.light.4": "S:737f96b2fa9ecd72e8dd097efdb75f9cbe49bf45,", - "semantic.font.wrap.light.5": "S:17f843859c63149c50f24212dae53c5511a47d96,", - "semantic.font.wrap.light.6": "S:ca12e574dacb69ae483ee9ef914d23fb12965bce,", - "semantic.font.wrap.light.7": "S:3ec70c0d89ebee44861f8f028544aff07fce9052,", - "semantic.font.wrap.light.8": "S:3e9c37ec83e92ff5b7a117e28e4e2d384ba86dbe,", - "semantic.font.wrap.light.-3": "S:a8428914e64b24014303f974b366b2fca5024d44,", - "semantic.font.wrap.light.-2": "S:b46c8f045b7f34a8535bcd10faec1402e805aeab,", - "semantic.font.wrap.light.-1": "S:c14f42fa7b39e27cbf3baa3962ad1e6ec8fc658c,", - "semantic.font.wrap.regular.0": "S:8783ef65e16aa811ee13d943413863c98917f3f8,", - "semantic.font.wrap.regular.1": "S:630f3b315187edc051c4e939e262c775a31f3187,", - "semantic.font.wrap.regular.2": "S:5a1d01992b9658aa3878c8a28e68ca3bf8b7c9bf,", - "semantic.font.wrap.regular.3": "S:6a1af9c5643be387623dd8976abfdd9c84ad1c05,", - "semantic.font.wrap.regular.4": "S:5abff26799c00bb3b06269ee1bc85e6b5930e270,", - "semantic.font.wrap.regular.5": "S:2bc4ef15ad47666e49bd8c593032aecc4ac0c96e,", - "semantic.font.wrap.regular.6": "S:874db32043a3f30d8a2facc1423964e1de3cfcf5,", - "semantic.font.wrap.regular.7": "S:754546978c2e7513fb548745ee2b72e8de3b1e26,", - "semantic.font.wrap.regular.8": "S:f13138e43061204efe197e1ea61113181ff4c604,", - "semantic.font.wrap.regular.-3": "S:1a7d6545450e02ced319ae6044f1f6f3757d02fd,", - "semantic.font.wrap.regular.-2": "S:a425eacc0fdeab89df6d8a9434d29852702b31a8,", - "semantic.font.wrap.regular.-1": "S:dff552a12be4aa7f8439f5625832cc2a8803b454,", - "semantic.font.wrap.medium.0": "S:a530186a1e18c9c7684e88d56f87a3d3a725f21b,", - "semantic.font.wrap.medium.1": "S:2d48b69d22f8b28762633ae7febeeff5d2f1d106,", - "semantic.font.wrap.medium.2": "S:f1be08fd0c8ea566f0204287003e508181aa747b,", - "semantic.font.wrap.medium.3": "S:9821af8691afe7687236ecb3fb6a564e8f01b2d6,", - "semantic.font.wrap.medium.4": "S:48892e9792d28328304315fda93ad219a0636450,", - "semantic.font.wrap.medium.5": "S:c5a12c2b348c344776d8647454b8f91e14bdb7f6,", - "semantic.font.wrap.medium.6": "S:2280d194886859a614a82f92f66234b4eb494a7b,", - "semantic.font.wrap.medium.7": "S:4715aa7ab30770498145f5fe5ed2268ce2bdae04,", - "semantic.font.wrap.medium.8": "S:9d3cb32067cb166dfdb4a6a5b2707568c5592bcd,", - "semantic.font.wrap.medium.-3": "S:d7269a85a1f7e9867c9ed88cb47ce4deccc0f4ac,", - "semantic.font.wrap.medium.-2": "S:79f968036e536863e39a957deee69e0397430652,", - "semantic.font.wrap.medium.-1": "S:9698b588df56b7949226ac849a52511c5eabed99,", - "semantic.font.wrap.bold.0": "S:b4b0391089b7003378ced1e8f6ac7c7ca806aafe,", - "semantic.font.wrap.bold.1": "S:3495f8fe58db80d2e25d6a13eb72c0565ee05e50,", - "semantic.font.wrap.bold.2": "S:08712df3479439983d88f07528cf709ddefef011,", - "semantic.font.wrap.bold.3": "S:89e5caecb362be791d71f491591df34bfdd4e623,", - "semantic.font.wrap.bold.4": "S:921c5b51321ceb9aeb972a0d7fd61ffd3039d0bb,", - "semantic.font.wrap.bold.5": "S:66ecfe2d1b11a2c31446da2c5efcbfa164e1f1a1,", - "semantic.font.wrap.bold.6": "S:5a1444d838564ebaf8f36083752cee3220a6687b,", - "semantic.font.wrap.bold.7": "S:c9fc5ec2ebbabecc20b6546acc2efe01e6ba8c50,", - "semantic.font.wrap.bold.8": "S:755ed4f9003a57a54c75bbb5050c100260c20acf,", - "semantic.font.wrap.bold.-3": "S:4f425b8979bbbc4cf44c7187bda2f13b585f547e,", - "semantic.font.wrap.bold.-2": "S:4230c1f7cb3a1e527b7003ea14becc3e651541d5,", - "semantic.font.wrap.bold.-1": "S:38e41e95cb68a590b15f94c79e377019c7686bde,", - "semantic.font.hierarchy.display-1": "S:c6724bea5960a85d1fa0dbf50f7b286bd7297c8e,", - "semantic.font.hierarchy.display-2": "S:96b678718e24a09b73456488999a60044566321c,", - "semantic.font.hierarchy.heading-1": "S:b1c77db466172cfb98e72e84b36dcd96c884dedb,", - "semantic.font.hierarchy.heading-2": "S:b22a7eb92eaa2fb000c5ccd047c542e4a3d2fdac,", - "semantic.font.hierarchy.heading-3": "S:691f8a1c8171618dcf66e3c3551ff8ab676dc1b7,", - "semantic.font.hierarchy.heading-4": "S:e078a6d6598704c19ae50832549d30f1643eae52,", - "semantic.font.hierarchy.heading-5": "S:f486acb77c4dc62eadbe0b93688d053a84c3fec1,", - "semantic.font.hierarchy.heading-6": "S:82980da42bd00345e8ef54b8694fa0fae88d1853,", - "semantic.font.hierarchy.body-1": "S:7ad0ce1191870a559e508db9f781bed439bebd79,", - "semantic.font.hierarchy.body-2": "S:27899499dcbe399f6764e88486f00871a503c87a,", - "semantic.font.hierarchy.overline": "S:27fbe0b94fdcd918b2ad78d3c8232a16c4732d9a,", - "semantic.font.hierarchy.caption": "S:d6be2a748447ac294a2d54be64dfe3a965256f85," + "semantic.font.wrap.light.0": "S:ad0064efc4ce82398d0acddf75cbd5e41f06f13d,", + "semantic.font.wrap.light.1": "S:fae87e50783ad1979337a90ab0271f6fd5a150b4,", + "semantic.font.wrap.light.2": "S:3bde43f8548be65880bce5d5c2ccb60a59afe03d,", + "semantic.font.wrap.light.3": "S:75de41b5080babbb13afaca2d11073e996b3b0ea,", + "semantic.font.wrap.light.4": "S:b9d229876f3242705efff7bfe110ca6baaf00f71,", + "semantic.font.wrap.light.5": "S:83e915d79c195eda8a98454dca5868f0225e1bd5,", + "semantic.font.wrap.light.6": "S:6e448d218245dbac9f250f5d6cac088005d5e3fd,", + "semantic.font.wrap.light.7": "S:2e650a9572119390bf68afb9cf7ac1ef2ff16aaa,", + "semantic.font.wrap.light.8": "S:bd6df56d4f7f06585fa5eb1c840507647377470d,", + "semantic.font.wrap.light.-3": "S:ec76af7e237bca56ab3b0eeece5616fc4c66893b,", + "semantic.font.wrap.light.-2": "S:0575d1464658f6f8233739cd82ec2561a46e8199,", + "semantic.font.wrap.light.-1": "S:7841c5bab1ad63e397e9ac884b8ede26130fe2d8,", + "semantic.font.wrap.regular.0": "S:66b886195444d65889657f414927f31bcf090174,", + "semantic.font.wrap.regular.1": "S:34fdc8e0ee010877423e5f7bad26f54e5f4c1ec4,", + "semantic.font.wrap.regular.2": "S:2e82a159ce76ed0c68d7a20f72c38807a69ad104,", + "semantic.font.wrap.regular.3": "S:9e278573c267b7f30f5719e73b1d21105edf49a9,", + "semantic.font.wrap.regular.4": "S:f52208a0d4984cff2d733adce9803ea89a41cc55,", + "semantic.font.wrap.regular.5": "S:a5d4a2bfedfd60bcc6d076cb87053eb396109863,", + "semantic.font.wrap.regular.6": "S:a7a9d92ab31a81a26ff26d3f8193670dabe1cfdf,", + "semantic.font.wrap.regular.7": "S:879ab6791a3c5b321e06c04b83ca30528264ff54,", + "semantic.font.wrap.regular.8": "S:a9f87e2be6eaf5de030dfa0f406f14f6d26369b2,", + "semantic.font.wrap.regular.-3": "S:791af7d01240411e1aada55cc97dd03f9e9a447a,", + "semantic.font.wrap.regular.-2": "S:79bfcbc46d7482725a02f917f86341342900cc4c,", + "semantic.font.wrap.regular.-1": "S:8cfb200ba516a6a75a81538c8d9a5273692f7b91,", + "semantic.font.wrap.medium.0": "S:8746d1c9ca0cd1cdd592df79ab2d61ee859b8071,", + "semantic.font.wrap.medium.1": "S:bfb563f71a916453ce2de93c6cad2fd3738cff6a,", + "semantic.font.wrap.medium.2": "S:7a2f4cdb73d54deed52c6b690c6863d76dbe55b2,", + "semantic.font.wrap.medium.3": "S:178f16dbb959a506aed5aff27b4f64ab33e204d3,", + "semantic.font.wrap.medium.4": "S:0100d6fb52cf898cd004a8752d03f5dfab4d7216,", + "semantic.font.wrap.medium.5": "S:9f7368f9e7cb233d4585c25f6e7b7b6ac9f1e857,", + "semantic.font.wrap.medium.6": "S:1ad763f1dc801bceed5a8c2027fa2a357c1fcf55,", + "semantic.font.wrap.medium.7": "S:1e0e5b711985bce690c3e32dd663eae62fe99dcb,", + "semantic.font.wrap.medium.8": "S:ad7eb3080e7540ca64cb61b2b599c73a73da2e9b,", + "semantic.font.wrap.medium.-3": "S:018ce57cb92b0652178256efa6f21989100cf8b0,", + "semantic.font.wrap.medium.-2": "S:526517080d04515a9580785dddc87f680a179488,", + "semantic.font.wrap.medium.-1": "S:4c6ca23bf1bd7002f101a347c3d9ad21ccbee0e1,", + "semantic.font.wrap.bold.0": "S:ad11f6639ca0cd3d85cf993fbc95e7c9ad9ca269,", + "semantic.font.wrap.bold.1": "S:9313a06be8f7070400e6cfd7f7ff27939d6c6ed2,", + "semantic.font.wrap.bold.2": "S:abfb6349c8c060ad0abdb9ce2f363e08233be443,", + "semantic.font.wrap.bold.3": "S:6a08218bc036ca8a46513197790957e3bb9ca105,", + "semantic.font.wrap.bold.4": "S:4aaaf75ae7f4623fd87f62e8891a36efec7b371d,", + "semantic.font.wrap.bold.5": "S:f7fa8ece8ccab4931cfb0c5e19e970140da9576b,", + "semantic.font.wrap.bold.6": "S:122c69ab69b84f7f77c19a7d4500d945e434f81b,", + "semantic.font.wrap.bold.7": "S:2712dec933d765f4c2e0d201dbcb1fba43b266f3,", + "semantic.font.wrap.bold.8": "S:38b78db6105317957d23ba1adeb83432e7831f5c,", + "semantic.font.wrap.bold.-3": "S:4bca865601ab87f1d77f48d3e1de83d3dbac85a8,", + "semantic.font.wrap.bold.-2": "S:7f2ba398b489c12db90e5045bb6f7027780a9b3b,", + "semantic.font.wrap.bold.-1": "S:c5860e8f1206a3d343390c9a915a8f3f58a0b336,", + "semantic.font.hierarchy.display-1": "S:594de2ae8f95a4557f94948efb92e719c44d8dc3,", + "semantic.font.hierarchy.display-2": "S:345ca489008fa931564b0874bd1e23c4e9d48aea,", + "semantic.font.hierarchy.heading-1": "S:94ccd91356c618934977da98b51a717b141c2b45,", + "semantic.font.hierarchy.heading-2": "S:d5452773dc8e3ac66d43ae15d64cdccb0e8a875e,", + "semantic.font.hierarchy.heading-3": "S:5a462c2c5c170b662f9be6536d6034c222ce5d64,", + "semantic.font.hierarchy.heading-4": "S:2fdd27077600a7745a2573719630a2818c9768be,", + "semantic.font.hierarchy.heading-5": "S:51757e80503233faa7a0102da2d6f7770d620f83,", + "semantic.font.hierarchy.heading-6": "S:b603d2e8c9cf762c51996f290b7e930bef26a327,", + "semantic.font.hierarchy.body-1": "S:505abbdd354c8ea55e27b9a500e86276988eb9cf,", + "semantic.font.hierarchy.body-2": "S:c4d02b7fec5d9014e79420d18a7dcc4ad9ce4477,", + "semantic.font.hierarchy.overline": "S:8c5923b6a044203bd88b4829f85ff177c9950004,", + "semantic.font.hierarchy.caption": "S:b951134acc837c9c2e0fde5059666306d644a89e,", + "tree-item.font.default.light": "S:1f47f54697254bcc70d548961c8b937c11247a1a,", + "tree-item.font.default.dark": "S:ef347ef92cbefd912a70097c22f765af0c8d345c,", + "tree-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", + "tree-item.font.selected.dark": "S:b4e880155c844b1765726290556b2d29d0f08f33,", + "tree-item.font.children-selected.light": "S:dfd1a09df6ad5d51d017fb59ebcc0b4ae6396ac3,", + "tree-item.font.children-selected.dark": "S:b607abfaf491569cb3a94468e43250d5eae4d270,", + "tree-item.icon.default.light": "S:750c0c469dc94e50bd4abd8516d0394fd8bb3562,", + "tree-item.icon.default.dark": "S:f81b7e2e94d6604d466f256610dbee5c1eada3ec,", + "tree-item.icon.selected.light": "S:ece20359c4d66506c3bbc5619ee5f4f305878423,", + "tree-item.icon.selected.dark": "S:5adbcfb229680d6c9c5722e501a6202edd952b19,", + "tree-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "tree-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "scrim.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "scrim.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "[comp-name].font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "[comp-name].font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "[comp-name].icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "[comp-name].icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "[comp-name].border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "[comp-name].border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "[comp-name].background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "[comp-name].background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "[comp-name].foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "[comp-name].foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "switch.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "switch.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "switch.background.checked.light": "S:0ab45ed9bff22a94a58242207f07e8511f3a81f1,", + "switch.background.checked.dark": "S:cbe1f3df2b63dfcfec9daa27715cd5021382308e,", + "switch.border.default.light": "S:1dfe7e0c0de9159a23904a96a499b93c577a07f0,", + "switch.border.default.dark": "S:833c248304051048c79e8f9c55d0eb729331f3a3,", + "switch.border.checked.light": "S:f19b95f1c4240eb67ccce31f43a4a2b909fc9808,", + "switch.border.checked.dark": "S:3d7742ae7dae69c0768ae5d08d439cbaa2a7b078,", + "switch.handle.background.default.light": "S:746d55ebf4063086d8b02ca467e617f06f2215a0,", + "switch.handle.background.default.dark": "S:86c4b5b13f25bf62f7d22b82eb3e777cc4949016,", + "switch.handle.background.checked.light": "S:cd22cdbfb2b7d5bd9d470aa561e6be2bc2c38dff,", + "switch.handle.background.checked.dark": "S:0589e976bec8b67f097ba545e5d07e22e765adcb,", + "switch.handle.border.default.light": "S:da3a5b3202820a53a539eecf457e7df62c9ebc9d,", + "switch.handle.border.default.dark": "S:44c909d394bca66186f97c7b4ff700cdda1b2a21,", + "switch.handle.border.checked.light": "S:c436707d0a2bc0922d42ae2b9a5fa6b9d7f3841a,", + "switch.handle.border.checked.dark": "S:53dd1b99e591b0427a5766fe42f5cdacfe9e3e50,", + "stepper-item.font.heading.default.light": "S:40ce528e19b100251c7b871858873db10af26b9b,", + "stepper-item.font.heading.default.dark": "S:f175c2a3fe052c485d5ecfee58101ec273441d59,", + "stepper-item.font.heading.active.light": "S:7599968187e637add83c21f7864eebb5893ee6e7,", + "stepper-item.font.heading.active.dark": "S:219c33d16e6f3f2ab8844186171482269d81164d,", + "stepper-item.font.heading.error.light": "S:437eb6f82fe8c92b38c7bc86c4e5df0612120737,", + "stepper-item.font.heading.error.dark": "S:6a23496900d852a45c92ae33a23d16ee193ceb06,", + "stepper-item.font.heading.complete.light": "S:fb92dd236702e411cb7037b3434c8fbe560bf92d,", + "stepper-item.font.heading.complete.dark": "S:1ee0e61d48ee69dbec6d6fcb04514893febf3b52,", + "stepper-item.font.description.default.light": "S:c1f37b5b087232d3d69b2d2343154a494bebf829,", + "stepper-item.font.description.default.dark": "S:bb68feb462ab14a8d979d6916bc8f61c7776c153,", + "stepper-item.font.description.active.light": "S:b440a2640643ed554d42000d15fba7521000d877,", + "stepper-item.font.description.active.dark": "S:5a4965dc35cdba19cefa3f4e22052abe89ea8722,", + "stepper-item.font.description.error.light": "S:c02eca656fda2efc2f18e0fa10141e8d804f4bca,", + "stepper-item.font.description.error.dark": "S:321c552c4829bd9ab0ab5412e5dc6723031f3017,", + "stepper-item.font.description.complete.light": "S:a013ceeaefe60b844168f6a523ac006fddf265d4,", + "stepper-item.font.description.complete.dark": "S:98f30ea8b9e815dd36681cf18acdd8a474a44272,", + "stepper-item.font.context.default.light": "S:24b28ebd7d47f0e14e3ae7de6441cf47da4e56ed,", + "stepper-item.font.context.default.dark": "S:c90b39576e968cfa065778663f73a8c6bd853c74,", + "stepper-item.font.context.active.light": "S:46ab1687c1369c4a0c9a40e46f104648bea60a9c,", + "stepper-item.font.context.active.dark": "S:24c588d01dfda605f594684ea3090e1493db2b25,", + "stepper-item.font.context.error.light": "S:a7b82b3be10e9cdc737078f5f28470aa8e220e5c,", + "stepper-item.font.context.error.dark": "S:dd3d49dadf6070de590566ee4913755255d80318,", + "stepper-item.font.context.complete.light": "S:332da58af9bff487a26ccbbdbde4a5c5ee0d4bba,", + "stepper-item.font.context.complete.dark": "S:3a1c4f0a7c7946f28090a8055d680bba4bfa988f,", + "stepper-item.icon.default.light": "S:addd3576ae6e30e5b85ccc8dfc0a9e67d33be834,", + "stepper-item.icon.default.dark": "S:cf19f94180906d8e362bb87820a6f735ad036890,", + "stepper-item.icon.active.light": "S:5c8a44ba7e0b94641fc31dac144df6a804ffd7df,", + "stepper-item.icon.active.dark": "S:d9b9eb04bd30e7781c7a5c061e8470cae26c91ea,", + "stepper-item.icon.error.light": "S:4870f6f31a7bd5c16b5c7f457d0652ce44a45c29,", + "stepper-item.icon.error.dark": "S:e156fd5ba38f1d8b86af0cc31e7c7a7845942e16,", + "stepper-item.border.default.light": "S:7648f85df06e35547415b6ea07923b36d43c73ae,", + "stepper-item.border.default.dark": "S:39134821b4ec6a6b3b6774b605cdfb22719bfdb2,", + "stepper-item.border.active.light": "S:beada9a0cc8a1b42443698d59ac5e4c1ff1a046d,", + "stepper-item.border.active.dark": "S:9f679cc5e28b15ea4c99467cda3ab8e31fa27aa1,", + "stepper-item.border.error.light": "S:334ffb7849b067fc4e31f80ff89b89961d87dd94,", + "stepper-item.border.error.dark": "S:7020352ed69885c054a137ec55107272685b832e,", + "stepper-item.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "stepper-item.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "stepper-item.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "stepper-item.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "stepper.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "stepper.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "stepper.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "stepper.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "stepper.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "stepper.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "stepper.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "stepper.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "stepper.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "stepper.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "slider-range.font.label.light": "S:25c4a04717d6b7a098344ec2433761c3080b4447,", + "slider-range.font.label.dark": "S:5676ae4bc619a48614aad7f3ce38785bdc9dbe72,", + "slider-range.font.tick-label.light": "S:a43cce7f32e2332e3e2df3e760f5f4d4ff0f3c54,", + "slider-range.font.tick-label.dark": "S:29a2df6e6bf6c457f14968308d0d5b1fd3ac1379,", + "slider-range.handle.background.light": "S:bea36b4e9322cdfa37887b2f3f5e92f80b794213,", + "slider-range.handle.background.dark": "S:4fa75e98914a04af65dae1161c81a4fc841445a9,", + "slider-range.handle.border.light": "S:a3dcc19bc93fc2bff6374c144a9c1a7831f9451a,", + "slider-range.handle.border.dark": "S:fefdf92212b4afb5763d5362eeaa943149318652,", + "slider-range.border.default.light": "S:35f35116c31a26060ae2e47c15b068eee9ece702,", + "slider-range.border.default.dark": "S:50ce01dfd65f12075af70b4840dcc84da110c60c,", + "slider-range.border.active.light": "S:65c1a82c9b29a0ae59aea07c4b7ba84e6d1616b8,", + "slider-range.border.active.dark": "S:710e8c080e0bcf5c66bd2bca8725b8dd3d62f10f,", + "slider-range.tick.default.background.light": "S:6d22885a4a221d6cf6a6e80ed68a043ce366a968,", + "slider-range.tick.default.background.dark": "S:e10612bdf6d5d16cbde6313feeb8f8e3e1a2fd1f,", + "slider-range.tick.default.border.light": "S:34a730b93c96615ae15d7a6c968d3f98491fe49f,", + "slider-range.tick.default.border.dark": "S:304c130dbe548e11c2ee8287cc7009e120ff1a3f,", + "slider-range.tick.active.background.light": "S:5c8aa41e099f0eab8a8433486e7c9b61d341a7dd,", + "slider-range.tick.active.background.dark": "S:acb79f183ba8162a3dc045b155fef8f1fc418419,", + "slider-range.tick.active.border.light": "S:7672da361fba5f5a23963f810e7ddc11a5e43379,", + "slider-range.tick.active.border.dark": "S:1d654e5d7950c45a3d65cf1ea91cb68c9f6fa570,", + "slider-histogram-range.font.label.light": "S:313b58a8fdd7853bc274208bf38aa6d6d89cd3e1,", + "slider-histogram-range.font.label.dark": "S:9c7d6f5c292a49b014a43ecfdcaaff00fc5f56fb,", + "slider-histogram-range.font.tick-label.light": "S:bf503c162829c7392ca0e64676c9c63993fb0b70,", + "slider-histogram-range.font.tick-label.dark": "S:cb1505ea175c0c8de7d76d05ee6ec73e89e9075c,", + "slider-histogram-range.handle.background.light": "S:c16808983fc6aa6c27a65f00ae04228cc63dc6d0,", + "slider-histogram-range.handle.background.dark": "S:ba402c1978cc9a20fc64ee8f3cd23d17b1e704f5,", + "slider-histogram-range.handle.border.light": "S:92f4ea1056907ff706b3deaff282c9f14b4032ab,", + "slider-histogram-range.handle.border.dark": "S:57497d1360ec08c764e08a135f2b20f5646b3c5b,", + "slider-histogram-range.border.default.light": "S:18471d07339d402ad61979fcfe5c6f14983d1493,", + "slider-histogram-range.border.default.dark": "S:9b38cb7d1533df3f33e39a8c6a5e123c6968ef3d,", + "slider-histogram-range.border.active.light": "S:4fb610399faebe042f4d19ff56e1b8ffc4d29552,", + "slider-histogram-range.border.active.dark": "S:7fa8c6e254c31219b33e77c72a14cea40ea63a53,", + "slider-histogram-range.tick.default.background.light": "S:3286a1101e7e396ecb5260594111f201ef4845e3,", + "slider-histogram-range.tick.default.background.dark": "S:d7e24af731b3e3d2ad75acc41f2076f93289a691,", + "slider-histogram-range.tick.default.border.light": "S:c8c38b5cbb8ffdc1caad545a1249ce9ccb34d3f7,", + "slider-histogram-range.tick.default.border.dark": "S:0157d1ac9ff4aa969d7a79177620d677638625c5,", + "slider-histogram-range.tick.active.background.light": "S:29f95f825c93d0063070f97c32a473d7412fc728,", + "slider-histogram-range.tick.active.background.dark": "S:9e3aa1b81234c384755b1f4c0416622216dc8270,", + "slider-histogram-range.tick.active.border.light": "S:bf1cc0038125d14225bf6db429bbf3dd614621b7,", + "slider-histogram-range.tick.active.border.dark": "S:aff7f54de22ac5e66fe9971ad314da5fbe78353b,", + "slider-histogram-range.area.active.background.light": "S:be35c698f7f5aa5d866827d7314eec97eb48d5b4,", + "slider-histogram-range.area.active.background.dark": "S:81a2390191ba720e466c1d2b45282ca3a9240d2e,", + "slider-histogram.font.label.light": "S:dc9ff21e34ca4da681987a9336e841f80cfcd78e,", + "slider-histogram.font.label.dark": "S:03fed78bdf84037a115e994454cd693dd0dac3b3,", + "slider-histogram.font.tick-label.light": "S:c644cc67959c352b1c17c03f88ffc747cf3ea326,", + "slider-histogram.font.tick-label.dark": "S:e0491e32b89261f4c3370d3f64303cd2f7ed63e0,", + "slider-histogram.handle.background.light": "S:1f167c1f73c05c3567675248575cb6bee3fe5246,", + "slider-histogram.handle.background.dark": "S:04e42f091fe107f01b0ffe765956999ec011810a,", + "slider-histogram.handle.border.light": "S:cc509bc1396a5cb5a77f9e7b96f423ab772a740d,", + "slider-histogram.handle.border.dark": "S:db13017beba8a82a7461e4e3a36c16aee70f07e5,", + "slider-histogram.border.default.light": "S:a263b3ece77576816ce429d1e65862ac78d6f0bb,", + "slider-histogram.border.default.dark": "S:6ed1ca574ff4567cdb54cab2e8cfdbccf98313af,", + "slider-histogram.border.active.light": "S:8a650f9d0ceda8c5acf4d27a0e2fdece443fa3ba,", + "slider-histogram.border.active.dark": "S:133a659d12f9ee411faf1aa33918485df29c6862,", + "slider-histogram.tick.default.background.light": "S:8a8f585dbc92077b73d84aa1d5926c8a1eca7018,", + "slider-histogram.tick.default.background.dark": "S:2528efd156716b9cc44b93092eed4c305f6e04c1,", + "slider-histogram.tick.default.border.light": "S:b10db666ec6b2a4017ab522d4b30f7989193a304,", + "slider-histogram.tick.default.border.dark": "S:789bc8981958dc1ac6c81a3823c04daf4f3188de,", + "slider-histogram.tick.active.background.light": "S:9b900f3275d3efbd68be4ca628fc7339174d5fbf,", + "slider-histogram.tick.active.background.dark": "S:223b59bc19391409c68bd550c7193b15ecafb639,", + "slider-histogram.tick.active.border.light": "S:8fa15768b84a741848bb29832331330fdd8c67ca,", + "slider-histogram.tick.active.border.dark": "S:0ab6eeec0d2bf24d92b86af1f1cfbef093a8160d,", + "slider-histogram.area.active.background.light": "S:c89c4d11164ed977c2c0e97abe8f82386ac87c7f,", + "slider-histogram.area.active.background.dark": "S:91077d887efcf9f4b14ad27f16be3585dc657cdf,", + "slider-histogram.active-end.background.light": "S:8d8d3af5d1021f90b1327dc018d5dd21e6c43693,", + "slider-histogram.active-end.background.dark": "S:42a2ced53672247a20f98edb87562a99a5aca41d,", + "slider.font.label.light": "S:b84d30015ec694e0c8bfb981aa1d08e8d4fec4ff,", + "slider.font.label.dark": "S:4d526e4974df53102e5b1463241b8a07433b1af8,", + "slider.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", + "slider.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", + "slider.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", + "slider.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", + "slider.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", + "slider.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", + "slider.border.default.light": "S:3e71142c7b7fcd2b1cb22796617d5dc067b4e0fc,", + "slider.border.default.dark": "S:0a94fbd462fd7a89aafa921c38b9d51eb3fba252,", + "slider.border.active.light": "S:41c56d650bc1b4ef11d50890234b8046a344aa29,", + "slider.border.active.dark": "S:ccb2a496ddbeffda68a2af4ec7625570eb5d543e,", + "slider.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", + "slider.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", + "slider.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", + "slider.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", + "slider.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", + "slider.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", + "slider.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", + "slider.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", + "segmented-control.font.default.light": "S:314e7abeb0ea4f33c4d775b39c8a48ce665830de,", + "segmented-control.font.default.dark": "S:bcc0b7c7e11148b77c236b1e07ffd1b0f3c6dd63,", + "segmented-control.font.checked.light": "S:40c18363bec74ce07c70ac651afcd442f0046da8,", + "segmented-control.font.checked.dark": "S:1b340cfe17153ee654d067cf22fbf1e890af9726,", + "segmented-control.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "segmented-control.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "segmented-control.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "segmented-control.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "segmented-control.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "segmented-control.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "pagination.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "pagination.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "pagination.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "pagination.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "pagination.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "pagination.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "pagination.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "pagination.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "pagination.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "pagination.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "popover.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "popover.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "popover.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "popover.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "popover.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "popover.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "popover.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "popover.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "panel-header.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "panel-header.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "panel-header.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "panel-header.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "panel-header.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "panel-header.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "panel-header.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "panel-header.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "tooltip.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "tooltip.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "tooltip.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "tooltip.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "tooltip.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "tooltip.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "tip.font.heading.light": "S:cfc65c18035b8fac7928bd0a609b18a4995757b2,", + "tip.font.heading.dark": "S:6bf8b9db220d75b3779bd5c025a573c86bce015c,", + "tip.font.description.light": "S:4aa862d915b2b119c0e853ebb85fb9c24358155b,", + "tip.font.description.dark": "S:5220352e8e7b660bc584d2b162a947502459992b,", + "tip.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "tip.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "tip.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "tip.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "tip.border.default.light": "S:5fb53f00b572767cb080741ab7b47d11df628f95,", + "tip.border.default.dark": "S:97938b15fb9cee6efdd1d80dae0f3125444a9d67,", + "rating.chip.value-text.font.light": "S:11423cc98fa9e43a0b42365d5ea5891e31085b0d,", + "rating.chip.value-text.font.dark": "S:0ab47c728381761f98384403f12dae2820e3227f,", + "rating.chip.count.font.light": "S:9db37e98cba760e02da719f6c1f8e94a79ce6f47,", + "rating.chip.count.font.dark": "S:57d5b0c18c9fb6fa98c8a2e627bb4355395289e2,", + "rating.chip.foreground.light": "S:2a7ae900c56bdaed64830a000ab5f147e9a1871d,", + "rating.chip.foreground.dark": "S:2c5f57a9414dade7ecd6d59f5d53e0cc2f811316,", + "rating.star.background.default.light": "S:710775754e463031894aa2fcc269e8080b46a711,", + "rating.star.background.default.dark": "S:2c69735b85675262be35962ab8d72d564660a8dc,", + "rating.star.background.active.light": "S:9a8727139d8e167a07a102ceab10b6eb28d9a642,", + "rating.star.background.active.dark": "S:3f4cee2f66b1636cc5f5498324e084ba7fcfb60c,", + "rating.star.background.average.light": "S:d1ada06fc9c905264006c3ce38ece1b10157bf48,", + "rating.star.background.average.dark": "S:2b295f1ae1097dd5aa7d56c9401d7b054cadc945,", + "tabs.font.default.light": "S:98baa93fbc30f21851afcf22ddd279e098974e7f,", + "tabs.font.default.dark": "S:2a593bc03498698f02f1090dd058ea8f34148805,", + "tabs.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", + "tabs.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", + "tabs.icon.default.light": "S:1ec5acdadcd6ac4d48af860f46ad396956fdda9a,", + "tabs.icon.default.dark": "S:6c7492fe4d6eeecc52b33d43af029b01267a330d,", + "tabs.icon.active.light": "S:075911ce2ccdfb790f45f9f676cf85c565846711,", + "tabs.icon.active.dark": "S:c744f597d282453ddb90b08c4ec32e2ea2004432,", + "tabs.bordered.border.light": "S:1221d1ffb6cceb245f7da4908879fa0b3b723982,", + "tabs.bordered.border.dark": "S:84ee8e344d39094181db3b1de8d507d41bcd6354,", + "tabs.bordered.background.default.light": "S:888bf780072cc1559cc2b4becdfaac670e941a74,", + "tabs.bordered.background.default.dark": "S:4bdc332a3818a0fefe52b32b03cf8f574ed189ed,", + "tabs.border.active.light": "S:8430e5c97e265d0d54059730ead842f31bd61100,", + "tabs.border.active.dark": "S:a65c30bb9f2a68358a622f9677779a358b26b706,", + "tab-title.font.default.light": "S:a4340d1c4d5be6c79fac5aae06f8b2b00462d396,", + "tab-title.font.default.dark": "S:decc85a829dfb5634e33a154da411a890272c0e2,", + "tab-title.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", + "tab-title.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", + "tab-title.icon.default.light": "S:60099af0b1bfb91fcdaaa64175ffa8650b602d49,", + "tab-title.icon.default.dark": "S:43eb4ac7604e6d1ba193a8bca7582bf6f27fcf4a,", + "tab-title.icon.active.light": "S:ad50be68aee98ad483722e4376d95a4d0e23b4d4,", + "tab-title.icon.active.dark": "S:6a07bb838d1897039389a110ec3959e5033e964a,", + "tab-title.bordered.border.light": "S:bd54d03400f3a9f97d97d9656f88c7bf5f46dd02,", + "tab-title.bordered.border.dark": "S:0d48699e13a0a4526295bfd5705597f25df40902,", + "tab-title.bordered.background.default.light": "S:f6acc31e97b24210b6a778b3972d713a5620aa86,", + "tab-title.bordered.background.default.dark": "S:13121a0d01e4fb62e4f35a04239e9cfe749cbb07,", + "tab-title.border.active.light": "S:07983141f3efc54a46dd09d87ee30d55701ae16e,", + "tab-title.border.active.dark": "S:9bf0beb42cf3f65fedfe39cd564d25d08af79614,", + "radio.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "radio.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "radio.border.unchecked.light": "S:d3f814c271446438e13819ae171d5ab92f739b18,", + "radio.border.unchecked.dark": "S:318cf4c8f427f70be43a816f7091db13238a9282,", + "radio.border.checked.light": "S:f19b95f1c4240eb67ccce31f43a4a2b909fc9808,", + "radio.border.checked.dark": "S:3d7742ae7dae69c0768ae5d08d439cbaa2a7b078,", + "radio.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "radio.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "loader.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "loader.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "loader.default.foreground.light": "S:b98314fedea7c3e5e832bff9d4e44474ce7265a1,", + "loader.default.foreground.dark": "S:304a629ada6a7ef5519a7806204eeb4d7f01d954,", + "loader.inline.foreground.indeterminate.light": "S:da04095cbdaf7cf5f98eeec697078fc7264d32ba,", + "loader.inline.foreground.indeterminate.dark": "S:4280761ef8e8f569b4352ad45aa52609ff23e128,", + "loader.inline.foreground.determinate.light": "S:691f6850302be0203c2298e598ab895cf8fc4fe9,", + "loader.inline.foreground.determinate.dark": "S:dc561e94c526f6e3c0a23ce9ec67da08b6656413,", + "filter.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "filter.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "filter.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "filter.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "filter.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "filter.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "filter.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "filter.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "link.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "link.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "link.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "link.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "link.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "link.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "label.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "label.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "textarea.font.placeholder-value.light": "S:6966b7754ce4fd11c74bf5ab4dce963f3ad8750b,", + "textarea.font.placeholder-value.dark": "S:e42ca8d40c72598f0b838732d7416d2263d3b101,", + "textarea.font.label.light": "S:5960ba06fe9968ef20770e925db02f359b31e14c,", + "textarea.font.label.dark": "S:914370c047a5cb8e34e3a19be20e1c28196155ac,", + "textarea.font.chat-limit.light": "S:d036a96c3e40b11a613c327a3a0a7cae0b72fcde,", + "textarea.font.chat-limit.dark": "S:14ac320a893a6133618f2c147881beb7caf1d565,", + "textarea.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "textarea.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "textarea.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "textarea.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "textarea.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "textarea.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "textarea.background.read-only.light": "S:132681276add1a5214c2619491adba0116256f23,", + "textarea.background.read-only.dark": "S:ee0e42e740425d298d26c0bd2fd0f809ee7d0beb,", + "notice.font.title.light": "S:b8545f737f774d04322787d5d4269ff07bd58586,", + "notice.font.title.dark": "S:d1d49ce080ad58382ca636e3af1b6cfa8243bd6a,", + "notice.font.message.light": "S:cd309d73c2bf839c4f8b57b4ddc441056b9b59dc,", + "notice.font.message.dark": "S:d9ddcc75830438ac63e4d93c68b3049fa3fcacce,", + "notice.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "notice.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "notice.icon.info.light": "S:98207d369d594d10f790fc9bea415e4ea3e45335,", + "notice.icon.info.dark": "S:4f96af66fb23e050160b1662d3c2655ea138f899,", + "notice.icon.success.light": "S:99de94ded284f960aa2039ad2d96df78a0c880c1,", + "notice.icon.success.dark": "S:7d3d6b3d230ecb9151d3b878d06a91bb15672455,", + "notice.icon.warning.light": "S:81ea08fd5391ccfaa22bd5bcfbe0811ce14f314f,", + "notice.icon.warning.dark": "S:571c79bd43fa8f6ade105342cc4805ecdaa77c50,", + "notice.icon.danger.light": "S:cf8d2ab3ca68b0f621b36d3b2ca6f691b9506ac3,", + "notice.icon.danger.dark": "S:7d85d8810f8eb5b037e710a082cad64cfc5e1683,", + "notice.icon.brand.light": "S:eedb21b228f1b8f494c9f162140a63406414686a,", + "notice.icon.brand.dark": "S:a76eb181aefeef694685113d7815fe90b15aea69,", + "notice.highlight.info.light": "S:73e5b57b4b678a4b853265e33050f7fae69dc0b4,", + "notice.highlight.info.dark": "S:38d81b30b34e16721fe36b6df97e1fbaf12f73e3,", + "notice.highlight.success.light": "S:88529531c4701433647c40e594e0b654e9014ba3,", + "notice.highlight.success.dark": "S:478c949da4555301573feaba90dc2dcee7a720a1,", + "notice.highlight.warning.light": "S:66f48a97f5bf1594dd2cc055de30fa2cb471a1c8,", + "notice.highlight.warning.dark": "S:721ebfc1b5023d7516126855b4e94e83bce6230c,", + "notice.highlight.danger.light": "S:f9bf35d17558127d31e7aff5fa320f4a088093da,", + "notice.highlight.danger.dark": "S:0e46e2198e037bc44bbb6337a3c3ae78af39b0b0,", + "notice.highlight.brand.light": "S:ff24217a653ee3bef7ad198f70f6fb26257629cd,", + "notice.highlight.brand.dark": "S:238edd866a0fb63465a1a1a3dd99d48708e2e316,", + "modal.font.header.light": "S:bb81170665255fe206e85bde8105d7d0e49230e8,", + "modal.font.header.dark": "S:a3fd15b7d470afc805b072dbf848d57469bb681c,", + "modal.font.content.light": "S:641b2fd9e9c478c90130ecd1e2ce42def278aa62,", + "modal.font.content.dark": "S:e20ad9e92eb633ea7fe0b5de056e0f12a5da59a8,", + "modal.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "modal.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "modal.border.default.light": "S:2a2be7f68898a2dd751a78308d60e034e1776894,", + "modal.border.default.dark": "S:21b8eb83ff52009aa257983e35d093d7354ffaa9,", + "modal.border.top.brand.light": "S:a9b4989bb9daad33b84c52206527ff7e76479865,", + "modal.border.top.brand.dark": "S:b05703110c9b8ce6024303d8afed3ba60fa3104b,", + "modal.border.top.info.light": "S:c3d1c7b192199d8fd537011e94f4289ab0ab1631,", + "modal.border.top.info.dark": "S:d6ae78b081b805c48d50806240c949cc2b9d0fec,", + "modal.border.top.success.light": "S:0b8304d2a78248a6fe28da6b96560351b1c33f47,", + "modal.border.top.success.dark": "S:a4b10bfb518b25fbd87598ada78821a3b8c307e3,", + "modal.border.top.danger.light": "S:07a123da04a78be0ca0734de98940cf63a2c2d61,", + "modal.border.top.danger.dark": "S:fb0dd7e07d149d3086385646a21160771e492be7,", + "modal.border.top.warning.light": "S:ed7d8c003631a5e8be2f0631574bd70db885e44f,", + "modal.border.top.warning.dark": "S:78a2de515a0dcadf8f2b49cae9bd8be150243908,", + "modal.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "modal.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "input-week.font.placeholder-value.light": "S:4b44190264df1143a3b7f98424e16696cd3c7b05,", + "input-week.font.placeholder-value.dark": "S:8566c3e71b39ff3c550ec179b68a27e32ea29458,", + "input-week.font.label.light": "S:b499f57414fb85d3adfabede2683441c69e3e440,", + "input-week.font.label.dark": "S:0853fe90a04d654b4e204381e76c61f79473e68c,", + "input-week.font.prefix-suffix.light": "S:5baa08846f46ac592eb1ca70555dabc2cbfdfa73,", + "input-week.font.prefix-suffix.dark": "S:75384a23215de2e14d8d2862cd77ea33c09880cd,", + "input-week.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-week.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-week.border.invalid.light": "S:c6f8cc478fd6ecba00cb76dda5c127e450f5ddbf,", + "input-week.border.invalid.dark": "S:8c48a0d60806470f19616e48291b2c20f3a0776e,", + "input-week.border.default.light": "S:d87d60e50db3efb61fd0bd4b7ecbffab3f80a7d4,", + "input-week.border.default.dark": "S:efb8f8debcc3d207539241a5b5682c75e06dd8f4,", + "input-week.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-week.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-week.background.prefix-suffix.light": "S:65385f9e50b24965f8e10b66b5115a1658d5d7dd,", + "input-week.background.prefix-suffix.dark": "S:5e9ca773bc51c76cd652b184d8ed8953622fc2ac,", + "input-week.background.read-only.light": "S:08d34e6b895cd4540bfa99f12d87a869b4bbbe9d,", + "input-week.background.read-only.dark": "S:0516d1571db3414dd34ac04ab784eaa399d2e66c,", + "input-text.font.placeholder-value.light": "S:023fd4a4f571f2e626e467c2db096eeb45861ebd,", + "input-text.font.placeholder-value.dark": "S:64c0185033a5dd92f904446d9d6ddca92c833f7c,", + "input-text.font.label.light": "S:12a4f618d8918ff89dfb3eb0ddc04c2c46eb5965,", + "input-text.font.label.dark": "S:c82269f538c20c08e82a7c3d6a96040713641b8b,", + "input-text.font.prefix-suffix.light": "S:c8321e61f0eb3e79e1fedeac77dd06886b7ce281,", + "input-text.font.prefix-suffix.dark": "S:c4e1f5a0043ac2b2770171ca3bd43a4b3ca456e0,", + "input-text.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-text.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-text.border.invalid.light": "S:bde3a6a81aba7e4458ac52d2398f6621e05f7a91,", + "input-text.border.invalid.dark": "S:4549940f8ece4ebbdf6c05b42aa0594583c75f4c,", + "input-text.border.default.light": "S:517c301e9af6ba6178c97827002b6b8544c34e85,", + "input-text.border.default.dark": "S:d561b579fb62a4a63ca68f13a9360b7dc5c65c8e,", + "input-text.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-text.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-text.background.prefix-suffix.light": "S:cceec29b0f15f523e231d4419009efd772d77879,", + "input-text.background.prefix-suffix.dark": "S:94b47d3f9bf50d8b2a8d43326b8faeaf89b9c7a3,", + "input-text.background.read-only.light": "S:4d9f631d4b678981679c6ad94e09d79da4383401,", + "input-text.background.read-only.dark": "S:16944b63ad52f3104f8b747fd5dbd3076b938572,", + "input-message.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "input-message.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "input-message.icon.idle.light": "S:11bf26986dd5b91b01567d3c5acb02e491b48f2e,", + "input-message.icon.idle.dark": "S:7f2a38d370d28d747302330222b9c855b16e0776,", + "input-message.icon.invalid.light": "S:7565dee9dd665d5719ebaab33fa88db78ed26c06,", + "input-message.icon.invalid.dark": "S:d2d34ec233f2d1c4666a3707a25ed2734d73153c,", + "input-message.icon.valid.light": "S:665dcc8969f067b7297310ce8b19c575d4ba5395,", + "input-message.icon.valid.dark": "S:172020c76ade2794a13376411055c2a9f4dfa8a4,", + "input-telephone.font.placeholder-value.light": "S:2395c021d71de16c6215b62f146af42414765b7f,", + "input-telephone.font.placeholder-value.dark": "S:a991b6b6044119cc4ae16f65632e3e74d5a9503b,", + "input-telephone.font.label.light": "S:606b9320121f1511c6d30894428a62e6dd97ab46,", + "input-telephone.font.label.dark": "S:56a570da3900a71cdd087b8ae6b9ee965270e9b3,", + "input-telephone.font.prefix-suffix.light": "S:6854b883e1034ccfe1051d312c96b2d8f6bae918,", + "input-telephone.font.prefix-suffix.dark": "S:11937f52ac8ae99604b88da4f9d5ee1366d76e09,", + "input-telephone.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-telephone.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-telephone.border.invalid.light": "S:b8d28b7094bf89ccb35e096e8eaa8faa0f478f23,", + "input-telephone.border.invalid.dark": "S:821269f81c277a531d5ce9754597c0d7d5aba1e7,", + "input-telephone.border.default.light": "S:28487a6d1f1fb2a323e2a2fed73c9eea33d621b6,", + "input-telephone.border.default.dark": "S:6dae8cf59b8678d6dd1e8220d1f94e7f3d68c0f3,", + "input-telephone.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-telephone.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-telephone.background.prefix-suffix.light": "S:798c2d6cc2ec445884b617ac3d9b82be10774171,", + "input-telephone.background.prefix-suffix.dark": "S:cbd71281640555493b5c7d21e46f2efab288d776,", + "input-telephone.background.read-only.light": "S:5a5dee09e0cb6bbb2c78e39a6ea1bb24c4717ac4,", + "input-telephone.background.read-only.dark": "S:b24379b53aaeeffbc58224e5abcd4ba9a8480347,", + "input-search.font.placeholder-value.light": "S:9af616fe5503ee487713b0fe60c08c930812994c,", + "input-search.font.placeholder-value.dark": "S:a0b2808823b47bc30175a571defcfa4439394efb,", + "input-search.font.label.light": "S:112bee24859b4184f34728ce2c616e68105705ab,", + "input-search.font.label.dark": "S:14ce646e7ee0dadca2ab36a24e72af6c0c4cabf3,", + "input-search.font.prefix-suffix.light": "S:c75c10931a55693f722cd6a9d2848387b09dd850,", + "input-search.font.prefix-suffix.dark": "S:6a051545dc4a78c965459a1335c78c8b23cefd45,", + "input-search.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-search.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-search.border.invalid.light": "S:6998ab9e13183edbb26ed766311cbfa07eec97f7,", + "input-search.border.invalid.dark": "S:2f523500134eb6133dd696284b7c3d247438d9e2,", + "input-search.border.default.light": "S:092f8264d8e94b2b75fee8084cdbe0e44b47f59d,", + "input-search.border.default.dark": "S:bd9d7a2b80203a3f98147e52dacf783486cd6fbe,", + "input-search.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-search.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-search.background.prefix-suffix.light": "S:897cbe4b649be1694ba34d03b7d2bf9e1cc3eec3,", + "input-search.background.prefix-suffix.dark": "S:248226f3ecfcbf9adc0cf2a6079264840479e8fc,", + "input-search.background.read-only.light": "S:ec1f23b679d132fa91c6321fb7d0c4d289f399a8,", + "input-search.background.read-only.dark": "S:03757fee76ea4f499c2dc99c4f83758b40256eb6,", + "input-password.font.placeholder-value.light": "S:06b17b824b3edcc3121a9448817ab7caaef1a011,", + "input-password.font.placeholder-value.dark": "S:79948c970255edc032f54eb80ec2d2796a473edd,", + "input-password.font.label.light": "S:c7fbb2e57e4c3b6ee89b8ad215c3461571f44234,", + "input-password.font.label.dark": "S:b8659c623f19dd6b25e7ec3dd7b0b1f275750d8e,", + "input-password.font.prefix-suffix.light": "S:fa5e61288a01cdcc62812e372f14a7717b53de48,", + "input-password.font.prefix-suffix.dark": "S:711cee166e6df3aad4294d1ec7fb92d7797a2ee0,", + "input-password.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-password.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-password.border.invalid.light": "S:c41d3eb10ce46d1dceb767f93a187a682978266b,", + "input-password.border.invalid.dark": "S:ed087dd088b2ef3e666e1b202c5198fd26cbec27,", + "input-password.border.default.light": "S:a959c79e9d1ee2ef10d701ba71f6a2cc00da2d80,", + "input-password.border.default.dark": "S:6e59d8cbf1b7dd7454b9e3c5820965423f063199,", + "input-password.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-password.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-password.background.prefix-suffix.light": "S:39e9bd9056a7a4295e792fce059441c024dfb4c4,", + "input-password.background.prefix-suffix.dark": "S:1631d5e920c270066df6152648ea9ac895bc429a,", + "input-password.background.read-only.light": "S:54433a4c29191bafda9824e54bcbea726be9e0ad,", + "input-password.background.read-only.dark": "S:4c27600fee9009bee65f357578cfc05011cbc73c,", + "input-number.font.placeholder-value.light": "S:5fc894c2062c79b3c92c3758bfc09dbe3c081a6a,", + "input-number.font.placeholder-value.dark": "S:430588027b95683d42b44606587069fd43038385,", + "input-number.font.label.light": "S:5cfed8b18465023bc7e43f5bd78c9cfbfecc4085,", + "input-number.font.label.dark": "S:d0c652d3eb3a216cfc098aadf7fcf723e01cd00f,", + "input-number.font.prefix-suffix.light": "S:bb03b4717afa4622890fb9ee0b07eb3671328761,", + "input-number.font.prefix-suffix.dark": "S:4f86855ba74eec79da2f983858e892428f80d494,", + "input-number.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-number.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-number.border.invalid.light": "S:612dadaad7bad4c90fe0ebabcf7aceead07dc155,", + "input-number.border.invalid.dark": "S:f52e87def44db41e4631e39378e6706bac4bc7ba,", + "input-number.border.default.light": "S:6c5250e00190c8387b60304c29fcb8601a0d8f4c,", + "input-number.border.default.dark": "S:4bd0c00e208e05f365e0b58d757b537d3bacdb16,", + "input-number.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-number.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-number.background.prefix-suffix.light": "S:a83c1840fc0435d61df6d2240060acc072168bad,", + "input-number.background.prefix-suffix.dark": "S:0ff987b09b1f100c4b3d09dac343a77934bc40b9,", + "input-number.background.read-only.light": "S:07a477b43c6357bb529fb54360fb374e44558d26,", + "input-number.background.read-only.dark": "S:0d7f3bdd475cbeb963a2214311f431fdf548c621,", + "input-month.font.placeholder-value.light": "S:109e42d6598af3faba61bb9a0bb4c2eab33c8c03,", + "input-month.font.placeholder-value.dark": "S:b381bb9b699e279dc8c97c0fcdf0a2cbe1874087,", + "input-month.font.label.light": "S:093b6087557a750ef21d81f7a21bdadf37b5ea6c,", + "input-month.font.label.dark": "S:8f39fc229ffdc426d8643528902d53b2563a877c,", + "input-month.font.prefix-suffix.light": "S:b53142fcafc167635529213994d36ae8c2f66fc8,", + "input-month.font.prefix-suffix.dark": "S:d42977347863174ae39ccf81cdb069bbdd68f099,", + "input-month.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-month.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-month.border.invalid.light": "S:29fd95c389829b3452ea70eb0f0b32ba11119175,", + "input-month.border.invalid.dark": "S:948e735dd10206feec38dc28e576e4da64825f52,", + "input-month.border.default.light": "S:bc1e60d8619d66b532a94b69e2ef86925e010313,", + "input-month.border.default.dark": "S:08e151541f3cd6c049067580d0251699ba415327,", + "input-month.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-month.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-month.background.prefix-suffix.light": "S:b29721da10a7122a4febea120dc571c1eaa0e0e7,", + "input-month.background.prefix-suffix.dark": "S:5eeb8f5dc501869b19d55acbe0e048ff463969ce,", + "input-month.background.read-only.light": "S:43971c602cae4ee1a54f6ee34098d4de9a74c3e8,", + "input-month.background.read-only.dark": "S:fcc0eff16977155f4855baef82a24cff32cba94a,", + "input-file.font.placeholder-value.light": "S:395435fea39dfb5b26598c085bb7653a1d67a276,", + "input-file.font.placeholder-value.dark": "S:8e8595914b24035d2ba180dd6d5c2a25392ba716,", + "input-file.font.label.light": "S:679452dbbcdadd8ca8124b460eb0cd7b56f8c016,", + "input-file.font.label.dark": "S:6e9157cebbf5e5208af6d2b3ca03b94810c14a3a,", + "input-file.font.prefix-suffix.light": "S:5f19133aec266d180c081ac86a89d9c36588e3e0,", + "input-file.font.prefix-suffix.dark": "S:5327c0a9c13be8d1ccabb3061b5308deae9e3194,", + "input-file.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-file.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-file.border.invalid.light": "S:0a00b5774c697f2bd01ae0b7dc9ae20b800055b7,", + "input-file.border.invalid.dark": "S:d9691652d7b8de53e7b3319d2362b3eea5e4b43f,", + "input-file.border.default.light": "S:32477f127508f77bdf4fdf5aef9f18a4765d3ea5,", + "input-file.border.default.dark": "S:43607df94fb94184c8fe12dc6917220a9129fa3f,", + "input-file.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-file.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-file.background.prefix-suffix.light": "S:4c4496c9993cf36b7080ac0b52d02fe3d62992d6,", + "input-file.background.prefix-suffix.dark": "S:575482b2e0582da9951bff7049c01cad5d0747f4,", + "input-file.background.read-only.light": "S:30eb2905d8abe6f9ed5313cb3fd2db4a246d8a1a,", + "input-file.background.read-only.dark": "S:06c1224c58a161b745f57eeed17d8f3868c6a445,", + "input-email.font.placeholder-value.light": "S:ab8efbce1d0189b9062c48daede79669a6c2bacf,", + "input-email.font.placeholder-value.dark": "S:a73185b1340cab6db72c312df7842fc21488cb3f,", + "input-email.font.label.light": "S:27d3474223759d8a49285b482694fdbc70da3cf7,", + "input-email.font.label.dark": "S:063902f5a10b291dfe7066bffca18256337c2c50,", + "input-email.font.prefix-suffix.light": "S:7b2fc1c9e636284c1354a6d2ec86f10b94b6590a,", + "input-email.font.prefix-suffix.dark": "S:973c0893d06d2f1a1502223f0215553dbf67bd2c,", + "input-email.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-email.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-email.border.invalid.light": "S:94e417205bfb027de5f5d29a6837e92b42bd0b3f,", + "input-email.border.invalid.dark": "S:15773387e59f5585beec839e8763cdcbdaea37ab,", + "input-email.border.default.light": "S:98cd54cd6be28549ca0a10c00fdefc0c0a2d0e46,", + "input-email.border.default.dark": "S:993564722fc9c869e35305dc7afaeb046d141491,", + "input-email.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-email.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-email.background.prefix-suffix.light": "S:36c982673cc88755bf87a945c78a98df7ae0dd1c,", + "input-email.background.prefix-suffix.dark": "S:5d10216e314dcfc5e412d77d56b9e83452edf7b5,", + "input-email.background.read-only.light": "S:03aae4f540ba1f3be71f4e6506b5f693500872c2,", + "input-email.background.read-only.dark": "S:f1c131315acaf75eb002151e482a00257079e06f,", + "input-datetime-local.font.placeholder-value.light": "S:53fc76d627c139e2b488d3493bfce02d2d9e2d0a,", + "input-datetime-local.font.placeholder-value.dark": "S:81c2a6f170b2f54972daf86794b54b9a9d618eea,", + "input-datetime-local.font.label.light": "S:7c386453e6e63ad61b9356fa593f975fae6c7581,", + "input-datetime-local.font.label.dark": "S:0ee0886cd10869a66b93c89e74f8aea52b1815db,", + "input-datetime-local.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-datetime-local.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-datetime-local.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-datetime-local.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-datetime-local.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-datetime-local.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-datetime-local.border.default.light": "S:4ae7dafe00d3a8df2c547ea44328e53bf840136f,", + "input-datetime-local.border.default.dark": "S:6031f30fd20bb9eda5dfe303ac3e7547e3996324,", + "input-datetime-local.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-datetime-local.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-datetime-local.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-datetime-local.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-datetime-local.background.read-only.light": "S:a01c3a51e0c5c67bd952b1bfc7e499b62e0ed347,", + "input-datetime-local.background.read-only.dark": "S:811e9905d2c2da4a7b47e0e1495f7d8b9c94c39d,", + "input-date-picker.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-date-picker.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-date-picker.font.label.light": "S:133f3a894c9c3abbd59c53d1399790c9fd4e0f22,", + "input-date-picker.font.label.dark": "S:ce4f3ca1f623ac60ce94039b956a9dd7b0fc3dd8,", + "input-date-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-date-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-date-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "input-date-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "input-date-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-date-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-date-picker.background.arrow.light": "S:1c8e76ed08d85a1f5f4b21e363c5bf31b5f41910,", + "input-date-picker.background.arrow.dark": "S:d0eb9c0117c69137d5ce76e05b7ac929335e7bc9,", + "input-date-picker.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-date-picker.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "color-picker.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "color-picker.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "color-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "color-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "color-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "color-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "color-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "color-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "date-picker.font.date.light": "S:3671fe14f042965357c46b2615824a1c7efa70e4,", + "date-picker.font.date.dark": "S:241f8779538cb4702201ed4066cd4340fa9f686f,", + "date-picker.font.day.light": "S:e1f8fe8a0d500900f3755214d6639efb6e5fafec,", + "date-picker.font.day.dark": "S:edf6e93f0880409de72951ab590e37223a5e7e22,", + "date-picker.font.month.light": "S:e7007a61645ae44b3abd80d52d8f984fc782206c,", + "date-picker.font.month.dark": "S:7a26a1b5050ac857298b1e427d93e512d4d57a65,", + "date-picker.font.range.date.light": "S:06a32d845847149d2cbeb96b36e43468f1a62789,", + "date-picker.font.range.date.dark": "S:2ceceff57cd77aa99ffc7d2f0b0517541f985766,", + "date-picker.font.selected.date.light": "S:18248953f5c1f8ea47799a390f9956d4d622db11,", + "date-picker.font.selected.date.dark": "S:875fa73c614a95118c158cc6dc0ec80f074ccb0d,", + "date-picker.font.active.date.light": "S:8fcb8da38c5f2fb6d0aa36167cc0f4ef2b160550,", + "date-picker.font.active.date.dark": "S:c107a2ddcb3a1cbff0b2851c9a8ebfe8929f328d,", + "date-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "date-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "date-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "date-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "date-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "date-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "date-picker.background.date.active.light": "S:6796ec3ef28142c1660b3f7739c4c04ab1c75a04,", + "date-picker.background.date.active.dark": "S:00008689f4cd67914fac19beec1528a1ac41a4ea,", + "date-picker.background.date.range.light": "S:d87a05addefd5d554795dd94b2acd577288521c2,", + "date-picker.background.date.range.dark": "S:ffc81c58606df60c717c94bfdad04a0c94909404,", + "date-picker.date.active.border.light": "S:fd8fc2f890e9782d5c058c793be18797a5534932,", + "date-picker.date.active.border.dark": "S:1c7ebf7d8f4af02e7f83a46c3f52233e9ba35c31,", + "combobox.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "combobox.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "combobox.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "combobox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "combobox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "combobox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "combobox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "combobox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "combobox.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "combobox.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "card.font.title.light": "S:18e88146abde990888475aa62ec25874b1ce8a6e,", + "card.font.title.dark": "S:09e463acce3ed8dc04d6fea71838d4a055877399,", + "card.font.description.light": "S:9a1f579004304bc529f62c2543a7942d17613c99,", + "card.font.description.dark": "S:76d73c72f680b3f35bc5780424a7ad5a0f4745ac,", + "card.font.subtitle.light": "S:003a1a7519374d0278e2d39a05ccdece9494156b,", + "card.font.subtitle.dark": "S:6355016a1a58da665def5e759c512e087504e510,", + "card.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "card.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "card.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "card.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "card.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "card.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "block-section.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "block-section.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "block-section.icon.valid.light": "S:9bcc57cf9522e709cc788c5dc9ecfd89f57f7717,", + "block-section.icon.valid.dark": "S:cead35d2680267c4416ca9d2100e98818efb753a,", + "block-section.icon.invalid.light": "S:1f802ea0e26c5448e9a76fc5564e80d4dcd82b56,", + "block-section.icon.invalid.dark": "S:8ef08c342b4be56a3b56a7a0f2d6561278077019,", + "block-section.icon.chevron.light": "S:404a82b9514d83de413c4c1d78694c023d695f71,", + "block-section.icon.chevron.dark": "S:faddf475cb87c2235da40270f5e68429cf97f3a1,", + "block-section.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "block-section.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "block.font.heading.light": "S:2e1c9c691a569814dbdaed5dde4793c87f0b8875,", + "block.font.heading.dark": "S:cd08a6678cef47654323aeb25e4876db64b17857,", + "block.font.description.light": "S:6ad772a5969e530f89e6f540d00d67a005209b8f,", + "block.font.description.dark": "S:9d804fa00266272db959b6850317f4f7c56185f8,", + "block.font.content.light": "S:c46be83f52216f16ced44f463fcedcf82d3ee870,", + "block.font.content.dark": "S:5bf1d0dbbd8f49618514192dbfcaf7057cd6f72a,", + "block.icon.idle.light": "S:f02d0fb7bba5b12f80f94cba50e49649f3d2ddd8,", + "block.icon.idle.dark": "S:37f89d2bdd848ec033c26905f5cf5dcd8fd5c642,", + "block.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", + "block.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", + "block.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", + "block.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", + "block.icon.drag-handle.light": "S:4167dec666a9ebc6855f6445e070d1fbab3f124a,", + "block.icon.drag-handle.dark": "S:bee7da2a1ce827c8937234f1fbaafe97877201e2,", + "block.icon.chevron.light": "S:af5fabff28cd8db6aa06132f0493b629e04023d9,", + "block.icon.chevron.dark": "S:9efa9354a66d5d3fa260049c448260d556bf4c0b,", + "block.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "block.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "block.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "block.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "avatar.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "avatar.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "avatar.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "avatar.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "avatar.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "avatar.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "avatar.background.red.light": "S:15480901727a45856967d3e6203a510279eaf126,", + "avatar.background.red.dark": "S:706f2f2a48db1827512c44cfc6399c2646f255ce,", + "avatar.background.teal.light": "S:3d5a2a9f65af84740e758bce0f39b9429bb4d693,", + "avatar.background.teal.dark": "S:6e24e66c70e6650e8fcece5816f9e4a174590adf,", + "avatar.background.blue.light": "S:e6f70231d5734d0abb13a62fb0b28639c711d5eb,", + "avatar.background.blue.dark": "S:adcb513654fc4a335332bd7cffd516805ed8e0da,", + "avatar.background.green.light": "S:303caddb723321f904804f0e0de733143d3a5980,", + "avatar.background.green.dark": "S:c707a517f7e4fd908707a14a119c4eb3c656aa9b,", + "avatar.background.yellow.light": "S:70442e1c6857374d7c798f0443c98c9359e43d62,", + "avatar.background.yellow.dark": "S:c17fd8acec7ed4cc44492e62025c11ea4f8ee1e3,", + "alert.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", + "alert.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", + "alert.font.message.light": "S:6cf383eac5cca5700a959ab59f20a865a46decd5,", + "alert.font.message.dark": "S:7815f7fb82fdc4c4c26e1623790dffe9e187a466,", + "alert.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "alert.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "alert.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "alert.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "alert.icon.blue.light": "S:76f65d8ec01d5472cd2ee30b970d1191e24b21a3,", + "alert.icon.blue.dark": "S:a60354ca19575dfe34c4c35f8846bd28c4796ab8,", + "alert.icon.green.light": "S:25e3219805c14739a43718e5c55c066001bc00d1,", + "alert.icon.green.dark": "S:e71da60b629c97a7ac832d88cdefa655664cd38a,", + "alert.icon.yellow.light": "S:9ad965d79acdf9a9364a61394028db7535efdb59,", + "alert.icon.yellow.dark": "S:2524c0634b4411fa44d0c76177e587d40243c654,", + "alert.icon.red.light": "S:f854ce135867b3fab5c250b84422539684c92f28,", + "alert.icon.red.dark": "S:0fdbcf1a38f260e10527f5bd5a84a2a0183e9bcb,", + "alert.highlight.blue.light": "S:d06b668f7b2e939e6a4eab82a6f143c5e440faf0,", + "alert.highlight.blue.dark": "S:db000ee1304d89f2f129b1dc05bddeeb0c27faa8,", + "alert.highlight.green.light": "S:e324e6552b39a2db26d76da925a70ab5d8c07a10,", + "alert.highlight.green.dark": "S:a881a827f501f0890e4f03d4404bec97094aa041,", + "alert.highlight.yellow.light": "S:755c350d0874c569f9c73fba1c4fe8604a9a065d,", + "alert.highlight.yellow.dark": "S:7729ee4a2bce3753785a33aa99df95e44ba2ea37,", + "alert.highlight.red.light": "S:a08c993c84b045345121c6c87d9c434c8c6a625c,", + "alert.highlight.red.dark": "S:9cb1b42abcd0ef58fdb3a1f7b2c030410cf720b6,", + "action-pad-grid.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "action-pad-grid.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "action-pad-grid.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "action-pad-grid.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "action-pad.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "action-pad.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "action-pad.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "action-pad.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "action-bar-grid.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "action-bar-grid.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "action-bar-grid.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "action-bar-grid.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "action-bar.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "action-bar.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "action-bar.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "action-bar.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "dropdown.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "dropdown.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "dropdown.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "dropdown.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "dropdown.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "dropdown.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "dropdown.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "dropdown.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "dropdown.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "dropdown.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "chip.font.clear.light": "S:3bceb92c16f9494f5df688ac26364dc9916d2f30,", + "chip.font.clear.dark": "S:26f3b7443216233f279c7e7f7fd0131efcf2894a,", + "chip.font.solid.grey.light": "S:1c6e18ed37f0dd57da2b2fe7158f708f32ff10b9,", + "chip.font.solid.grey.dark": "S:bd62c223330d9bd183081da305c26e6d054b727f,", + "chip.font.solid.blue.light": "S:66e5eea50a4738310a610bf35defc79c2f68d268,", + "chip.font.solid.blue.dark": "S:ce2f48f7c48c85f1947ed4def67837b09682f392,", + "chip.font.solid.red.light": "S:4dd45363a1a8a7f69731c3087cd75501c569a9df,", + "chip.font.solid.red.dark": "S:bfdc2378122e67bb9ca7c20e4616c910684ce386,", + "chip.font.solid.yellow.light": "S:4a1dd23a0f565029e15822cc6b8b56957b4383d4,", + "chip.font.solid.yellow.dark": "S:bcf8ce210a5dcce132c602eb4aadaa7c49421f70,", + "chip.font.solid.green.light": "S:3fba5d47fc5dc3890f9815e5588b1fae3955e2a4,", + "chip.font.solid.green.dark": "S:7d35770c490fbb1b9952d56ba8f64530b8ca2c20,", + "chip.icon.solid.grey.light": "S:b11bef71ea8faa8e4e469ce9080f40b4cabc2017,", + "chip.icon.solid.grey.dark": "S:fe6895416c0213445a74a77a2da5191ee06266c2,", + "chip.icon.solid.blue.light": "S:3bedd59076e486afe8128a69e505c734b3934bc1,", + "chip.icon.solid.blue.dark": "S:e96f458a9e09ce6fdfefc393072ce28766601907,", + "chip.icon.solid.red.light": "S:84c2a93cc8de0a128f5da1131cc1cc7a2b0f5686,", + "chip.icon.solid.red.dark": "S:28265c9ca8729ceb5805b7842663c1162f073b12,", + "chip.icon.solid.yellow.light": "S:d3d415877af4342dfa5b2a522b995005f46a036f,", + "chip.icon.solid.yellow.dark": "S:0dcdf78002ec8d6c2d2d9f1526c769ac2e64ed62,", + "chip.icon.solid.green.light": "S:20c657522b2e549263180c408042654c597852f2,", + "chip.icon.solid.green.dark": "S:dbfbdd28233f829f94b29b3f609d62ecec873072,", + "chip.icon.clear.light": "S:a2d113d47d21d5652fbf97ba3c080ef75b8b86b5,", + "chip.icon.clear.dark": "S:b9d89075c8ede720ed163c7db3ad8ae99f55a7a3,", + "chip.background.solid.grey.light": "S:b53697b7f83ed2a1cb8401a03ceedd9858bdfa44,", + "chip.background.solid.grey.dark": "S:b46a140ddd397a1f3bc89a9097ea67ac2cdf5eb5,", + "chip.background.solid.red.light": "S:c27419c0893c8639b4e38f21d1009ea61dd87644,", + "chip.background.solid.red.dark": "S:9d0bc5f00f8f6775b890b749c4ab92a0e2936f82,", + "chip.background.solid.blue.light": "S:4be84169ac345a5fe20beb467ba90e098af63ca6,", + "chip.background.solid.blue.dark": "S:efe9257d7ff25660d4f56ecb5f8eff1965836ed8,", + "chip.background.solid.green.light": "S:5e399aedb6838ff8ea03512163d75a41ab6994c3,", + "chip.background.solid.green.dark": "S:c241f69fd7fd9d471ab2156f4a683079ed39fc14,", + "chip.background.solid.yellow.light": "S:2962dae5faa2ebdfdb41a236eb4fe2d6728e73c2,", + "chip.background.solid.yellow.dark": "S:c0854e1751ab501aa79abffc7573b649a040fa87,", + "chip.closable-icon.light": "S:5864661006b1e772d3497a8fcda14e8c4c14ec59,", + "chip.closable-icon.dark": "S:571b293be9fa93c88d4c744e859ccaa9f0327396,", + "chip.border.clear.grey.light": "S:ba3709462c1adcc8247a4b551e49f82c3a5d52b5,", + "chip.border.clear.grey.dark": "S:da12f587cccfb923ff5326f0820abd034885243c,", + "chip.border.clear.red.light": "S:df1e6343d454f39b6310ef4e88ed6067aea0f78d,", + "chip.border.clear.red.dark": "S:ca09bbb774ed71bab49b4768fda03cef7c127bec,", + "chip.border.clear.blue.light": "S:04657641675b69f642cbd457001d849c986bb902,", + "chip.border.clear.blue.dark": "S:a4e5c73ecd06a6d15e1c0c5e06d0db710d159e40,", + "chip.border.clear.green.light": "S:857bba35f26bbd88a44c03fc89fe80ebef65bb31,", + "chip.border.clear.green.dark": "S:0f59e37a995fa88e6d805a2f6acdeb6c5b6b0d91,", + "chip.border.clear.yellow.light": "S:835f772647e8725e264c9de44c48f73b19b1dee1,", + "chip.border.clear.yellow.dark": "S:fd20cf70d56bd57879800426b23e0a1c40ef66ae,", + "checkbox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "checkbox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "checkbox.background.selected.light": "S:13d63ed31b4ad61a912dbd663332e89530a9ce64,", + "checkbox.background.selected.dark": "S:2395510a93b41923ce9358f2754a8fd8451f47d8,", + "checkbox.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "checkbox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "checkbox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "checkbox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "checkbox.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "checkbox.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "fab.font.brand.solid.light": "S:15983687103bed05e47bc5ffcff46881ca58e6ae,", + "fab.font.brand.solid.dark": "S:e82220692ef8336ce7ead8df3abccc1bfa6956ff,", + "fab.font.brand.outline.light": "S:f0adeadd0e0e0f4a1f3fee86558666b817037268,", + "fab.font.brand.outline.dark": "S:1e8852afd9ea094755d09382eded30d2e2bbe130,", + "fab.font.brand.clear.light": "S:1f3107c5a2f1daf1fcf03e492b2d6993789a3c3f,", + "fab.font.brand.clear.dark": "S:76f49a66542c52b964e3ec9f9a7652e934e7a781,", + "fab.font.brand.transparent.light": "S:06df2efafe1c1cafe563f76e771347a69d04a7a1,", + "fab.font.brand.transparent.dark": "S:d4356a1762c850343f02a3c9777f23ebfa4d41f3,", + "fab.font.inverse.solid.light": "S:38e2e5dc5067d7921f9481f360e3af6f35c20861,", + "fab.font.inverse.solid.dark": "S:d0cb21cffaa62e24a8e9c89947a66b3bde04b4d1,", + "fab.font.inverse.outline.light": "S:043470cf705695bc573e8be8d0f1ca5cd43f235c,", + "fab.font.inverse.outline.dark": "S:bd96e308b8742f172fd160a9f16cee7139edef42,", + "fab.font.inverse.clear.light": "S:4e0126885705a695441471685e9c6fe53df73560,", + "fab.font.inverse.clear.dark": "S:6b6b568e5b20a35af73db4ea211ed735480fde1a,", + "fab.font.inverse.transparent.light": "S:bb5130f5070b15d7cb2aa427df1f2daf170c9ef4,", + "fab.font.inverse.transparent.dark": "S:fcff24f62b0f0ba8c776732e6f5470fb0a1dbf69,", + "fab.font.neutral.solid.light": "S:7c7316651f73a2d97d1d281c40c60ea04fb557b0,", + "fab.font.neutral.solid.dark": "S:d99116eb12af8b8f1dfff128435266f93fe53069,", + "fab.font.neutral.outline.light": "S:4e2bfb0fb3cf8178c5f92b14ed9e07a9c081b8d1,", + "fab.font.neutral.outline.dark": "S:c5d513baa7dd50fa7187946b6439f13a0c20b1ab,", + "fab.font.neutral.clear.light": "S:1e82fef827484f0bf26f77727d1b1613b4c3aba4,", + "fab.font.neutral.clear.dark": "S:55cccdc027e56fef0edd16c7ac5aa7eb2013db7e,", + "fab.font.neutral.transparent.light": "S:65f4164ddf1746ca302a6893fa48b90d95fabf26,", + "fab.font.neutral.transparent.dark": "S:a8c25d727dd4b2107098c344a191fda0f0d5cacc,", + "fab.font.danger.solid.light": "S:4f971d1b6e5223e0768d0856185c3100991e7715,", + "fab.font.danger.solid.dark": "S:615ee681a1e496cc0903f60fb707ed7f76f670b6,", + "fab.font.danger.outline.light": "S:8741a29d39368c4806c94ee4e10696e7d2d7b52f,", + "fab.font.danger.outline.dark": "S:c24691323d8d5644e4f839a94279632eef9e3d27,", + "fab.font.danger.clear.light": "S:432cc47f645578d52058b0a32e71dcceb2c27550,", + "fab.font.danger.clear.dark": "S:eda93904fa4476dfa692f041d1ae43558bb8cf8f,", + "fab.font.danger.transparent.light": "S:ae81a8c9ff5a24316bcbd766c7aa4069a960d5f6,", + "fab.font.danger.transparent.dark": "S:5a1cb81061b8ad3b5d15bdadafaa96bd269f5be5,", + "fab.icon.brand.solid.light": "S:81a7d4dcfaef32c079db9a181f93234c16f03303,", + "fab.icon.brand.solid.dark": "S:21325aa285e672bc773c2b1ca3b45694648adcdb,", + "fab.icon.brand.outline.light": "S:9725df33208dd26ef970c6ec407e9549ae3e27b5,", + "fab.icon.brand.outline.dark": "S:943336f4351cd0578403d1ac7a4d2eb049e58038,", + "fab.icon.brand.clear.light": "S:7b41c424d6d43439158e852afca3ecc4879c68c3,", + "fab.icon.brand.clear.dark": "S:0209e34abf08a3748f1c017de6ca04407d1f24ec,", + "fab.icon.brand.transparent.light": "S:0d69f2196d70b057296fb229c7d31607298fdfd0,", + "fab.icon.brand.transparent.dark": "S:f6962099346882882e98104ff08ebe0ba1374f08,", + "fab.icon.inverse.solid.light": "S:c19c8ef78ffad88d24a0ca56ffe90d24d85d3a53,", + "fab.icon.inverse.solid.dark": "S:fb1858fc2616f804686f055d379d8c0c99005e02,", + "fab.icon.inverse.outline.light": "S:21803c6456f48209cbde4a98b58f1d2f69bdae6c,", + "fab.icon.inverse.outline.dark": "S:6b26325108a1a6da51a0c561034d54eb68f02e6f,", + "fab.icon.inverse.clear.light": "S:91c1f1ef69bd21f34f9c72b24233b868e5ffa432,", + "fab.icon.inverse.clear.dark": "S:8f4d3756bcfa4276a98d6b5a61e8d3f97a12eeca,", + "fab.icon.inverse.transparent.light": "S:1293e84a59bcf4653f65d196ad8f646cc22120c4,", + "fab.icon.inverse.transparent.dark": "S:02b13cc89af23516f4ee3f12ab93fb3121ae984d,", + "fab.icon.neutral.solid.light": "S:f61fdc2bf2329d65252631f0788eb39bc603e7fe,", + "fab.icon.neutral.solid.dark": "S:c1216b409c430c1cfcfdb6d2ac5e4e575706d0a8,", + "fab.icon.neutral.outline.light": "S:d08cebd573da8fefff690d3fe3e89f6d22ace3ff,", + "fab.icon.neutral.outline.dark": "S:9eb2b2d7d7e57478b5b0d705029a38f2a99814dd,", + "fab.icon.neutral.clear.light": "S:181c0465edf07b98f6cf4324052bbdef3266f9b8,", + "fab.icon.neutral.clear.dark": "S:f4965e149db9d7921bcb72c1962d64e7d6c83350,", + "fab.icon.neutral.transparent.light": "S:a9ee00a0ff35a5f8588c4b53addbae5de8575b62,", + "fab.icon.neutral.transparent.dark": "S:350afeb494cb53e50dd315e8dcc0328877d7932e,", + "fab.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", + "fab.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", + "fab.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", + "fab.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", + "fab.icon.danger.clear.light": "S:c24a2b5bfa9655777cc888f9706e28ff9b424ac6,", + "fab.icon.danger.clear.dark": "S:83f59a42749045bc176c76eff33bae3d78d57760,", + "fab.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", + "fab.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", + "fab.border.brand.light": "S:0a487125d5f58c91b426b23486b6c0aadf59541a,", + "fab.border.brand.dark": "S:ff9ccecf20101a5ec706984a6aef21c387289e1a,", + "fab.border.inverse.light": "S:bbc6d04a67d5af3d498fd848feeffddcd2aebeb1,", + "fab.border.inverse.dark": "S:7cabf2db07e740256356e1a258f47f93f4de70ad,", + "fab.border.neutral.light": "S:e6886e133cdff23972c5e15246ee37582150a756,", + "fab.border.neutral.dark": "S:1edf76a1774c4e32e9ae091278d4b44c1e500595,", + "fab.border.danger.light": "S:08b70e12351771cbe47f05f9411640bba734f4a4,", + "fab.border.danger.dark": "S:05ecd2230432bfac13daa1732bb3d4f9af41b10f,", + "fab.background.brand.light": "S:9ac99a92c95b9cfe1cdb3e34588b1f11efa19610,", + "fab.background.brand.dark": "S:f6e2deace9b6dd48b910a426a510fde31cc0db92,", + "fab.background.inverse.light": "S:bab00cecb69ae753c9250a25568cf8dfa0a577be,", + "fab.background.inverse.dark": "S:1c77b198189e9321cb9bbd232609708563fee263,", + "fab.background.neutral.light": "S:71762a3ba06a95fcf1b11b376001d247582842f3,", + "fab.background.neutral.dark": "S:c1b1717848f0b10f15e25cec75d82d8c78c38275,", + "fab.background.danger.light": "S:00ac2274658d2870de79c6619dc3e4d72300f87e,", + "fab.background.danger.dark": "S:8e1ee57c6f283567fb11d0ff3fe8dd5a75e83e6b,", + "button.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", + "button.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", + "button.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", + "button.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", + "button.font.brand.outline.light": "S:a929ca685859c1fc5e7faf543728b2edf3b5f243,", + "button.font.brand.outline.dark": "S:7beb60e35440fb45e91d24d8acc14db5b1533bb4,", + "button.font.brand.transparent.light": "S:74cfdb55361a2fcfdf0e79657b1aa9b3e6cffb8c,", + "button.font.brand.transparent.dark": "S:8d19dd77778ab4642015721ce060bd7ec15f240d,", + "button.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", + "button.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", + "button.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", + "button.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", + "button.font.inverse.outline.light": "S:625d9574b0882315179cfc86548ed6471b4d016a,", + "button.font.inverse.outline.dark": "S:a58a68dd030763cd3b979f3c9c8b53d55cb9904b,", + "button.font.inverse.transparent.light": "S:57697b05e86e28fec3897f4cd70e8d71cd10ca9b,", + "button.font.inverse.transparent.dark": "S:c22b36e585444176b35d2985759be4ab13f7912f,", + "button.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", + "button.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", + "button.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", + "button.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", + "button.font.neutral.outline.light": "S:8f1c1a86e08810a6cc0ce7394e4c8ddf6cf7cb4d,", + "button.font.neutral.outline.dark": "S:c7418479a6a19078629d08ff0d250434dd7aa6d8,", + "button.font.neutral.transparent.light": "S:3d2e4e2536be873c087f6b6181332bf2ce825c42,", + "button.font.neutral.transparent.dark": "S:1a2ab9b9fdc12ddf69da58e4784f878a6c75fc66,", + "button.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", + "button.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", + "button.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", + "button.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", + "button.font.danger.outline.light": "S:9cfd1204a77cb867927a91597db7211a001d3a04,", + "button.font.danger.outline.dark": "S:9d611a3ad95a4e7c417d38dcf707aa9dfd4b1da8,", + "button.font.danger.transparent.light": "S:6399b4fb7079f55df8a107aa677eacad644890c9,", + "button.font.danger.transparent.dark": "S:957fbc6785acc68533d73f89c39099f0da9feaf9,", + "button.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", + "button.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", + "button.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", + "button.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", + "button.icon.brand.outline.light": "S:96930a17711f286e1a97b8b7ca57a1c37431a621,", + "button.icon.brand.outline.dark": "S:6a8c3b2e8887bf20eab6a4f1e3ae0ed577ec662b,", + "button.icon.brand.transparent.light": "S:e76ac2dd6b78f85c7892ae2f30e58e8325587168,", + "button.icon.brand.transparent.dark": "S:33667181ea79a9be22a25c217678cd18dd0018a4,", + "button.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", + "button.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", + "button.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", + "button.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", + "button.icon.inverse.outline.light": "S:80c8d7dcc226ba8c08f306b5c6729d81de95efb6,", + "button.icon.inverse.outline.dark": "S:9137cbda0b1d79a7a6daff11f72580e2a6fda301,", + "button.icon.inverse.transparent.light": "S:1d9ed9e6c0eca660882d7c5705d97d7eb4455e72,", + "button.icon.inverse.transparent.dark": "S:8a8366de3e4b5f5ac023b2c703cc641c21a4453b,", + "button.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", + "button.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", + "button.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", + "button.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", + "button.icon.neutral.outline.light": "S:933927902689b45a97c31f92ab03e1dabfa62bdb,", + "button.icon.neutral.outline.dark": "S:1d09040ccbfbdc3f8f89047c3eaab5dc24b7463c,", + "button.icon.neutral.transparent.light": "S:b3eb473ce8edf72285c36f6fb42680395ef7d7c1,", + "button.icon.neutral.transparent.dark": "S:060673768cd2545a55330e2a6c2c67e82627bbf2,", + "button.border.brand.solid.light": "S:bd7ea9269499e13add0ce3b7c573f0d5cf43477f,", + "button.border.brand.solid.dark": "S:c675794954c819b4aa0f731b8a492dda370f1b1b,", + "button.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", + "button.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", + "button.border.brand.outline.light": "S:5942ca53e46c9c4d7505a40a90b90a8ae3c87afa,", + "button.border.brand.outline.dark": "S:1206b15553941f23d821e3ac2e2356e86733333c,", + "button.border.inverse.solid.light": "S:573938363514bd57d61b7938a8c2337aa45af89b,", + "button.border.inverse.solid.dark": "S:79d49b3abca4ba1459da9ebafe07d1efd4b01763,", + "button.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", + "button.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", + "button.border.inverse.outline.light": "S:75364b4f0c001e011435396de3da6507780ce7d2,", + "button.border.inverse.outline.dark": "S:0f0f21f139a36b68f9c46a82a4f3a0d871225328,", + "button.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", + "button.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", + "button.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", + "button.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", + "button.border.neutral.outline.light": "S:17b18a49ebbd56a80e8d4f01b445d0e3203788a6,", + "button.border.neutral.outline.dark": "S:e31fa7bb3960cdf35f11e1a4f512773f5504100b,", + "button.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", + "button.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d,", + "button.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", + "button.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", + "button.border.danger.outline.light": "S:dac592a30b402672ee19c38cee360264a7823546,", + "button.border.danger.outline.dark": "S:34e2d7edfe99cdb6833425e7d33f7269e801bd35,", + "button.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", + "button.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", + "button.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", + "button.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", + "button.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", + "button.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", + "button.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", + "button.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", + "action.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "action.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "action.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "action.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", + "action.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", + "action.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", + "action.icon.default.light": "S:8e518d426b026095e1e2447382abefa9f39e0a62,", + "action.icon.default.dark": "S:23c6ffac8513cab9923d448b3557897ede1cbaf9,", + "action.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", + "action.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", + "action.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "action.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "action.background.active.light": "S:ef2a2a44d264ec06e2c24185b8f5ed7f931652ed,", + "action.background.active.dark": "S:2ae52fe76f9def32610a5350625d32781b6b06f4,", + "action.indicator.light": "S:dba58a89b82ed1ddcbe79772d66e6064b0ff21f1,", + "action.indicator.dark": "S:b2c7c4f184b2ee2bb12274865ab84dc5f2eaee09,", + "action.loader-icon.light": "S:bf9fb786f9562fa5988589c2336e82d8b56f3e34,", + "action.loader-icon.dark": "S:5531396af52cc9e186d10da418be5f6bb2b364ee,", + "accordion.heading.light": "S:db3aa5453c145e02177ac3004f0594e2094b7859,", + "accordion.heading.dark": "S:0e150e73c0b5e8e7bebfadc132c82e875d1392e6,", + "accordion.description.light": "S:cb01ae66ab41b4df8b4683fef5cc6030de18b079,", + "accordion.description.dark": "S:799bc4c7335cb1325182383cfc46902f4b2dd826,", + "accordion.icon.default.light": "S:4c312a90804f5d51d09c53e4b11c1242f8e02874,", + "accordion.icon.default.dark": "S:6259901f0c5506a8f30b3e1e700479f5d77dcfbf,", + "accordion.icon.expanded.light": "S:6b7abfb35f13b21b1f737a2d191300e91213b8ac,", + "accordion.icon.expanded.dark": "S:35fc92032f856c36c572170c7ad2524925a76062,", + "accordion.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "accordion.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "accordion.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "accordion.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "accordion-item.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", + "accordion-item.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", + "accordion-item.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", + "accordion-item.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", + "accordion-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "accordion-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "accordion-item.icon.expanded.light": "S:e86ffc1b86f516ff744eb2b695fea0f7e6a06250,", + "accordion-item.icon.expanded.dark": "S:587b66cd00f9aa16f13bafd05481e6d3fc2bfc52,", + "accordion-item.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "accordion-item.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "accordion-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "accordion-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "semantic.ui.color.foreground.current.light": "S:6f322dcea6ed2d12012f28be4a31b05432ece061,", + "semantic.ui.color.foreground.current.dark": "S:7843aa25183f4168e7e37abc38238f90178fbe20,", + "tree-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", + "tree-item.font.default.md": "S:dfd9085fe214c3c65b4140511eb8fa5ae2b7d7c6,", + "tree-item.font.default.lg": "S:94893ba1668f2671af99cbef2e35361cd7d3d60b,", + "tree-item.font.selected.sm": "S:688d88aa531f806ed7f5472dbd94cb111b282e9a,", + "tree-item.font.selected.md": "S:744e56dc530590684c79e51206e6047cc86acbeb,", + "tree-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", + "[comp-name].font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "[comp-name].font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "[comp-name].font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "stepper-item.font.heading.sm": "S:1e0c0a8d8b98fece995eb611ce2ff9ef65f7e806,", + "stepper-item.font.heading.md": "S:f189fcc3de5a8358ef687df77bf0deb0f85bba70,", + "stepper-item.font.heading.lg": "S:d3502de4e5c99a402472633c0b6cf357c1435e6e,", + "stepper-item.font.description.sm": "S:e4ebff926d9e4d2f4b9b20ef895b87979b82bacc,", + "stepper-item.font.description.md": "S:f4935fb349d8c9121e9af89a9779bbf3202db6b2,", + "stepper-item.font.description.lg": "S:23af9aa67ad9cf7d3bbdec0a84a3a9decaa099a2,", + "stepper-item.font.context.sm": "S:da64e75edca6fca30de3e1bb0224f0d71452b4f5,", + "stepper-item.font.context.md": "S:755519eba87a336180ceaa2605e11f468c4bfa2d,", + "stepper-item.font.context.lg": "S:a50a4612be56085023ef5aad149ba7b5ba7e4261,", + "stepper.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "stepper.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "stepper.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "slider-range.font.label.sm": "S:3c52e9febe91b29e725fe7d80c29fef2d9b5304f,", + "slider-range.font.label.md": "S:3d1397ecccc7d5fe555c3d57bd081d587e468d94,", + "slider-range.font.label.lg": "S:1558a5452382203a11e794098beea7c6fc77f0f9,", + "slider-range.font.tick-label.sm": "S:2c4dd5f42c8263a765ca18d47fb41900873b062b,", + "slider-range.font.tick-label.md": "S:29d5fea877a47f3342e5542a1b14a9822ae13f9c,", + "slider-range.font.tick-label.lg": "S:a567c9fca15dcc7956f9066621efd7bc74221009,", + "slider-histogram-range.font.label.sm": "S:759ce3b6398496d7a3a921b873575fb97ad1040a,", + "slider-histogram-range.font.label.md": "S:70bebdb916afab88089bc68f9e14d4a656feff97,", + "slider-histogram-range.font.label.lg": "S:7595a2c42b9e0710c52e29c3308fb7d042e7fbc2,", + "slider-histogram-range.font.tick-label.sm": "S:f445c2950f1652a0633fedf9c2dc8715782ce89a,", + "slider-histogram-range.font.tick-label.md": "S:c1875a12c8c790345d7a04d8722231d761b438ac,", + "slider-histogram-range.font.tick-label.lg": "S:55d3a4b384f0820d7873cd601feca18361d4c7d7,", + "slider-histogram.font.label.sm": "S:c75d1f651f36c38f369359bc3a36a4bddc4e6bbd,", + "slider-histogram.font.label.md": "S:e1c0089362968377b438417c3b40d17b199da129,", + "slider-histogram.font.label.lg": "S:6d8f7beedeaa5cdb293571baf7dc33c7b09fd853,", + "slider-histogram.font.tick-label.sm": "S:0de29859057f04e50e983e043b3095105f836175,", + "slider-histogram.font.tick-label.md": "S:1e030097ec575b0e5c3892cb19fcd411c0b940e0,", + "slider-histogram.font.tick-label.lg": "S:d071e14e28fa5f0af8bea2ac83698f0d7922e117,", + "slider.font.label.sm": "S:2698337ffec19f40e025d304711fce20d6b9c5c1,", + "slider.font.label.md": "S:569302273e42c00f591ba3581f441d661c057b1f,", + "slider.font.label.lg": "S:df88d2326b38829fb0047845d29a6e8c1ae61232,", + "slider.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", + "slider.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", + "slider.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", + "segmented-control.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "segmented-control.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "segmented-control.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "pagination.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "pagination.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "pagination.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "popover.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "popover.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "popover.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "panel-header.font.heading.md": "S:d3220010a05e2cf1f4b9ec9d3632c7ed3cfa01ed,", + "panel-header.font.description.md": "S:5aa51e4226108b89031cec074877397a57ff287e,", + "tooltip.font.standard": "S:d06a201e347559fb01fbd66261b7a3ab8b268fb0,", + "tip.font.heading.md": "S:eab77aa7679588129f70ed6d41460e40c276bb2f,", + "tip.font.description.md": "S:58c7814d3ecb8e164884d4b616646c5cc4d0bc21,", + "rating.chip.value-text.font.sm": "S:96101bf0744e53acc2166a2184aa7f8ae2c2b8c4,", + "rating.chip.value-text.font.md": "S:b10662274e31a3704323fc2cb94b1c233baaf571,", + "rating.chip.value-text.font.lg": "S:4ca681a4eda0db296fad332696a6ed2e8fbbb86e,", + "tabs.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "tabs.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "tabs.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "tab-title.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "tab-title.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "tab-title.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "radio.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "radio.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "radio.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "loader.font.text": "S:e693886a422add0f7bbb617ceba18a5ada5de0da,", + "loader.font.value-text.sm": "S:326d9abc426f0f215ba172af78bfe1fb9ac48bec,", + "loader.font.value-text.md": "S:8e937a8014060d3b991f96d6988982c4a6d5434d,", + "loader.font.value-text.lg": "S:14dd6559ad9eef407904de82098dafba431e98e2,", + "filter.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "filter.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "filter.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "link.font.regular": "S:c408c9ff827ad4b2f4e934f2cd6a143455780c5f,", + "label.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "label.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "label.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "textarea.font.placeholder-value.sm": "S:293d36522a3e65296376698ea5ab8af71a106b9b,", + "textarea.font.placeholder-value.md": "S:3d1ba4fbaad3ce9c299f730c405a6f464768c0fa,", + "textarea.font.placeholder-value.lg": "S:1dec7d49bfcdad89987f6594dc1845bcde45387a,", + "textarea.font.label.sm": "S:c8c425e440b10d31861d8ac6700623f9eaac22ea,", + "textarea.font.label.md": "S:65ccc33f9c807767ddabd49a9844327684096a63,", + "textarea.font.label.lg": "S:efbc82c6d6e640c0c775c00d0f2416eaf94cdd7a,", + "textarea.font.read-only.sm": "S:ab7cdb769603feea0b7f71aa2b7d2c12df56cb77,", + "textarea.font.read-only.md": "S:73d8e090533d54512fda0a03926c46da489c696b,", + "textarea.font.read-only.lg": "S:0aa9864d5ddbb96a6c66904139848e4a27af8085,", + "textarea.font.chat-limit.sm": "S:715a88be81f03c0539a4573a8095ea899279e87a,", + "textarea.font.chat-limit.md": "S:a6aafccb6ad4bfb6e67f2503e562666d7024adf4,", + "textarea.font.chat-limit.lg": "S:e5da8e77c6e39ed414fbd9ae5620564fd78ab3bf,", + "notice.font.title.sm": "S:d70f1bea6234cc6858d1d1f75a9f28f450d36e45,", + "notice.font.title.md": "S:c19b1582367d4adf0efe3affd9d2d1f317c1eb64,", + "notice.font.title.lg": "S:b551c5362270c4048630b15699c214e4d5aca6ce,", + "notice.font.message.sm": "S:f10b3acd1b727d6680a7ec8aa0a1b31a79aeabf3,", + "notice.font.message.md": "S:5d1530252131144227b0d53f16054f3237ad198f,", + "notice.font.message.lg": "S:fda64eb98275bb580931769604a55c0cbc2d1a82,", + "modal.font.header.sm": "S:a4b9d004ad1b17fd1f98b1f2d5bf20d46e265ca1,", + "modal.font.header.md": "S:09bf67955036c958a09976e5162d4423b30b6a93,", + "modal.font.header.lg": "S:82b11c9411411513150be795953c302451b0092e,", + "modal.font.content.sm": "S:f2e10a30773ad893d3104d4c612c5a6bde6f5c58,", + "modal.font.content.md": "S:bc66a4cb8809ac9a25c3abd469bf2925f1b00d4c,", + "modal.font.content.lg": "S:5da5d0c2e707f47a5cba3740883f9b09066cba67,", + "input-week.font.placeholder-value.sm": "S:c4c1a1c43f7b4532758fc28df24207f758ea79c2,", + "input-week.font.placeholder-value.md": "S:a984428988d3f64931867a1feb9ec9cbe9dd73d9,", + "input-week.font.placeholder-value.lg": "S:d920a93d6a0e02cea4df9262a015444243e42296,", + "input-week.font.label.sm": "S:62cbed843b235cfa0528176bfaa03aae055e382e,", + "input-week.font.label.md": "S:a112ff6d6382b8dbdaf47bd6a103ae3b39417a56,", + "input-week.font.label.lg": "S:e3b60489cdc7b219c52204e9a39918df1126ae3a,", + "input-week.font.prefix-suffix.sm": "S:4f9cd41d4c8d1a5d176eb27bbafbac2ae75c43b2,", + "input-week.font.prefix-suffix.md": "S:af690dadf9a92d5d022c2712792e3d1aae424109,", + "input-week.font.prefix-suffix.lg": "S:5636093f0ae11ec401b7f1064a0d581a382ac048,", + "input-week.font.read-only.sm": "S:e52ec852e2509b58161fabd47353cab1bcfdd2a6,", + "input-week.font.read-only.md": "S:1efa7b3ceb3c5ce3ef0591415013e5a4daa9cc10,", + "input-week.font.read-only.lg": "S:70fbb32723c545256e702bc981aa8bd15f621231,", + "input-text.font.placeholder-value.sm": "S:9b9ad19c7ee4a867bf7e3041c29bd49b38616aa5,", + "input-text.font.placeholder-value.md": "S:eed47086f33a21f31fb8155ffa220cf92e8e5528,", + "input-text.font.placeholder-value.lg": "S:ae3d39fefc35a32da1e625975eefed75f36d21ed,", + "input-text.font.label.sm": "S:39aec780fbf549f8dd1b7465766690da38fa2346,", + "input-text.font.label.md": "S:c67f7a5c311e1480e3ff6533deb51c86a06e405b,", + "input-text.font.label.lg": "S:57c0faff0d8272677daa9a74b2c993b45a66f147,", + "input-text.font.prefix-suffix.sm": "S:eef6d4c01e864215be52ec5d9fa4ddd79b9f91c8,", + "input-text.font.prefix-suffix.md": "S:1bd455765402c17deaaa295b57e08e45ebf08486,", + "input-text.font.prefix-suffix.lg": "S:565bb4d777c672310cabb55cbe252ea108ef894d,", + "input-text.font.read-only.sm": "S:9fcbd02b5bed7260f44fd3eef2f018d1bf7bfd0d,", + "input-text.font.read-only.md": "S:71a95c7d383479473bf160f32745546c8ae17e0e,", + "input-text.font.read-only.lg": "S:e691c6b478626e9ba06a010cdee3369ac5f7bff3,", + "input-message.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "input-message.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "input-message.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "input-telephone.font.placeholder-value.sm": "S:574ee0fb8f7c87f87dc8963120ba276467d9342d,", + "input-telephone.font.placeholder-value.md": "S:60cb712501b0c18d6c0dd1e0804aefa8cb8c40c5,", + "input-telephone.font.placeholder-value.lg": "S:302afa3098021aff27fe7e5c4aed5a825f89b3ef,", + "input-telephone.font.label.sm": "S:bf664ee20469fb1c36b8ee94894678d154d1f081,", + "input-telephone.font.label.md": "S:2b7c7f8f915552840c2fe609caf3dca4fe826bdd,", + "input-telephone.font.label.lg": "S:6a7a92cd03ff7d3ac580217da9987c82b048b746,", + "input-telephone.font.prefix-suffix.sm": "S:915ab7aaa98835058e532a62fb032b4c45ab0e76,", + "input-telephone.font.prefix-suffix.md": "S:d9628e1b03c6c9a20b8a87b8f0a9d5172e215242,", + "input-telephone.font.prefix-suffix.lg": "S:5f2e5cc5f771d6da65cc327d36132ebc866e42ad,", + "input-telephone.font.read-only.sm": "S:9663ffa7a8fdda48252ce5ac6651b05d5ad20f61,", + "input-telephone.font.read-only.md": "S:357b5b32f5f547bd1b2acb5d05dd94487104a3ac,", + "input-telephone.font.read-only.lg": "S:12f52a478d3d850402d5c64227e4079a191da177,", + "input-search.font.placeholder-value.sm": "S:ae309cdad10c30af14a550a91a974bdd3507b96e,", + "input-search.font.placeholder-value.md": "S:f82454b0aea0426056f621a4572b406e5ac97159,", + "input-search.font.placeholder-value.lg": "S:b13445a024c66e80c67c3a44a7b29a58e0f2d631,", + "input-search.font.label.sm": "S:666c788f7e8b035529f17368e86e9947fbaee8e3,", + "input-search.font.label.md": "S:f4a4ac235f21a88c2a9429d1cc2271c5a2b9c660,", + "input-search.font.label.lg": "S:4222c52b39dac319263df98d0a3785e5bcafe185,", + "input-search.font.prefix-suffix.sm": "S:8fbdd40ce4d74fbc55d73b6c1bbe532790b3b229,", + "input-search.font.prefix-suffix.md": "S:fb18ef8dcdaacd10a877ef277dfb5ac3e65ec9c2,", + "input-search.font.prefix-suffix.lg": "S:ea11ff4863c17418acaf138342ed8ee8e3d71cf0,", + "input-search.font.read-only.sm": "S:bf4332a3de9cd9fe6a9f4f509a2be078dd71a119,", + "input-search.font.read-only.md": "S:e16cb5799c4592a1a5fdfbda98327c7456f84334,", + "input-search.font.read-only.lg": "S:869af49b58c9d0c3323e8d0076daeda7d931695e,", + "input-password.font.placeholder-value.sm": "S:ae69e844461496d3a819aa9a969edaa0e24b9f0d,", + "input-password.font.placeholder-value.md": "S:6a43733658f4543ac26e48cb7272ae788e8a1bda,", + "input-password.font.placeholder-value.lg": "S:c67d16be869fb95c91cf8d72d6aa789e6e8d068f,", + "input-password.font.label.sm": "S:70efcff53e88541ef5ed7a8c85a92e37eb833886,", + "input-password.font.label.md": "S:e559504ba84a8574c80d541b8d708071e8c4acb1,", + "input-password.font.label.lg": "S:0b6c1cc4fae736678a3e0cbfb5abbe0147b83f13,", + "input-password.font.prefix-suffix.sm": "S:d7ee15948d42cd62428f0efc5309bdcaff8424b1,", + "input-password.font.prefix-suffix.md": "S:58fb7178ab3d0c787d0380bd7875767a3d6d52bc,", + "input-password.font.prefix-suffix.lg": "S:30afae0c7b32996fc6d57d307d57f8ba42d06286,", + "input-password.font.read-only.sm": "S:a09896c7c18c845be7b58e7a271c7c2e25ad8cad,", + "input-password.font.read-only.md": "S:58a935f317385fa24913e92a23770963ad1cc9d4,", + "input-password.font.read-only.lg": "S:3dde8b4d2b081fa7c64f36c6867411965ce2c0da,", + "input-number.font.placeholder-value.sm": "S:abb08e1935b98a2517086fde04410e624520d8e9,", + "input-number.font.placeholder-value.md": "S:12568bd478c99a24a837927440efeb45d36e13eb,", + "input-number.font.placeholder-value.lg": "S:caf56decff72e34ff8d163b22847fcee8d4bfd94,", + "input-number.font.label.sm": "S:3c6678c73d397107d1b4a6ba1079e0e4072bfc02,", + "input-number.font.label.md": "S:b84312ae8ce95b2f2c3461ac820d0358efd283e1,", + "input-number.font.label.lg": "S:11a1e2ce90c327bb6289f0c12a22b242eedb23c9,", + "input-number.font.prefix-suffix.sm": "S:10a6f6f881eb4ef9439e1f77cd7871f3f27f803c,", + "input-number.font.prefix-suffix.md": "S:e73f3a4bacbf39cd99cc6f46d186387750f9c6ab,", + "input-number.font.prefix-suffix.lg": "S:03d25e1f97cf768be3721396971b354caae8ceca,", + "input-number.font.read-only.sm": "S:608192b5fa5c8910dcab170c5676fb650d19d364,", + "input-number.font.read-only.md": "S:db31de837c3d364a5c50abf3176bd5b04b35d852,", + "input-number.font.read-only.lg": "S:409af4e28352236952de46e60055abdb6e5cd955,", + "input-month.font.placeholder-value.sm": "S:f121f93280cf5f0dc3fe19d33425a06b69796c25,", + "input-month.font.placeholder-value.md": "S:1ac05255dce60e4f7dc5a6266cf4098f81936136,", + "input-month.font.placeholder-value.lg": "S:93e6dd73fdaf0b3c612cc90ebad4e81ca6977ad1,", + "input-month.font.label.sm": "S:ba77dba60b0db22eae7fa2a7b92a3ee973c2609b,", + "input-month.font.label.md": "S:b4c519eb9053f351c30e9e10b7d12a5ff733295f,", + "input-month.font.label.lg": "S:b1280f4e8220e178699ad47b3f7fa087d5b965a3,", + "input-month.font.prefix-suffix.sm": "S:c09c77d8db909546046e447799601fdf9fde6e8c,", + "input-month.font.prefix-suffix.md": "S:b30281f9a510be2ffebe86dfdf2fe0d695653d8b,", + "input-month.font.prefix-suffix.lg": "S:d75129caaea04b466da62d96b4dab17bf2ddc51b,", + "input-month.font.read-only.sm": "S:e1e88b21e9d579fa3135c9aae97d5433389deeb9,", + "input-month.font.read-only.md": "S:53b24e0864dc920fff2dee44eda3e81751f3bab7,", + "input-month.font.read-only.lg": "S:bd60fa8140e1a091cc2472f4710cbee5f7514463,", + "input-file.font.placeholder-value.sm": "S:28bcdff98556b49ee0f6a1fd8ea844fe895fa8d1,", + "input-file.font.placeholder-value.md": "S:637e4604562dbb7b9782cfe97afecd5c7dec51ac,", + "input-file.font.placeholder-value.lg": "S:fa54c0f5a0f0d91bcf40e9bb715b2cc4783324f9,", + "input-file.font.label.sm": "S:cff54e32a37aca3203b653444b9cbcba04f99aa4,", + "input-file.font.label.md": "S:c17827b8c9f1dd08161cc88c65f62fc8fb29cd19,", + "input-file.font.label.lg": "S:1cb2a18e6bf1c10bedfdfea7acfbf8b8fc1581f3,", + "input-file.font.prefix-suffix.sm": "S:5cdcd0e4ebf2c8e1061983d7c801e037c8b4493f,", + "input-file.font.prefix-suffix.md": "S:8b3c08201462dcfa9753e444847e3b47ef964175,", + "input-file.font.prefix-suffix.lg": "S:41cf851e8c9de71ac5936520a8cd0c2f7a58be3c,", + "input-file.font.read-only.sm": "S:da7c1d407762589d80a753c1e3514265b5ca6749,", + "input-file.font.read-only.md": "S:2d57e0983ca013e1254cd2c3bce3e6f05a82bf83,", + "input-file.font.read-only.lg": "S:715e334990a1ce0d422276501494bdb954af9f34,", + "input-email.font.placeholder-value.sm": "S:c9e8e987ea6d5b4cfc6f007a5c493863d26a14c1,", + "input-email.font.placeholder-value.md": "S:6dfa333d86c8510e4d0d67dfc0522a56774b20f4,", + "input-email.font.placeholder-value.lg": "S:647e441a50ee0b827a4bff5ef35d06af42b012fc,", + "input-email.font.label.sm": "S:a5a63c06f17bc2ee2321f843d644eca755ff100c,", + "input-email.font.label.md": "S:30a95a828006d1b93eac0afa187a73c9c7f06584,", + "input-email.font.label.lg": "S:1770a1fe0f24887cbde9845dff54d8a9d1dc5e5e,", + "input-email.font.prefix-suffix.sm": "S:d2d8c557cc62e371ee7ed44bb6389fc319e8dd66,", + "input-email.font.prefix-suffix.md": "S:acf64cf6df150fcb98dd7c75ef101aaa14a894b9,", + "input-email.font.prefix-suffix.lg": "S:6cdf2eb29340ce2bebfe7425b41bd1516c15835a,", + "input-email.font.read-only.sm": "S:044a797bf008f5fc630101ca38a79892745bfa11,", + "input-email.font.read-only.md": "S:4aa83bcbe3a4272e7f77e70517d248ba12031e23,", + "input-email.font.read-only.lg": "S:ebf6bba1b41b7fdf23fdfc6f1d64792d9bbc8233,", + "input-datetime-local.font.placeholder-value.sm": "S:16ff139f3a3674ed90260dfc60fee79a41be9800,", + "input-datetime-local.font.placeholder-value.md": "S:80556bbaa8078038871e60fac28e32922cab5e4e,", + "input-datetime-local.font.placeholder-value.lg": "S:f50e004f28f21c646f06b92cf323b28d21fd5ad5,", + "input-datetime-local.font.label.sm": "S:2502a8cd5ccf777426b9f251cd807613ebd6991f,", + "input-datetime-local.font.label.md": "S:d6dcf1e3f6ac0d7eb761552c571602179acba22c,", + "input-datetime-local.font.label.lg": "S:46864e6240ed80c4eed3175e42e43c27193fae40,", + "input-datetime-local.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-datetime-local.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-datetime-local.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-date-picker.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-date-picker.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-date-picker.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-date-picker.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-date-picker.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-date-picker.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-date-picker.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-date-picker.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-date-picker.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "date-picker.font.date.sm": "S:076aac1ce1f45e740d83d11ccf5c0372c63982fb,", + "date-picker.font.date.md": "S:85386bc63729e94eb607ba5fb8b391b902092a3a,", + "date-picker.font.date.lg": "S:7c6580521bcdbdfc7bb20f11d228412e30ed2745,", + "date-picker.font.day.sm": "S:97c9f51cd9020c2183f12f022475331f59cf4afb,", + "date-picker.font.day.md": "S:bd28d711234c47f7a22638ab944067ca5fcb68d8,", + "date-picker.font.day.lg": "S:7879c6c4aa4abbbf15e4970e729d60d5d5d9b0b6,", + "date-picker.font.month.sm": "S:d2815132a05319d69c3b303e10199eef70882454,", + "date-picker.font.month.md": "S:115bcd0db12a861a644f053bf6dc97fa6ee0c4e4,", + "date-picker.font.month.lg": "S:5d9cea67d300b7cc734fe3340321199590d12bf9,", + "combobox.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "combobox.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "combobox.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "card.font.title.md": "S:0bae69e35da98ae2c134d5eaaac5ee00266d4654,", + "card.font.subtile.md": "S:2f7bbe92776fd17b2ab450464cfe7115ff9e2625,", + "card.font.description.md": "S:6c1257c95513416330013fd36c681850d62bc838,", + "block-section.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "block.font.heading.md": "S:42f57fa7a29493c550d9467daeb7fa707a5bc4e4,", + "block.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", + "block.font.content.md": "S:b2c1bb5f4c41d1d2af5feb08ce085d132682c3e3,", + "avatar.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "avatar.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "avatar.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "alert.font.title.sm": "S:3ce9291673796d12312501274a38efcf55f6b482,", + "alert.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", + "alert.font.title.lg": "S:051bc74df8ad468b012d4a69124462a7bd88ac16,", + "alert.font.message.sm": "S:62cbe66d7a194cf143b483c76e81b3ef7faec7e4,", + "alert.font.message.md": "S:914616baac8f924bb3068d03da85a3d7598a4eed,", + "alert.font.message.lg": "S:09c48ee987903ee44f92b7fd85f5e4dea0ead949,", + "dropdown.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "dropdown.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "dropdown.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "chip.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "chip.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "chip.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "checkbox.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "checkbox.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "checkbox.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "fab.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "fab.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "fab.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "button.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "action.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "action.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "action.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "accordion-item.font.heading.sm": "S:22cd3c704f1ff153a930b1de5482c90d06b68463,", + "accordion-item.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "accordion-item.font.heading.lg": "S:26e38b824652312797550c4393b9af9201d16410,", + "accordion-item.font.descrition.sm": "S:f228bade32be994f29a47ae05d541bc1f127b991,", + "accordion-item.font.descrition.md": "S:74815d27fbc39d0e8e0221d98771575763398a36,", + "accordion-item.font.descrition.lg": "S:f248373f8c30765addca512c0a58e0471cdbbd92,", + "popover.shadow.sm": "S:d3f59b69bf8cbdbfecf9c9eb839fbe755847ca0b,", + "popover.shadow.md": "S:83c9de48711cc62ca0b49f2b62a7d94e4e5ef4ab,", + "popover.shadow.lg": "S:fcbcc482d2a266968c0e307b437f8e2b1fbf4471,", + "notice.shadow.sm": "S:ab73ce018c5358056cceaf952c586443ac374bc7,", + "notice.shadow.md": "S:17e9862a4da6add3f4b67b69423bc763ccb8828b,", + "notice.shadow.lg": "S:29419949b577e61066c3a93422fdb28699bd484d,", + "alert.shadow": "S:da1daed980d1d213e4a1bef7afcb9221ee263cde,", + "action-pad-grid.shadow.sm": "S:6b769f5ba81ade8ac303040b77f45e636dcf2e4c,", + "action-pad-grid.shadow.md": "S:95c0f4b965840205e8b3d816ad7afd00c36cd80a,", + "action-pad-grid.shadow.lg": "S:76cc4c7aff5867d52366b534031695737d912e6f,", + "action-pad.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", + "action-pad.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", + "action-pad.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5," } } ] \ No newline at end of file diff --git a/tokens/component/button.json b/tokens/component/button.json index 5669c1ba910..2a36f03add1 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -546,31 +546,47 @@ "type": "sizing" } }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } } }, - "space-around": { + "space-between": { "sm": { - "value": "$core.spacing.7", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.9", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.7", "type": "spacing" } } diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index 5669c1ba910..1d6c58ba883 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -1,5 +1,5 @@ { - "button": { + "split-button": { "font": { "brand": { "solid": { @@ -44,15 +44,15 @@ } }, "sm": { - "value": "$semantic.font.default.bold.-2h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.regular.0h", "type": "typography" }, "inverse": { @@ -451,6 +451,16 @@ "value": "$semantic.ui.color.brand.default.dark", "type": "color" } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } } }, "inverse": { @@ -463,10 +473,30 @@ "value": "$semantic.ui.color.inverse.dark", "type": "color" } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } } }, "neutral": { "solid": { + "light": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "outline-fill": { "light": { "value": "$semantic.ui.color.foreground.1.light", "type": "color" @@ -487,6 +517,16 @@ "value": "$semantic.ui.color.danger.default.dark", "type": "color" } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } } } }, @@ -542,36 +582,218 @@ "type": "sizing" }, "lg": { - "value": "$core.sizing.7", + "value": "$core.sizing.9", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.7", "type": "spacing" } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" + "content": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "dropdown": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + }, + "divider": { + "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + } + }, + "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.foreground.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.3.dark", + "type": "color" + } + } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } } } } From 78011e635defaae208302c40b0ece605100b733a Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 10:52:26 +0200 Subject: [PATCH 557/696] Updates --- tokens/component/button.json | 80 +++++++++++++++--------------- tokens/component/split-button.json | 64 ++++++++---------------- 2 files changed, 62 insertions(+), 82 deletions(-) diff --git a/tokens/component/button.json b/tokens/component/button.json index 2a36f03add1..09f920a8a2c 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -312,16 +312,6 @@ }, "border": { "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, "outline-fill": { "light": { "value": "$semantic.ui.color.brand.default.light", @@ -344,16 +334,6 @@ } }, "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, "outline-fill": { "light": { "value": "$semantic.ui.color.inverse.light", @@ -376,16 +356,6 @@ } }, "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, "outline-fill": { "light": { "value": "$semantic.ui.color.inverse.light", @@ -408,16 +378,6 @@ } }, "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, "outline-fill": { "light": { "value": "$semantic.ui.color.danger.default.light", @@ -451,6 +411,16 @@ "value": "$semantic.ui.color.brand.default.dark", "type": "color" } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } } }, "inverse": { @@ -463,6 +433,16 @@ "value": "$semantic.ui.color.inverse.dark", "type": "color" } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } } }, "neutral": { @@ -475,6 +455,16 @@ "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } } }, "danger": { @@ -487,6 +477,16 @@ "value": "$semantic.ui.color.danger.default.dark", "type": "color" } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } } } }, diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index 1d6c58ba883..c349d9f8ca3 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -312,16 +312,6 @@ }, "border": { "brand": { - "solid": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, "outline-fill": { "light": { "value": "$semantic.ui.color.brand.default.light", @@ -344,16 +334,6 @@ } }, "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, "outline-fill": { "light": { "value": "$semantic.ui.color.inverse.light", @@ -376,16 +356,6 @@ } }, "neutral": { - "solid": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, "outline-fill": { "light": { "value": "$semantic.ui.color.inverse.light", @@ -408,16 +378,6 @@ } }, "danger": { - "solid": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - }, "outline-fill": { "light": { "value": "$semantic.ui.color.danger.default.light", @@ -786,11 +746,31 @@ }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } } From a41291a6f2e7a4fa5796a81ba6a5c89fe06bfc5e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 11:45:47 +0200 Subject: [PATCH 558/696] Updates --- tokens/calcite/light.json | 150 +++++++++++++++++++++++++++++ tokens/component/button.json | 54 +++++++++-- tokens/component/split-button.json | 54 +++++++++-- 3 files changed, 246 insertions(+), 12 deletions(-) diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 60b367ebe7f..971e703b4d6 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1798,6 +1798,156 @@ "type": "color" } } + }, + "button": { + "font": { + "brand": { + "solid": { + "value": "$button.font.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.brand.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.font.brand.outline.light", + "type": "color" + }, + "transparent": { + "value": "$button.font.brand.transparent.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$button.font.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.font.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$button.font.inverse.transparent.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$button.font.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.font.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$button.font.inverse.transparent.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$button.font.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.danger.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.font.danger.outline.light", + "type": "color" + }, + "transparent": { + "value": "$button.font.danger.transparent.light", + "type": "color" + } + } + }, + "icon": { + "brand": { + "solid": { + "value": "$button.icon.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.brand.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.font.brand.outline.light", + "type": "color" + }, + "transparent": { + "value": "$button.font.brand.transparent.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$button.font.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.font.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$button.font.inverse.transparent.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$button.font.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.font.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$button.font.inverse.transparent.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$button.font.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.danger.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.font.danger.outline.light", + "type": "color" + }, + "transparent": { + "value": "$button.font.danger.transparent.light", + "type": "color" + } + } + } } } } diff --git a/tokens/component/button.json b/tokens/component/button.json index 09f920a8a2c..8cec5f1552d 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -196,31 +196,31 @@ }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } } @@ -308,6 +308,48 @@ "type": "color" } } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } } }, "border": { diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index c349d9f8ca3..b8db3473c77 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -196,31 +196,31 @@ }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } }, "transparent": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } } @@ -308,6 +308,48 @@ "type": "color" } } + }, + "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "outline-fill": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "outline": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, + "transparent": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + } } }, "border": { From 842bc31ee60155319fb70a16ff8391a5e66befe0 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 12:03:00 +0200 Subject: [PATCH 559/696] Updates --- tokens/calcite/dark.json | 234 ++++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 114 ++++++++++++++++--- 2 files changed, 333 insertions(+), 15 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index b128d792174..f5d6a022b12 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1776,6 +1776,240 @@ "type": "color" } } + }, + "button": { + "font": { + "brand": { + "solid": { + "value": "$button.font.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.brand.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.font.brand.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$button.font.brand.transparent.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$button.font.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.font.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$button.font.inverse.transparent.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$button.font.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.font.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$button.font.inverse.transparent.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$button.font.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.font.danger.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.font.danger.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$button.font.danger.transparent.dark", + "type": "color" + } + } + }, + "icon": { + "brand": { + "solid": { + "value": "$button.icon.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.icon.brand.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.icon.brand.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$button.icon.brand.transparent.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$button.icon.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.icon.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.icon.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$button.icon.inverse.transparent.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$button.icon.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.icon.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.icon.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$button.icon.inverse.transparent.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$button.icon.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.icon.danger.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.icon.danger.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$button.icon.danger.transparent.dark", + "type": "color" + } + } + }, + "background": { + "brand": { + "solid": { + "value": "$button.background.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.background.brand.outline-fill.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$button.background.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.background.inverse.outline-fill.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$button.background.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.background.inverse.outline-fill.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$button.background.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$button.background.danger.outline-fill.dark", + "type": "color" + } + } + }, + "border": { + "brand": { + "outline-fill": { + "value": "$button.border.brand.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.border.brand.outline.dark", + "type": "color" + } + }, + "inverse": { + "outline-fill": { + "value": "$button.border.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.border.inverse.outline.dark", + "type": "color" + } + }, + "neutral": { + "outline-fill": { + "value": "$button.border.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.border.inverse.outline.dark", + "type": "color" + } + }, + "danger": { + "outline-fill": { + "value": "$button.border.danger.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$button.border.danger.outline.dark", + "type": "color" + } + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 971e703b4d6..a4501e96e7b 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1881,69 +1881,153 @@ "type": "color" }, "outline-fill": { - "value": "$button.font.brand.outline-fill.light", + "value": "$button.icon.brand.outline-fill.light", "type": "color" }, "outline": { - "value": "$button.font.brand.outline.light", + "value": "$button.icon.brand.outline.light", "type": "color" }, "transparent": { - "value": "$button.font.brand.transparent.light", + "value": "$button.icon.brand.transparent.light", "type": "color" } }, "inverse": { "solid": { - "value": "$button.font.inverse.solid.light", + "value": "$button.icon.inverse.solid.light", "type": "color" }, "outline-fill": { - "value": "$button.font.inverse.outline-fill.light", + "value": "$button.icon.inverse.outline-fill.light", "type": "color" }, "outline": { - "value": "$button.font.inverse.outline.light", + "value": "$button.icon.inverse.outline.light", "type": "color" }, "transparent": { - "value": "$button.font.inverse.transparent.light", + "value": "$button.icon.inverse.transparent.light", "type": "color" } }, "neutral": { "solid": { - "value": "$button.font.inverse.solid.light", + "value": "$button.icon.inverse.solid.light", "type": "color" }, "outline-fill": { - "value": "$button.font.inverse.outline-fill.light", + "value": "$button.icon.inverse.outline-fill.light", "type": "color" }, "outline": { - "value": "$button.font.inverse.outline.light", + "value": "$button.icon.inverse.outline.light", "type": "color" }, "transparent": { - "value": "$button.font.inverse.transparent.light", + "value": "$button.icon.inverse.transparent.light", "type": "color" } }, "danger": { "solid": { - "value": "$button.font.danger.solid.light", + "value": "$button.icon.danger.solid.light", "type": "color" }, "outline-fill": { - "value": "$button.font.danger.outline-fill.light", + "value": "$button.icon.danger.outline-fill.light", "type": "color" }, "outline": { - "value": "$button.font.danger.outline.light", + "value": "$button.icon.danger.outline.light", "type": "color" }, "transparent": { - "value": "$button.font.danger.transparent.light", + "value": "$button.icon.danger.transparent.light", + "type": "color" + } + } + }, + "background": { + "brand": { + "solid": { + "value": "$button.background.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.background.brand.outline-fill.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$button.background.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.background.inverse.outline-fill.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$button.background.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.background.inverse.outline-fill.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$button.background.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$button.background.danger.outline-fill.light", + "type": "color" + } + } + }, + "border": { + "brand": { + "outline-fill": { + "value": "$button.border.brand.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.border.brand.outline.light", + "type": "color" + } + }, + "inverse": { + "outline-fill": { + "value": "$button.border.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.border.inverse.outline.light", + "type": "color" + } + }, + "neutral": { + "outline-fill": { + "value": "$button.border.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.border.inverse.outline.light", + "type": "color" + } + }, + "danger": { + "outline-fill": { + "value": "$button.border.danger.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$button.border.danger.outline.light", "type": "color" } } From 308a7cac4c894fc3680279355e6e31d53f9305ba Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 12:19:49 +0200 Subject: [PATCH 560/696] Updates --- tokens/calcite/dark.json | 308 ++++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 308 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 616 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index f5d6a022b12..24cd57d0fb8 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2010,6 +2010,314 @@ } } } + }, + "split-button": { + "font": { + "brand": { + "solid": { + "value": "$split-button.font.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.font.brand.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.font.brand.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.font.brand.transparent.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$split-button.font.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.font.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.font.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.font.inverse.transparent.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$split-button.font.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.font.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.font.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.font.inverse.transparent.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$split-button.font.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.font.danger.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.font.danger.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.font.danger.transparent.dark", + "type": "color" + } + } + }, + "icon": { + "brand": { + "solid": { + "value": "$split-button.icon.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.icon.brand.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.icon.brand.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.icon.brand.transparent.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$split-button.icon.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.icon.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.icon.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.icon.inverse.transparent.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$split-button.icon.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.icon.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.icon.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.icon.inverse.transparent.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$split-button.icon.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.icon.danger.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.icon.danger.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.icon.danger.transparent.dark", + "type": "color" + } + } + }, + "background": { + "brand": { + "solid": { + "value": "$split-button.background.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.background.brand.outline-fill.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$split-button.background.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.background.inverse.outline-fill.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$split-button.background.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.background.inverse.outline-fill.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$split-button.background.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.background.danger.outline-fill.dark", + "type": "color" + } + } + }, + "border": { + "brand": { + "outline-fill": { + "value": "$split-button.border.brand.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.border.brand.outline.dark", + "type": "color" + } + }, + "inverse": { + "outline-fill": { + "value": "$split-button.border.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.border.inverse.outline.dark", + "type": "color" + } + }, + "neutral": { + "outline-fill": { + "value": "$button.border.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.border.inverse.outline.dark", + "type": "color" + } + }, + "danger": { + "outline-fill": { + "value": "$split-button.border.danger.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.border.danger.outline.dark", + "type": "color" + } + } + }, + "divider": { + "brand": { + "solid": { + "value": "$split-button.divider.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.divider.brand.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.divider.brand.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.divider.brand.transparent.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$split-button.divider.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.divider.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.divider.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.divider.inverse.transparent.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$split-button.divider.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.divider.inverse.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.divider.inverse.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.divider.inverse.transparent.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$split-button.divider.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.divider.danger.outline-fill.dark", + "type": "color" + }, + "outline": { + "value": "$split-button.divider.danger.outline.dark", + "type": "color" + }, + "transparent": { + "value": "$split-button.divider.danger.transparent.dark", + "type": "color" + } + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index a4501e96e7b..4198246e13c 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2032,6 +2032,314 @@ } } } + }, + "split-button": { + "font": { + "brand": { + "solid": { + "value": "$split-button.font.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.font.brand.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.font.brand.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.font.brand.transparent.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$split-button.font.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.font.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.font.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.font.inverse.transparent.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$split-button.font.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.font.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.font.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.font.inverse.transparent.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$split-button.font.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.font.danger.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.font.danger.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.font.danger.transparent.light", + "type": "color" + } + } + }, + "icon": { + "brand": { + "solid": { + "value": "$split-button.icon.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.icon.brand.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.icon.brand.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.icon.brand.transparent.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$split-button.icon.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.icon.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.icon.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.icon.inverse.transparent.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$split-button.icon.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.icon.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.icon.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.icon.inverse.transparent.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$split-button.icon.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.icon.danger.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.icon.danger.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.icon.danger.transparent.light", + "type": "color" + } + } + }, + "background": { + "brand": { + "solid": { + "value": "$split-button.background.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.background.brand.outline-fill.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$split-button.background.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.background.inverse.outline-fill.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$split-button.background.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.background.inverse.outline-fill.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$split-button.background.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.background.danger.outline-fill.light", + "type": "color" + } + } + }, + "border": { + "brand": { + "outline-fill": { + "value": "$split-button.border.brand.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.border.brand.outline.light", + "type": "color" + } + }, + "inverse": { + "outline-fill": { + "value": "$split-button.border.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.border.inverse.outline.light", + "type": "color" + } + }, + "neutral": { + "outline-fill": { + "value": "$button.border.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.border.inverse.outline.light", + "type": "color" + } + }, + "danger": { + "outline-fill": { + "value": "$split-button.border.danger.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.border.danger.outline.light", + "type": "color" + } + } + }, + "divider": { + "brand": { + "solid": { + "value": "$split-button.divider.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.divider.brand.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.divider.brand.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.divider.brand.transparent.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$split-button.divider.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.divider.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.divider.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.divider.inverse.transparent.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$split-button.divider.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.divider.inverse.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.divider.inverse.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.divider.inverse.transparent.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$split-button.divider.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$split-button.divider.danger.outline-fill.light", + "type": "color" + }, + "outline": { + "value": "$split-button.divider.danger.outline.light", + "type": "color" + }, + "transparent": { + "value": "$split-button.divider.danger.transparent.light", + "type": "color" + } + } + } } } } From 018448c45edb01b0606ee437e5bbcef1ec247c1c Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 12:31:26 +0200 Subject: [PATCH 561/696] Updates --- tokens/component/button.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokens/component/button.json b/tokens/component/button.json index 8cec5f1552d..0ab7acef9fa 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -591,7 +591,7 @@ "space-around": { "left-right": { "sm": { - "value": "$core.spacing.7", + "value": "$core.spacing.3", "type": "spacing" }, "md": { @@ -599,7 +599,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.7", "type": "spacing" } }, From d815e318fb12dc2163b0b536062b70ff4889da04 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 12:36:34 +0200 Subject: [PATCH 562/696] Updates --- tokens/component/button.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tokens/component/button.json b/tokens/component/button.json index 0ab7acef9fa..f511c89f9ad 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -616,6 +616,20 @@ "value": "$core.spacing.5", "type": "spacing" } + }, + "icon-only": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } } }, "space-between": { From cbef2f7b1e5e103723ab08b40893d4ffdb40754a Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 13:48:27 +0200 Subject: [PATCH 563/696] Updates --- tokens/component/fab.json | 350 +++++++++++++++----------------------- 1 file changed, 138 insertions(+), 212 deletions(-) diff --git a/tokens/component/fab.json b/tokens/component/fab.json index 1c3606de43d..6f7346d918a 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -21,38 +21,18 @@ "value": "$semantic.ui.color.brand.default.dark", "type": "color" } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "transparent": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } } }, "sm": { - "value": "$semantic.font.default.bold.-3h", + "value": "$semantic.font.default.regular.-2h", "type": "typography" }, "md": { - "value": "$semantic.font.default.bold.-1h", + "value": "$semantic.font.default.regular.-1h", "type": "typography" }, "lg": { - "value": "$semantic.font.default.bold.0h", + "value": "$semantic.font.default.regular.0h", "type": "typography" }, "inverse": { @@ -75,8 +55,10 @@ "value": "$semantic.ui.color.text.1.dark", "type": "color" } - }, - "clear": { + } + }, + "neutral": { + "solid": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -86,7 +68,7 @@ "type": "color" } }, - "transparent": { + "outline": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -97,49 +79,53 @@ } } }, - "neutral": { + "danger": { "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.text.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.inverse.dark", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } - }, - "clear": { + } + } + }, + "icon": { + "brand": { + "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } }, - "transparent": { + "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } } }, - "danger": { + "inverse": { "solid": { "light": { "value": "$semantic.ui.color.text.inverse.light", @@ -152,38 +138,38 @@ }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } - }, - "clear": { + } + }, + "neutral": { + "solid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } }, - "transparent": { + "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } } - } - }, - "icon": { - "brand": { + }, + "danger": { "solid": { "light": { "value": "$semantic.ui.color.foreground.1.light", @@ -196,25 +182,19 @@ }, "outline": { "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "clear": { - "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } - }, - "transparent": { + } + } + }, + "border": { + "brand": { + "outline": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -226,111 +206,111 @@ } }, "inverse": { - "solid": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.inverse.dark", "type": "color" } - }, - "clear": { + } + }, + "neutral": { + "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.border.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.border.3.dark", "type": "color" } - }, - "transparent": { + } + }, + "danger": { + "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } } - }, - "neutral": { + } + }, + "background": { + "brand": { "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } - }, - "clear": { + } + }, + "inverse": { + "solid": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.inverse.dark", "type": "color" } }, - "transparent": { + "outline": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } } }, - "danger": { + "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.foreground.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.foreground.3.dark", "type": "color" } }, "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } - }, - "clear": { + } + }, + "danger": { + "solid": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -340,113 +320,29 @@ "type": "color" } }, - "transparent": { + "outline": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } } } }, - "border": { - "brand": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "danger": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, - "background": { - "brand": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "inverse": { - "light": { - "value": "$semantic.ui.color.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.inverse.dark", - "type": "color" - } - }, - "neutral": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "danger": { - "light": { - "value": "$semantic.ui.color.danger.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.danger.default.dark", - "type": "color" - } - } - }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.full", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.full", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.full", "type": "borderRadius" } }, @@ -456,11 +352,11 @@ "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, @@ -484,40 +380,70 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.7", "type": "spacing" } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "icon-only": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } } } } From 77086c2693eb46cf62a96bbfb825ea05e0878620 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 14:05:58 +0200 Subject: [PATCH 564/696] Updates --- tokens/component/split-button.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index b8db3473c77..f8c8114bb53 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -646,6 +646,14 @@ "value": "$core.spacing.4", "type": "spacing" } + }, + "divider": { + "solid": { + "top-bottom": { + "value": "$core.spacing.1", + "type": "spacing" + } + } } }, "divider": { From e9782df66166187d21f9cfd9725f2486622c0e67 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 15:07:17 +0200 Subject: [PATCH 565/696] Updates --- tokens/$themes.json | 1131 +++++++++++++++++++++---------------- tokens/component/fab.json | 32 +- 2 files changed, 675 insertions(+), 488 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 4ea14952cbc..51072b8d469 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -796,14 +796,14 @@ "semantic.font.hierarchy.body-2": "S:c4d02b7fec5d9014e79420d18a7dcc4ad9ce4477,", "semantic.font.hierarchy.overline": "S:8c5923b6a044203bd88b4829f85ff177c9950004,", "semantic.font.hierarchy.caption": "S:b951134acc837c9c2e0fde5059666306d644a89e,", - "tree-item.font.default.light": "S:1f47f54697254bcc70d548961c8b937c11247a1a,", - "tree-item.font.default.dark": "S:ef347ef92cbefd912a70097c22f765af0c8d345c,", + "tree-item.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "tree-item.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", "tree-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", "tree-item.font.selected.dark": "S:b4e880155c844b1765726290556b2d29d0f08f33,", "tree-item.font.children-selected.light": "S:dfd1a09df6ad5d51d017fb59ebcc0b4ae6396ac3,", "tree-item.font.children-selected.dark": "S:b607abfaf491569cb3a94468e43250d5eae4d270,", - "tree-item.icon.default.light": "S:750c0c469dc94e50bd4abd8516d0394fd8bb3562,", - "tree-item.icon.default.dark": "S:f81b7e2e94d6604d466f256610dbee5c1eada3ec,", + "tree-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "tree-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", "tree-item.icon.selected.light": "S:ece20359c4d66506c3bbc5619ee5f4f305878423,", "tree-item.icon.selected.dark": "S:5adbcfb229680d6c9c5722e501a6202edd952b19,", "tree-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", @@ -824,8 +824,8 @@ "switch.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "switch.background.checked.light": "S:0ab45ed9bff22a94a58242207f07e8511f3a81f1,", "switch.background.checked.dark": "S:cbe1f3df2b63dfcfec9daa27715cd5021382308e,", - "switch.border.default.light": "S:1dfe7e0c0de9159a23904a96a499b93c577a07f0,", - "switch.border.default.dark": "S:833c248304051048c79e8f9c55d0eb729331f3a3,", + "switch.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "switch.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "switch.border.checked.light": "S:f19b95f1c4240eb67ccce31f43a4a2b909fc9808,", "switch.border.checked.dark": "S:3d7742ae7dae69c0768ae5d08d439cbaa2a7b078,", "switch.handle.background.default.light": "S:746d55ebf4063086d8b02ca467e617f06f2215a0,", @@ -860,16 +860,16 @@ "stepper-item.font.context.error.dark": "S:dd3d49dadf6070de590566ee4913755255d80318,", "stepper-item.font.context.complete.light": "S:332da58af9bff487a26ccbbdbde4a5c5ee0d4bba,", "stepper-item.font.context.complete.dark": "S:3a1c4f0a7c7946f28090a8055d680bba4bfa988f,", - "stepper-item.icon.default.light": "S:addd3576ae6e30e5b85ccc8dfc0a9e67d33be834,", - "stepper-item.icon.default.dark": "S:cf19f94180906d8e362bb87820a6f735ad036890,", - "stepper-item.icon.active.light": "S:5c8a44ba7e0b94641fc31dac144df6a804ffd7df,", - "stepper-item.icon.active.dark": "S:d9b9eb04bd30e7781c7a5c061e8470cae26c91ea,", + "stepper-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "stepper-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "stepper-item.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", + "stepper-item.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", "stepper-item.icon.error.light": "S:4870f6f31a7bd5c16b5c7f457d0652ce44a45c29,", "stepper-item.icon.error.dark": "S:e156fd5ba38f1d8b86af0cc31e7c7a7845942e16,", - "stepper-item.border.default.light": "S:7648f85df06e35547415b6ea07923b36d43c73ae,", - "stepper-item.border.default.dark": "S:39134821b4ec6a6b3b6774b605cdfb22719bfdb2,", - "stepper-item.border.active.light": "S:beada9a0cc8a1b42443698d59ac5e4c1ff1a046d,", - "stepper-item.border.active.dark": "S:9f679cc5e28b15ea4c99467cda3ab8e31fa27aa1,", + "stepper-item.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "stepper-item.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "stepper-item.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "stepper-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", "stepper-item.border.error.light": "S:334ffb7849b067fc4e31f80ff89b89961d87dd94,", "stepper-item.border.error.dark": "S:7020352ed69885c054a137ec55107272685b832e,", "stepper-item.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", @@ -886,84 +886,84 @@ "stepper.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "stepper.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", "stepper.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "slider-range.font.label.light": "S:25c4a04717d6b7a098344ec2433761c3080b4447,", - "slider-range.font.label.dark": "S:5676ae4bc619a48614aad7f3ce38785bdc9dbe72,", - "slider-range.font.tick-label.light": "S:a43cce7f32e2332e3e2df3e760f5f4d4ff0f3c54,", - "slider-range.font.tick-label.dark": "S:29a2df6e6bf6c457f14968308d0d5b1fd3ac1379,", - "slider-range.handle.background.light": "S:bea36b4e9322cdfa37887b2f3f5e92f80b794213,", - "slider-range.handle.background.dark": "S:4fa75e98914a04af65dae1161c81a4fc841445a9,", - "slider-range.handle.border.light": "S:a3dcc19bc93fc2bff6374c144a9c1a7831f9451a,", - "slider-range.handle.border.dark": "S:fefdf92212b4afb5763d5362eeaa943149318652,", - "slider-range.border.default.light": "S:35f35116c31a26060ae2e47c15b068eee9ece702,", - "slider-range.border.default.dark": "S:50ce01dfd65f12075af70b4840dcc84da110c60c,", - "slider-range.border.active.light": "S:65c1a82c9b29a0ae59aea07c4b7ba84e6d1616b8,", - "slider-range.border.active.dark": "S:710e8c080e0bcf5c66bd2bca8725b8dd3d62f10f,", - "slider-range.tick.default.background.light": "S:6d22885a4a221d6cf6a6e80ed68a043ce366a968,", - "slider-range.tick.default.background.dark": "S:e10612bdf6d5d16cbde6313feeb8f8e3e1a2fd1f,", - "slider-range.tick.default.border.light": "S:34a730b93c96615ae15d7a6c968d3f98491fe49f,", - "slider-range.tick.default.border.dark": "S:304c130dbe548e11c2ee8287cc7009e120ff1a3f,", - "slider-range.tick.active.background.light": "S:5c8aa41e099f0eab8a8433486e7c9b61d341a7dd,", - "slider-range.tick.active.background.dark": "S:acb79f183ba8162a3dc045b155fef8f1fc418419,", - "slider-range.tick.active.border.light": "S:7672da361fba5f5a23963f810e7ddc11a5e43379,", - "slider-range.tick.active.border.dark": "S:1d654e5d7950c45a3d65cf1ea91cb68c9f6fa570,", - "slider-histogram-range.font.label.light": "S:313b58a8fdd7853bc274208bf38aa6d6d89cd3e1,", - "slider-histogram-range.font.label.dark": "S:9c7d6f5c292a49b014a43ecfdcaaff00fc5f56fb,", - "slider-histogram-range.font.tick-label.light": "S:bf503c162829c7392ca0e64676c9c63993fb0b70,", - "slider-histogram-range.font.tick-label.dark": "S:cb1505ea175c0c8de7d76d05ee6ec73e89e9075c,", - "slider-histogram-range.handle.background.light": "S:c16808983fc6aa6c27a65f00ae04228cc63dc6d0,", - "slider-histogram-range.handle.background.dark": "S:ba402c1978cc9a20fc64ee8f3cd23d17b1e704f5,", - "slider-histogram-range.handle.border.light": "S:92f4ea1056907ff706b3deaff282c9f14b4032ab,", - "slider-histogram-range.handle.border.dark": "S:57497d1360ec08c764e08a135f2b20f5646b3c5b,", - "slider-histogram-range.border.default.light": "S:18471d07339d402ad61979fcfe5c6f14983d1493,", - "slider-histogram-range.border.default.dark": "S:9b38cb7d1533df3f33e39a8c6a5e123c6968ef3d,", - "slider-histogram-range.border.active.light": "S:4fb610399faebe042f4d19ff56e1b8ffc4d29552,", - "slider-histogram-range.border.active.dark": "S:7fa8c6e254c31219b33e77c72a14cea40ea63a53,", - "slider-histogram-range.tick.default.background.light": "S:3286a1101e7e396ecb5260594111f201ef4845e3,", - "slider-histogram-range.tick.default.background.dark": "S:d7e24af731b3e3d2ad75acc41f2076f93289a691,", - "slider-histogram-range.tick.default.border.light": "S:c8c38b5cbb8ffdc1caad545a1249ce9ccb34d3f7,", - "slider-histogram-range.tick.default.border.dark": "S:0157d1ac9ff4aa969d7a79177620d677638625c5,", - "slider-histogram-range.tick.active.background.light": "S:29f95f825c93d0063070f97c32a473d7412fc728,", - "slider-histogram-range.tick.active.background.dark": "S:9e3aa1b81234c384755b1f4c0416622216dc8270,", - "slider-histogram-range.tick.active.border.light": "S:bf1cc0038125d14225bf6db429bbf3dd614621b7,", - "slider-histogram-range.tick.active.border.dark": "S:aff7f54de22ac5e66fe9971ad314da5fbe78353b,", - "slider-histogram-range.area.active.background.light": "S:be35c698f7f5aa5d866827d7314eec97eb48d5b4,", - "slider-histogram-range.area.active.background.dark": "S:81a2390191ba720e466c1d2b45282ca3a9240d2e,", - "slider-histogram.font.label.light": "S:dc9ff21e34ca4da681987a9336e841f80cfcd78e,", - "slider-histogram.font.label.dark": "S:03fed78bdf84037a115e994454cd693dd0dac3b3,", - "slider-histogram.font.tick-label.light": "S:c644cc67959c352b1c17c03f88ffc747cf3ea326,", - "slider-histogram.font.tick-label.dark": "S:e0491e32b89261f4c3370d3f64303cd2f7ed63e0,", - "slider-histogram.handle.background.light": "S:1f167c1f73c05c3567675248575cb6bee3fe5246,", - "slider-histogram.handle.background.dark": "S:04e42f091fe107f01b0ffe765956999ec011810a,", - "slider-histogram.handle.border.light": "S:cc509bc1396a5cb5a77f9e7b96f423ab772a740d,", - "slider-histogram.handle.border.dark": "S:db13017beba8a82a7461e4e3a36c16aee70f07e5,", - "slider-histogram.border.default.light": "S:a263b3ece77576816ce429d1e65862ac78d6f0bb,", - "slider-histogram.border.default.dark": "S:6ed1ca574ff4567cdb54cab2e8cfdbccf98313af,", - "slider-histogram.border.active.light": "S:8a650f9d0ceda8c5acf4d27a0e2fdece443fa3ba,", - "slider-histogram.border.active.dark": "S:133a659d12f9ee411faf1aa33918485df29c6862,", - "slider-histogram.tick.default.background.light": "S:8a8f585dbc92077b73d84aa1d5926c8a1eca7018,", - "slider-histogram.tick.default.background.dark": "S:2528efd156716b9cc44b93092eed4c305f6e04c1,", - "slider-histogram.tick.default.border.light": "S:b10db666ec6b2a4017ab522d4b30f7989193a304,", - "slider-histogram.tick.default.border.dark": "S:789bc8981958dc1ac6c81a3823c04daf4f3188de,", - "slider-histogram.tick.active.background.light": "S:9b900f3275d3efbd68be4ca628fc7339174d5fbf,", - "slider-histogram.tick.active.background.dark": "S:223b59bc19391409c68bd550c7193b15ecafb639,", - "slider-histogram.tick.active.border.light": "S:8fa15768b84a741848bb29832331330fdd8c67ca,", - "slider-histogram.tick.active.border.dark": "S:0ab6eeec0d2bf24d92b86af1f1cfbef093a8160d,", + "slider-range.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "slider-range.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "slider-range.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", + "slider-range.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", + "slider-range.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", + "slider-range.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", + "slider-range.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", + "slider-range.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", + "slider-range.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "slider-range.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "slider-range.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "slider-range.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "slider-range.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", + "slider-range.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", + "slider-range.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", + "slider-range.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", + "slider-range.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", + "slider-range.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", + "slider-range.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", + "slider-range.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", + "slider-histogram-range.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "slider-histogram-range.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "slider-histogram-range.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", + "slider-histogram-range.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", + "slider-histogram-range.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", + "slider-histogram-range.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", + "slider-histogram-range.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", + "slider-histogram-range.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", + "slider-histogram-range.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "slider-histogram-range.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "slider-histogram-range.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "slider-histogram-range.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "slider-histogram-range.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", + "slider-histogram-range.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", + "slider-histogram-range.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", + "slider-histogram-range.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", + "slider-histogram-range.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", + "slider-histogram-range.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", + "slider-histogram-range.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", + "slider-histogram-range.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", + "slider-histogram-range.area.active.background.light": "S:c89c4d11164ed977c2c0e97abe8f82386ac87c7f,", + "slider-histogram-range.area.active.background.dark": "S:91077d887efcf9f4b14ad27f16be3585dc657cdf,", + "slider-histogram.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "slider-histogram.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "slider-histogram.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", + "slider-histogram.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", + "slider-histogram.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", + "slider-histogram.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", + "slider-histogram.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", + "slider-histogram.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", + "slider-histogram.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "slider-histogram.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "slider-histogram.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "slider-histogram.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "slider-histogram.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", + "slider-histogram.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", + "slider-histogram.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", + "slider-histogram.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", + "slider-histogram.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", + "slider-histogram.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", + "slider-histogram.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", + "slider-histogram.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", "slider-histogram.area.active.background.light": "S:c89c4d11164ed977c2c0e97abe8f82386ac87c7f,", "slider-histogram.area.active.background.dark": "S:91077d887efcf9f4b14ad27f16be3585dc657cdf,", "slider-histogram.active-end.background.light": "S:8d8d3af5d1021f90b1327dc018d5dd21e6c43693,", "slider-histogram.active-end.background.dark": "S:42a2ced53672247a20f98edb87562a99a5aca41d,", - "slider.font.label.light": "S:b84d30015ec694e0c8bfb981aa1d08e8d4fec4ff,", - "slider.font.label.dark": "S:4d526e4974df53102e5b1463241b8a07433b1af8,", + "slider.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "slider.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", "slider.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", "slider.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", "slider.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", "slider.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", "slider.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", "slider.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", - "slider.border.default.light": "S:3e71142c7b7fcd2b1cb22796617d5dc067b4e0fc,", - "slider.border.default.dark": "S:0a94fbd462fd7a89aafa921c38b9d51eb3fba252,", - "slider.border.active.light": "S:41c56d650bc1b4ef11d50890234b8046a344aa29,", - "slider.border.active.dark": "S:ccb2a496ddbeffda68a2af4ec7625570eb5d543e,", + "slider.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "slider.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "slider.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "slider.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", "slider.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", "slider.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", "slider.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", @@ -972,8 +972,8 @@ "slider.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", "slider.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", "slider.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", - "segmented-control.font.default.light": "S:314e7abeb0ea4f33c4d775b39c8a48ce665830de,", - "segmented-control.font.default.dark": "S:bcc0b7c7e11148b77c236b1e07ffd1b0f3c6dd63,", + "segmented-control.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "segmented-control.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", "segmented-control.font.checked.light": "S:40c18363bec74ce07c70ac651afcd442f0046da8,", "segmented-control.font.checked.dark": "S:1b340cfe17153ee654d067cf22fbf1e890af9726,", "segmented-control.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", @@ -1014,16 +1014,16 @@ "tooltip.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", "tooltip.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", "tooltip.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "tip.font.heading.light": "S:cfc65c18035b8fac7928bd0a609b18a4995757b2,", - "tip.font.heading.dark": "S:6bf8b9db220d75b3779bd5c025a573c86bce015c,", - "tip.font.description.light": "S:4aa862d915b2b119c0e853ebb85fb9c24358155b,", - "tip.font.description.dark": "S:5220352e8e7b660bc584d2b162a947502459992b,", + "tip.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", + "tip.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", + "tip.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", + "tip.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", "tip.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "tip.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", "tip.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "tip.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "tip.border.default.light": "S:5fb53f00b572767cb080741ab7b47d11df628f95,", - "tip.border.default.dark": "S:97938b15fb9cee6efdd1d80dae0f3125444a9d67,", + "tip.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "tip.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "rating.chip.value-text.font.light": "S:11423cc98fa9e43a0b42365d5ea5891e31085b0d,", "rating.chip.value-text.font.dark": "S:0ab47c728381761f98384403f12dae2820e3227f,", "rating.chip.count.font.light": "S:9db37e98cba760e02da719f6c1f8e94a79ce6f47,", @@ -1036,34 +1036,34 @@ "rating.star.background.active.dark": "S:3f4cee2f66b1636cc5f5498324e084ba7fcfb60c,", "rating.star.background.average.light": "S:d1ada06fc9c905264006c3ce38ece1b10157bf48,", "rating.star.background.average.dark": "S:2b295f1ae1097dd5aa7d56c9401d7b054cadc945,", - "tabs.font.default.light": "S:98baa93fbc30f21851afcf22ddd279e098974e7f,", - "tabs.font.default.dark": "S:2a593bc03498698f02f1090dd058ea8f34148805,", + "tabs.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "tabs.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", "tabs.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", "tabs.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", - "tabs.icon.default.light": "S:1ec5acdadcd6ac4d48af860f46ad396956fdda9a,", - "tabs.icon.default.dark": "S:6c7492fe4d6eeecc52b33d43af029b01267a330d,", - "tabs.icon.active.light": "S:075911ce2ccdfb790f45f9f676cf85c565846711,", - "tabs.icon.active.dark": "S:c744f597d282453ddb90b08c4ec32e2ea2004432,", - "tabs.bordered.border.light": "S:1221d1ffb6cceb245f7da4908879fa0b3b723982,", - "tabs.bordered.border.dark": "S:84ee8e344d39094181db3b1de8d507d41bcd6354,", - "tabs.bordered.background.default.light": "S:888bf780072cc1559cc2b4becdfaac670e941a74,", - "tabs.bordered.background.default.dark": "S:4bdc332a3818a0fefe52b32b03cf8f574ed189ed,", - "tabs.border.active.light": "S:8430e5c97e265d0d54059730ead842f31bd61100,", - "tabs.border.active.dark": "S:a65c30bb9f2a68358a622f9677779a358b26b706,", - "tab-title.font.default.light": "S:a4340d1c4d5be6c79fac5aae06f8b2b00462d396,", - "tab-title.font.default.dark": "S:decc85a829dfb5634e33a154da411a890272c0e2,", + "tabs.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "tabs.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "tabs.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", + "tabs.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", + "tabs.bordered.border.light": "S:bd54d03400f3a9f97d97d9656f88c7bf5f46dd02,", + "tabs.bordered.border.dark": "S:0d48699e13a0a4526295bfd5705597f25df40902,", + "tabs.bordered.background.default.light": "S:f6acc31e97b24210b6a778b3972d713a5620aa86,", + "tabs.bordered.background.default.dark": "S:13121a0d01e4fb62e4f35a04239e9cfe749cbb07,", + "tabs.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "tabs.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "tab-title.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "tab-title.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", "tab-title.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", "tab-title.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", - "tab-title.icon.default.light": "S:60099af0b1bfb91fcdaaa64175ffa8650b602d49,", - "tab-title.icon.default.dark": "S:43eb4ac7604e6d1ba193a8bca7582bf6f27fcf4a,", - "tab-title.icon.active.light": "S:ad50be68aee98ad483722e4376d95a4d0e23b4d4,", - "tab-title.icon.active.dark": "S:6a07bb838d1897039389a110ec3959e5033e964a,", + "tab-title.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "tab-title.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "tab-title.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", + "tab-title.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", "tab-title.bordered.border.light": "S:bd54d03400f3a9f97d97d9656f88c7bf5f46dd02,", "tab-title.bordered.border.dark": "S:0d48699e13a0a4526295bfd5705597f25df40902,", "tab-title.bordered.background.default.light": "S:f6acc31e97b24210b6a778b3972d713a5620aa86,", "tab-title.bordered.background.default.dark": "S:13121a0d01e4fb62e4f35a04239e9cfe749cbb07,", - "tab-title.border.active.light": "S:07983141f3efc54a46dd09d87ee30d55701ae16e,", - "tab-title.border.active.dark": "S:9bf0beb42cf3f65fedfe39cd564d25d08af79614,", + "tab-title.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "tab-title.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", "radio.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", "radio.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", "radio.border.unchecked.light": "S:d3f814c271446438e13819ae171d5ab92f739b18,", @@ -1096,10 +1096,10 @@ "link.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", "label.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", "label.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "textarea.font.placeholder-value.light": "S:6966b7754ce4fd11c74bf5ab4dce963f3ad8750b,", - "textarea.font.placeholder-value.dark": "S:e42ca8d40c72598f0b838732d7416d2263d3b101,", - "textarea.font.label.light": "S:5960ba06fe9968ef20770e925db02f359b31e14c,", - "textarea.font.label.dark": "S:914370c047a5cb8e34e3a19be20e1c28196155ac,", + "textarea.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "textarea.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "textarea.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "textarea.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", "textarea.font.chat-limit.light": "S:d036a96c3e40b11a613c327a3a0a7cae0b72fcde,", "textarea.font.chat-limit.dark": "S:14ac320a893a6133618f2c147881beb7caf1d565,", "textarea.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", @@ -1108,12 +1108,12 @@ "textarea.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", "textarea.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "textarea.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "textarea.background.read-only.light": "S:132681276add1a5214c2619491adba0116256f23,", - "textarea.background.read-only.dark": "S:ee0e42e740425d298d26c0bd2fd0f809ee7d0beb,", - "notice.font.title.light": "S:b8545f737f774d04322787d5d4269ff07bd58586,", - "notice.font.title.dark": "S:d1d49ce080ad58382ca636e3af1b6cfa8243bd6a,", - "notice.font.message.light": "S:cd309d73c2bf839c4f8b57b4ddc441056b9b59dc,", - "notice.font.message.dark": "S:d9ddcc75830438ac63e4d93c68b3049fa3fcacce,", + "textarea.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "textarea.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "notice.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", + "notice.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", + "notice.font.message.light": "S:6cf383eac5cca5700a959ab59f20a865a46decd5,", + "notice.font.message.dark": "S:7815f7fb82fdc4c4c26e1623790dffe9e187a466,", "notice.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", "notice.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", "notice.icon.info.light": "S:98207d369d594d10f790fc9bea415e4ea3e45335,", @@ -1138,12 +1138,12 @@ "notice.highlight.brand.dark": "S:238edd866a0fb63465a1a1a3dd99d48708e2e316,", "modal.font.header.light": "S:bb81170665255fe206e85bde8105d7d0e49230e8,", "modal.font.header.dark": "S:a3fd15b7d470afc805b072dbf848d57469bb681c,", - "modal.font.content.light": "S:641b2fd9e9c478c90130ecd1e2ce42def278aa62,", - "modal.font.content.dark": "S:e20ad9e92eb633ea7fe0b5de056e0f12a5da59a8,", + "modal.font.content.light": "S:c46be83f52216f16ced44f463fcedcf82d3ee870,", + "modal.font.content.dark": "S:5bf1d0dbbd8f49618514192dbfcaf7057cd6f72a,", "modal.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "modal.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "modal.border.default.light": "S:2a2be7f68898a2dd751a78308d60e034e1776894,", - "modal.border.default.dark": "S:21b8eb83ff52009aa257983e35d093d7354ffaa9,", + "modal.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "modal.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "modal.border.top.brand.light": "S:a9b4989bb9daad33b84c52206527ff7e76479865,", "modal.border.top.brand.dark": "S:b05703110c9b8ce6024303d8afed3ba60fa3104b,", "modal.border.top.info.light": "S:c3d1c7b192199d8fd537011e94f4289ab0ab1631,", @@ -1156,198 +1156,198 @@ "modal.border.top.warning.dark": "S:78a2de515a0dcadf8f2b49cae9bd8be150243908,", "modal.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", "modal.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "input-week.font.placeholder-value.light": "S:4b44190264df1143a3b7f98424e16696cd3c7b05,", - "input-week.font.placeholder-value.dark": "S:8566c3e71b39ff3c550ec179b68a27e32ea29458,", - "input-week.font.label.light": "S:b499f57414fb85d3adfabede2683441c69e3e440,", - "input-week.font.label.dark": "S:0853fe90a04d654b4e204381e76c61f79473e68c,", - "input-week.font.prefix-suffix.light": "S:5baa08846f46ac592eb1ca70555dabc2cbfdfa73,", - "input-week.font.prefix-suffix.dark": "S:75384a23215de2e14d8d2862cd77ea33c09880cd,", + "input-week.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-week.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-week.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-week.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-week.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-week.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-week.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-week.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-week.border.invalid.light": "S:c6f8cc478fd6ecba00cb76dda5c127e450f5ddbf,", - "input-week.border.invalid.dark": "S:8c48a0d60806470f19616e48291b2c20f3a0776e,", - "input-week.border.default.light": "S:d87d60e50db3efb61fd0bd4b7ecbffab3f80a7d4,", - "input-week.border.default.dark": "S:efb8f8debcc3d207539241a5b5682c75e06dd8f4,", + "input-week.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-week.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-week.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-week.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-week.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-week.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-week.background.prefix-suffix.light": "S:65385f9e50b24965f8e10b66b5115a1658d5d7dd,", - "input-week.background.prefix-suffix.dark": "S:5e9ca773bc51c76cd652b184d8ed8953622fc2ac,", - "input-week.background.read-only.light": "S:08d34e6b895cd4540bfa99f12d87a869b4bbbe9d,", - "input-week.background.read-only.dark": "S:0516d1571db3414dd34ac04ab784eaa399d2e66c,", - "input-text.font.placeholder-value.light": "S:023fd4a4f571f2e626e467c2db096eeb45861ebd,", - "input-text.font.placeholder-value.dark": "S:64c0185033a5dd92f904446d9d6ddca92c833f7c,", - "input-text.font.label.light": "S:12a4f618d8918ff89dfb3eb0ddc04c2c46eb5965,", - "input-text.font.label.dark": "S:c82269f538c20c08e82a7c3d6a96040713641b8b,", - "input-text.font.prefix-suffix.light": "S:c8321e61f0eb3e79e1fedeac77dd06886b7ce281,", - "input-text.font.prefix-suffix.dark": "S:c4e1f5a0043ac2b2770171ca3bd43a4b3ca456e0,", + "input-week.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-week.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-week.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-week.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-text.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-text.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-text.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-text.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-text.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-text.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-text.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-text.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-text.border.invalid.light": "S:bde3a6a81aba7e4458ac52d2398f6621e05f7a91,", - "input-text.border.invalid.dark": "S:4549940f8ece4ebbdf6c05b42aa0594583c75f4c,", - "input-text.border.default.light": "S:517c301e9af6ba6178c97827002b6b8544c34e85,", - "input-text.border.default.dark": "S:d561b579fb62a4a63ca68f13a9360b7dc5c65c8e,", + "input-text.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-text.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-text.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-text.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-text.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-text.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-text.background.prefix-suffix.light": "S:cceec29b0f15f523e231d4419009efd772d77879,", - "input-text.background.prefix-suffix.dark": "S:94b47d3f9bf50d8b2a8d43326b8faeaf89b9c7a3,", - "input-text.background.read-only.light": "S:4d9f631d4b678981679c6ad94e09d79da4383401,", - "input-text.background.read-only.dark": "S:16944b63ad52f3104f8b747fd5dbd3076b938572,", + "input-text.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-text.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-text.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-text.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", "input-message.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", "input-message.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "input-message.icon.idle.light": "S:11bf26986dd5b91b01567d3c5acb02e491b48f2e,", - "input-message.icon.idle.dark": "S:7f2a38d370d28d747302330222b9c855b16e0776,", - "input-message.icon.invalid.light": "S:7565dee9dd665d5719ebaab33fa88db78ed26c06,", - "input-message.icon.invalid.dark": "S:d2d34ec233f2d1c4666a3707a25ed2734d73153c,", - "input-message.icon.valid.light": "S:665dcc8969f067b7297310ce8b19c575d4ba5395,", - "input-message.icon.valid.dark": "S:172020c76ade2794a13376411055c2a9f4dfa8a4,", - "input-telephone.font.placeholder-value.light": "S:2395c021d71de16c6215b62f146af42414765b7f,", - "input-telephone.font.placeholder-value.dark": "S:a991b6b6044119cc4ae16f65632e3e74d5a9503b,", - "input-telephone.font.label.light": "S:606b9320121f1511c6d30894428a62e6dd97ab46,", - "input-telephone.font.label.dark": "S:56a570da3900a71cdd087b8ae6b9ee965270e9b3,", - "input-telephone.font.prefix-suffix.light": "S:6854b883e1034ccfe1051d312c96b2d8f6bae918,", - "input-telephone.font.prefix-suffix.dark": "S:11937f52ac8ae99604b88da4f9d5ee1366d76e09,", + "input-message.icon.idle.light": "S:f02d0fb7bba5b12f80f94cba50e49649f3d2ddd8,", + "input-message.icon.idle.dark": "S:37f89d2bdd848ec033c26905f5cf5dcd8fd5c642,", + "input-message.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", + "input-message.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", + "input-message.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", + "input-message.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", + "input-telephone.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-telephone.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-telephone.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-telephone.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-telephone.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-telephone.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-telephone.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-telephone.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-telephone.border.invalid.light": "S:b8d28b7094bf89ccb35e096e8eaa8faa0f478f23,", - "input-telephone.border.invalid.dark": "S:821269f81c277a531d5ce9754597c0d7d5aba1e7,", - "input-telephone.border.default.light": "S:28487a6d1f1fb2a323e2a2fed73c9eea33d621b6,", - "input-telephone.border.default.dark": "S:6dae8cf59b8678d6dd1e8220d1f94e7f3d68c0f3,", + "input-telephone.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-telephone.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-telephone.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-telephone.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-telephone.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-telephone.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-telephone.background.prefix-suffix.light": "S:798c2d6cc2ec445884b617ac3d9b82be10774171,", - "input-telephone.background.prefix-suffix.dark": "S:cbd71281640555493b5c7d21e46f2efab288d776,", - "input-telephone.background.read-only.light": "S:5a5dee09e0cb6bbb2c78e39a6ea1bb24c4717ac4,", - "input-telephone.background.read-only.dark": "S:b24379b53aaeeffbc58224e5abcd4ba9a8480347,", - "input-search.font.placeholder-value.light": "S:9af616fe5503ee487713b0fe60c08c930812994c,", - "input-search.font.placeholder-value.dark": "S:a0b2808823b47bc30175a571defcfa4439394efb,", - "input-search.font.label.light": "S:112bee24859b4184f34728ce2c616e68105705ab,", - "input-search.font.label.dark": "S:14ce646e7ee0dadca2ab36a24e72af6c0c4cabf3,", - "input-search.font.prefix-suffix.light": "S:c75c10931a55693f722cd6a9d2848387b09dd850,", - "input-search.font.prefix-suffix.dark": "S:6a051545dc4a78c965459a1335c78c8b23cefd45,", + "input-telephone.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-telephone.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-telephone.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-telephone.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-search.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-search.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-search.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-search.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-search.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-search.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-search.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-search.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-search.border.invalid.light": "S:6998ab9e13183edbb26ed766311cbfa07eec97f7,", - "input-search.border.invalid.dark": "S:2f523500134eb6133dd696284b7c3d247438d9e2,", - "input-search.border.default.light": "S:092f8264d8e94b2b75fee8084cdbe0e44b47f59d,", - "input-search.border.default.dark": "S:bd9d7a2b80203a3f98147e52dacf783486cd6fbe,", + "input-search.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-search.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-search.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-search.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-search.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-search.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-search.background.prefix-suffix.light": "S:897cbe4b649be1694ba34d03b7d2bf9e1cc3eec3,", - "input-search.background.prefix-suffix.dark": "S:248226f3ecfcbf9adc0cf2a6079264840479e8fc,", - "input-search.background.read-only.light": "S:ec1f23b679d132fa91c6321fb7d0c4d289f399a8,", - "input-search.background.read-only.dark": "S:03757fee76ea4f499c2dc99c4f83758b40256eb6,", - "input-password.font.placeholder-value.light": "S:06b17b824b3edcc3121a9448817ab7caaef1a011,", - "input-password.font.placeholder-value.dark": "S:79948c970255edc032f54eb80ec2d2796a473edd,", - "input-password.font.label.light": "S:c7fbb2e57e4c3b6ee89b8ad215c3461571f44234,", - "input-password.font.label.dark": "S:b8659c623f19dd6b25e7ec3dd7b0b1f275750d8e,", - "input-password.font.prefix-suffix.light": "S:fa5e61288a01cdcc62812e372f14a7717b53de48,", - "input-password.font.prefix-suffix.dark": "S:711cee166e6df3aad4294d1ec7fb92d7797a2ee0,", + "input-search.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-search.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-search.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-search.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-password.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-password.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-password.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-password.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-password.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-password.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-password.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-password.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-password.border.invalid.light": "S:c41d3eb10ce46d1dceb767f93a187a682978266b,", - "input-password.border.invalid.dark": "S:ed087dd088b2ef3e666e1b202c5198fd26cbec27,", - "input-password.border.default.light": "S:a959c79e9d1ee2ef10d701ba71f6a2cc00da2d80,", - "input-password.border.default.dark": "S:6e59d8cbf1b7dd7454b9e3c5820965423f063199,", + "input-password.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-password.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-password.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-password.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-password.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-password.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-password.background.prefix-suffix.light": "S:39e9bd9056a7a4295e792fce059441c024dfb4c4,", - "input-password.background.prefix-suffix.dark": "S:1631d5e920c270066df6152648ea9ac895bc429a,", - "input-password.background.read-only.light": "S:54433a4c29191bafda9824e54bcbea726be9e0ad,", - "input-password.background.read-only.dark": "S:4c27600fee9009bee65f357578cfc05011cbc73c,", - "input-number.font.placeholder-value.light": "S:5fc894c2062c79b3c92c3758bfc09dbe3c081a6a,", - "input-number.font.placeholder-value.dark": "S:430588027b95683d42b44606587069fd43038385,", - "input-number.font.label.light": "S:5cfed8b18465023bc7e43f5bd78c9cfbfecc4085,", - "input-number.font.label.dark": "S:d0c652d3eb3a216cfc098aadf7fcf723e01cd00f,", - "input-number.font.prefix-suffix.light": "S:bb03b4717afa4622890fb9ee0b07eb3671328761,", - "input-number.font.prefix-suffix.dark": "S:4f86855ba74eec79da2f983858e892428f80d494,", + "input-password.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-password.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-password.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-password.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-number.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-number.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-number.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-number.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-number.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-number.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-number.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-number.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-number.border.invalid.light": "S:612dadaad7bad4c90fe0ebabcf7aceead07dc155,", - "input-number.border.invalid.dark": "S:f52e87def44db41e4631e39378e6706bac4bc7ba,", - "input-number.border.default.light": "S:6c5250e00190c8387b60304c29fcb8601a0d8f4c,", - "input-number.border.default.dark": "S:4bd0c00e208e05f365e0b58d757b537d3bacdb16,", + "input-number.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-number.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-number.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-number.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-number.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-number.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-number.background.prefix-suffix.light": "S:a83c1840fc0435d61df6d2240060acc072168bad,", - "input-number.background.prefix-suffix.dark": "S:0ff987b09b1f100c4b3d09dac343a77934bc40b9,", - "input-number.background.read-only.light": "S:07a477b43c6357bb529fb54360fb374e44558d26,", - "input-number.background.read-only.dark": "S:0d7f3bdd475cbeb963a2214311f431fdf548c621,", - "input-month.font.placeholder-value.light": "S:109e42d6598af3faba61bb9a0bb4c2eab33c8c03,", - "input-month.font.placeholder-value.dark": "S:b381bb9b699e279dc8c97c0fcdf0a2cbe1874087,", - "input-month.font.label.light": "S:093b6087557a750ef21d81f7a21bdadf37b5ea6c,", - "input-month.font.label.dark": "S:8f39fc229ffdc426d8643528902d53b2563a877c,", - "input-month.font.prefix-suffix.light": "S:b53142fcafc167635529213994d36ae8c2f66fc8,", - "input-month.font.prefix-suffix.dark": "S:d42977347863174ae39ccf81cdb069bbdd68f099,", + "input-number.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-number.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-number.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-number.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-month.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-month.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-month.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-month.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-month.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-month.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-month.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-month.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-month.border.invalid.light": "S:29fd95c389829b3452ea70eb0f0b32ba11119175,", - "input-month.border.invalid.dark": "S:948e735dd10206feec38dc28e576e4da64825f52,", - "input-month.border.default.light": "S:bc1e60d8619d66b532a94b69e2ef86925e010313,", - "input-month.border.default.dark": "S:08e151541f3cd6c049067580d0251699ba415327,", + "input-month.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-month.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-month.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-month.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-month.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-month.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-month.background.prefix-suffix.light": "S:b29721da10a7122a4febea120dc571c1eaa0e0e7,", - "input-month.background.prefix-suffix.dark": "S:5eeb8f5dc501869b19d55acbe0e048ff463969ce,", - "input-month.background.read-only.light": "S:43971c602cae4ee1a54f6ee34098d4de9a74c3e8,", - "input-month.background.read-only.dark": "S:fcc0eff16977155f4855baef82a24cff32cba94a,", - "input-file.font.placeholder-value.light": "S:395435fea39dfb5b26598c085bb7653a1d67a276,", - "input-file.font.placeholder-value.dark": "S:8e8595914b24035d2ba180dd6d5c2a25392ba716,", - "input-file.font.label.light": "S:679452dbbcdadd8ca8124b460eb0cd7b56f8c016,", - "input-file.font.label.dark": "S:6e9157cebbf5e5208af6d2b3ca03b94810c14a3a,", - "input-file.font.prefix-suffix.light": "S:5f19133aec266d180c081ac86a89d9c36588e3e0,", - "input-file.font.prefix-suffix.dark": "S:5327c0a9c13be8d1ccabb3061b5308deae9e3194,", + "input-month.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-month.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-month.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-month.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-file.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-file.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-file.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-file.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-file.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-file.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-file.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-file.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-file.border.invalid.light": "S:0a00b5774c697f2bd01ae0b7dc9ae20b800055b7,", - "input-file.border.invalid.dark": "S:d9691652d7b8de53e7b3319d2362b3eea5e4b43f,", - "input-file.border.default.light": "S:32477f127508f77bdf4fdf5aef9f18a4765d3ea5,", - "input-file.border.default.dark": "S:43607df94fb94184c8fe12dc6917220a9129fa3f,", + "input-file.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-file.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-file.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-file.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-file.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-file.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-file.background.prefix-suffix.light": "S:4c4496c9993cf36b7080ac0b52d02fe3d62992d6,", - "input-file.background.prefix-suffix.dark": "S:575482b2e0582da9951bff7049c01cad5d0747f4,", - "input-file.background.read-only.light": "S:30eb2905d8abe6f9ed5313cb3fd2db4a246d8a1a,", - "input-file.background.read-only.dark": "S:06c1224c58a161b745f57eeed17d8f3868c6a445,", - "input-email.font.placeholder-value.light": "S:ab8efbce1d0189b9062c48daede79669a6c2bacf,", - "input-email.font.placeholder-value.dark": "S:a73185b1340cab6db72c312df7842fc21488cb3f,", - "input-email.font.label.light": "S:27d3474223759d8a49285b482694fdbc70da3cf7,", - "input-email.font.label.dark": "S:063902f5a10b291dfe7066bffca18256337c2c50,", - "input-email.font.prefix-suffix.light": "S:7b2fc1c9e636284c1354a6d2ec86f10b94b6590a,", - "input-email.font.prefix-suffix.dark": "S:973c0893d06d2f1a1502223f0215553dbf67bd2c,", + "input-file.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-file.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-file.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-file.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-email.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-email.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-email.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-email.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-email.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-email.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-email.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-email.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-email.border.invalid.light": "S:94e417205bfb027de5f5d29a6837e92b42bd0b3f,", - "input-email.border.invalid.dark": "S:15773387e59f5585beec839e8763cdcbdaea37ab,", - "input-email.border.default.light": "S:98cd54cd6be28549ca0a10c00fdefc0c0a2d0e46,", - "input-email.border.default.dark": "S:993564722fc9c869e35305dc7afaeb046d141491,", + "input-email.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-email.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-email.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-email.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-email.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-email.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-email.background.prefix-suffix.light": "S:36c982673cc88755bf87a945c78a98df7ae0dd1c,", - "input-email.background.prefix-suffix.dark": "S:5d10216e314dcfc5e412d77d56b9e83452edf7b5,", - "input-email.background.read-only.light": "S:03aae4f540ba1f3be71f4e6506b5f693500872c2,", - "input-email.background.read-only.dark": "S:f1c131315acaf75eb002151e482a00257079e06f,", - "input-datetime-local.font.placeholder-value.light": "S:53fc76d627c139e2b488d3493bfce02d2d9e2d0a,", - "input-datetime-local.font.placeholder-value.dark": "S:81c2a6f170b2f54972daf86794b54b9a9d618eea,", - "input-datetime-local.font.label.light": "S:7c386453e6e63ad61b9356fa593f975fae6c7581,", - "input-datetime-local.font.label.dark": "S:0ee0886cd10869a66b93c89e74f8aea52b1815db,", + "input-email.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-email.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-email.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-email.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-datetime-local.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-datetime-local.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-datetime-local.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-datetime-local.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", "input-datetime-local.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", "input-datetime-local.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-datetime-local.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-datetime-local.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", "input-datetime-local.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", "input-datetime-local.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-datetime-local.border.default.light": "S:4ae7dafe00d3a8df2c547ea44328e53bf840136f,", - "input-datetime-local.border.default.dark": "S:6031f30fd20bb9eda5dfe303ac3e7547e3996324,", + "input-datetime-local.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-datetime-local.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", "input-datetime-local.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "input-datetime-local.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "input-datetime-local.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", "input-datetime-local.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-datetime-local.background.read-only.light": "S:a01c3a51e0c5c67bd952b1bfc7e499b62e0ed347,", - "input-datetime-local.background.read-only.dark": "S:811e9905d2c2da4a7b47e0e1495f7d8b9c94c39d,", + "input-datetime-local.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-datetime-local.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", "input-date-picker.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", "input-date-picker.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-date-picker.font.label.light": "S:133f3a894c9c3abbd59c53d1399790c9fd4e0f22,", - "input-date-picker.font.label.dark": "S:ce4f3ca1f623ac60ce94039b956a9dd7b0fc3dd8,", + "input-date-picker.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-date-picker.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", "input-date-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", "input-date-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", "input-date-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", @@ -1400,10 +1400,10 @@ "combobox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "combobox.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", "combobox.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "card.font.title.light": "S:18e88146abde990888475aa62ec25874b1ce8a6e,", - "card.font.title.dark": "S:09e463acce3ed8dc04d6fea71838d4a055877399,", - "card.font.description.light": "S:9a1f579004304bc529f62c2543a7942d17613c99,", - "card.font.description.dark": "S:76d73c72f680b3f35bc5780424a7ad5a0f4745ac,", + "card.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", + "card.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", + "card.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", + "card.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", "card.font.subtitle.light": "S:003a1a7519374d0278e2d39a05ccdece9494156b,", "card.font.subtitle.dark": "S:6355016a1a58da665def5e759c512e087504e510,", "card.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", @@ -1414,18 +1414,18 @@ "card.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "block-section.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", "block-section.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "block-section.icon.valid.light": "S:9bcc57cf9522e709cc788c5dc9ecfd89f57f7717,", - "block-section.icon.valid.dark": "S:cead35d2680267c4416ca9d2100e98818efb753a,", - "block-section.icon.invalid.light": "S:1f802ea0e26c5448e9a76fc5564e80d4dcd82b56,", - "block-section.icon.invalid.dark": "S:8ef08c342b4be56a3b56a7a0f2d6561278077019,", - "block-section.icon.chevron.light": "S:404a82b9514d83de413c4c1d78694c023d695f71,", - "block-section.icon.chevron.dark": "S:faddf475cb87c2235da40270f5e68429cf97f3a1,", + "block-section.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", + "block-section.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", + "block-section.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", + "block-section.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", + "block-section.icon.chevron.light": "S:af5fabff28cd8db6aa06132f0493b629e04023d9,", + "block-section.icon.chevron.dark": "S:9efa9354a66d5d3fa260049c448260d556bf4c0b,", "block-section.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", "block-section.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "block.font.heading.light": "S:2e1c9c691a569814dbdaed5dde4793c87f0b8875,", - "block.font.heading.dark": "S:cd08a6678cef47654323aeb25e4876db64b17857,", - "block.font.description.light": "S:6ad772a5969e530f89e6f540d00d67a005209b8f,", - "block.font.description.dark": "S:9d804fa00266272db959b6850317f4f7c56185f8,", + "block.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", + "block.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", + "block.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", + "block.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", "block.font.content.light": "S:c46be83f52216f16ced44f463fcedcf82d3ee870,", "block.font.content.dark": "S:5bf1d0dbbd8f49618514192dbfcaf7057cd6f72a,", "block.icon.idle.light": "S:f02d0fb7bba5b12f80f94cba50e49649f3d2ddd8,", @@ -1564,56 +1564,56 @@ "checkbox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", "checkbox.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", "checkbox.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "fab.font.brand.solid.light": "S:15983687103bed05e47bc5ffcff46881ca58e6ae,", - "fab.font.brand.solid.dark": "S:e82220692ef8336ce7ead8df3abccc1bfa6956ff,", + "fab.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", + "fab.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", "fab.font.brand.outline.light": "S:f0adeadd0e0e0f4a1f3fee86558666b817037268,", "fab.font.brand.outline.dark": "S:1e8852afd9ea094755d09382eded30d2e2bbe130,", "fab.font.brand.clear.light": "S:1f3107c5a2f1daf1fcf03e492b2d6993789a3c3f,", "fab.font.brand.clear.dark": "S:76f49a66542c52b964e3ec9f9a7652e934e7a781,", "fab.font.brand.transparent.light": "S:06df2efafe1c1cafe563f76e771347a69d04a7a1,", "fab.font.brand.transparent.dark": "S:d4356a1762c850343f02a3c9777f23ebfa4d41f3,", - "fab.font.inverse.solid.light": "S:38e2e5dc5067d7921f9481f360e3af6f35c20861,", - "fab.font.inverse.solid.dark": "S:d0cb21cffaa62e24a8e9c89947a66b3bde04b4d1,", + "fab.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", + "fab.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", "fab.font.inverse.outline.light": "S:043470cf705695bc573e8be8d0f1ca5cd43f235c,", "fab.font.inverse.outline.dark": "S:bd96e308b8742f172fd160a9f16cee7139edef42,", "fab.font.inverse.clear.light": "S:4e0126885705a695441471685e9c6fe53df73560,", "fab.font.inverse.clear.dark": "S:6b6b568e5b20a35af73db4ea211ed735480fde1a,", "fab.font.inverse.transparent.light": "S:bb5130f5070b15d7cb2aa427df1f2daf170c9ef4,", "fab.font.inverse.transparent.dark": "S:fcff24f62b0f0ba8c776732e6f5470fb0a1dbf69,", - "fab.font.neutral.solid.light": "S:7c7316651f73a2d97d1d281c40c60ea04fb557b0,", - "fab.font.neutral.solid.dark": "S:d99116eb12af8b8f1dfff128435266f93fe53069,", + "fab.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", + "fab.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", "fab.font.neutral.outline.light": "S:4e2bfb0fb3cf8178c5f92b14ed9e07a9c081b8d1,", "fab.font.neutral.outline.dark": "S:c5d513baa7dd50fa7187946b6439f13a0c20b1ab,", "fab.font.neutral.clear.light": "S:1e82fef827484f0bf26f77727d1b1613b4c3aba4,", "fab.font.neutral.clear.dark": "S:55cccdc027e56fef0edd16c7ac5aa7eb2013db7e,", "fab.font.neutral.transparent.light": "S:65f4164ddf1746ca302a6893fa48b90d95fabf26,", "fab.font.neutral.transparent.dark": "S:a8c25d727dd4b2107098c344a191fda0f0d5cacc,", - "fab.font.danger.solid.light": "S:4f971d1b6e5223e0768d0856185c3100991e7715,", - "fab.font.danger.solid.dark": "S:615ee681a1e496cc0903f60fb707ed7f76f670b6,", + "fab.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", + "fab.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", "fab.font.danger.outline.light": "S:8741a29d39368c4806c94ee4e10696e7d2d7b52f,", "fab.font.danger.outline.dark": "S:c24691323d8d5644e4f839a94279632eef9e3d27,", "fab.font.danger.clear.light": "S:432cc47f645578d52058b0a32e71dcceb2c27550,", "fab.font.danger.clear.dark": "S:eda93904fa4476dfa692f041d1ae43558bb8cf8f,", "fab.font.danger.transparent.light": "S:ae81a8c9ff5a24316bcbd766c7aa4069a960d5f6,", "fab.font.danger.transparent.dark": "S:5a1cb81061b8ad3b5d15bdadafaa96bd269f5be5,", - "fab.icon.brand.solid.light": "S:81a7d4dcfaef32c079db9a181f93234c16f03303,", - "fab.icon.brand.solid.dark": "S:21325aa285e672bc773c2b1ca3b45694648adcdb,", + "fab.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", + "fab.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", "fab.icon.brand.outline.light": "S:9725df33208dd26ef970c6ec407e9549ae3e27b5,", "fab.icon.brand.outline.dark": "S:943336f4351cd0578403d1ac7a4d2eb049e58038,", "fab.icon.brand.clear.light": "S:7b41c424d6d43439158e852afca3ecc4879c68c3,", "fab.icon.brand.clear.dark": "S:0209e34abf08a3748f1c017de6ca04407d1f24ec,", "fab.icon.brand.transparent.light": "S:0d69f2196d70b057296fb229c7d31607298fdfd0,", "fab.icon.brand.transparent.dark": "S:f6962099346882882e98104ff08ebe0ba1374f08,", - "fab.icon.inverse.solid.light": "S:c19c8ef78ffad88d24a0ca56ffe90d24d85d3a53,", - "fab.icon.inverse.solid.dark": "S:fb1858fc2616f804686f055d379d8c0c99005e02,", + "fab.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", + "fab.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", "fab.icon.inverse.outline.light": "S:21803c6456f48209cbde4a98b58f1d2f69bdae6c,", "fab.icon.inverse.outline.dark": "S:6b26325108a1a6da51a0c561034d54eb68f02e6f,", "fab.icon.inverse.clear.light": "S:91c1f1ef69bd21f34f9c72b24233b868e5ffa432,", "fab.icon.inverse.clear.dark": "S:8f4d3756bcfa4276a98d6b5a61e8d3f97a12eeca,", "fab.icon.inverse.transparent.light": "S:1293e84a59bcf4653f65d196ad8f646cc22120c4,", "fab.icon.inverse.transparent.dark": "S:02b13cc89af23516f4ee3f12ab93fb3121ae984d,", - "fab.icon.neutral.solid.light": "S:f61fdc2bf2329d65252631f0788eb39bc603e7fe,", - "fab.icon.neutral.solid.dark": "S:c1216b409c430c1cfcfdb6d2ac5e4e575706d0a8,", + "fab.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", + "fab.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", "fab.icon.neutral.outline.light": "S:d08cebd573da8fefff690d3fe3e89f6d22ace3ff,", "fab.icon.neutral.outline.dark": "S:9eb2b2d7d7e57478b5b0d705029a38f2a99814dd,", "fab.icon.neutral.clear.light": "S:181c0465edf07b98f6cf4324052bbdef3266f9b8,", @@ -1738,8 +1738,8 @@ "action.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", "action.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", "action.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", - "action.icon.default.light": "S:8e518d426b026095e1e2447382abefa9f39e0a62,", - "action.icon.default.dark": "S:23c6ffac8513cab9923d448b3557897ede1cbaf9,", + "action.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "action.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", "action.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", "action.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", "action.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", @@ -1754,10 +1754,10 @@ "accordion.heading.dark": "S:0e150e73c0b5e8e7bebfadc132c82e875d1392e6,", "accordion.description.light": "S:cb01ae66ab41b4df8b4683fef5cc6030de18b079,", "accordion.description.dark": "S:799bc4c7335cb1325182383cfc46902f4b2dd826,", - "accordion.icon.default.light": "S:4c312a90804f5d51d09c53e4b11c1242f8e02874,", - "accordion.icon.default.dark": "S:6259901f0c5506a8f30b3e1e700479f5d77dcfbf,", - "accordion.icon.expanded.light": "S:6b7abfb35f13b21b1f737a2d191300e91213b8ac,", - "accordion.icon.expanded.dark": "S:35fc92032f856c36c572170c7ad2524925a76062,", + "accordion.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "accordion.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "accordion.icon.expanded.light": "S:e86ffc1b86f516ff744eb2b695fea0f7e6a06250,", + "accordion.icon.expanded.dark": "S:587b66cd00f9aa16f13bafd05481e6d3fc2bfc52,", "accordion.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "accordion.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "accordion.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", @@ -1785,11 +1785,11 @@ "[comp-name].font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", "[comp-name].font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", "[comp-name].font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "stepper-item.font.heading.sm": "S:1e0c0a8d8b98fece995eb611ce2ff9ef65f7e806,", - "stepper-item.font.heading.md": "S:f189fcc3de5a8358ef687df77bf0deb0f85bba70,", - "stepper-item.font.heading.lg": "S:d3502de4e5c99a402472633c0b6cf357c1435e6e,", + "stepper-item.font.heading.sm": "S:22cd3c704f1ff153a930b1de5482c90d06b68463,", + "stepper-item.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "stepper-item.font.heading.lg": "S:26e38b824652312797550c4393b9af9201d16410,", "stepper-item.font.description.sm": "S:e4ebff926d9e4d2f4b9b20ef895b87979b82bacc,", - "stepper-item.font.description.md": "S:f4935fb349d8c9121e9af89a9779bbf3202db6b2,", + "stepper-item.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", "stepper-item.font.description.lg": "S:23af9aa67ad9cf7d3bbdec0a84a3a9decaa099a2,", "stepper-item.font.context.sm": "S:da64e75edca6fca30de3e1bb0224f0d71452b4f5,", "stepper-item.font.context.md": "S:755519eba87a336180ceaa2605e11f468c4bfa2d,", @@ -1797,27 +1797,27 @@ "stepper.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", "stepper.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", "stepper.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "slider-range.font.label.sm": "S:3c52e9febe91b29e725fe7d80c29fef2d9b5304f,", - "slider-range.font.label.md": "S:3d1397ecccc7d5fe555c3d57bd081d587e468d94,", - "slider-range.font.label.lg": "S:1558a5452382203a11e794098beea7c6fc77f0f9,", - "slider-range.font.tick-label.sm": "S:2c4dd5f42c8263a765ca18d47fb41900873b062b,", - "slider-range.font.tick-label.md": "S:29d5fea877a47f3342e5542a1b14a9822ae13f9c,", - "slider-range.font.tick-label.lg": "S:a567c9fca15dcc7956f9066621efd7bc74221009,", - "slider-histogram-range.font.label.sm": "S:759ce3b6398496d7a3a921b873575fb97ad1040a,", - "slider-histogram-range.font.label.md": "S:70bebdb916afab88089bc68f9e14d4a656feff97,", - "slider-histogram-range.font.label.lg": "S:7595a2c42b9e0710c52e29c3308fb7d042e7fbc2,", - "slider-histogram-range.font.tick-label.sm": "S:f445c2950f1652a0633fedf9c2dc8715782ce89a,", - "slider-histogram-range.font.tick-label.md": "S:c1875a12c8c790345d7a04d8722231d761b438ac,", - "slider-histogram-range.font.tick-label.lg": "S:55d3a4b384f0820d7873cd601feca18361d4c7d7,", - "slider-histogram.font.label.sm": "S:c75d1f651f36c38f369359bc3a36a4bddc4e6bbd,", - "slider-histogram.font.label.md": "S:e1c0089362968377b438417c3b40d17b199da129,", - "slider-histogram.font.label.lg": "S:6d8f7beedeaa5cdb293571baf7dc33c7b09fd853,", - "slider-histogram.font.tick-label.sm": "S:0de29859057f04e50e983e043b3095105f836175,", - "slider-histogram.font.tick-label.md": "S:1e030097ec575b0e5c3892cb19fcd411c0b940e0,", - "slider-histogram.font.tick-label.lg": "S:d071e14e28fa5f0af8bea2ac83698f0d7922e117,", - "slider.font.label.sm": "S:2698337ffec19f40e025d304711fce20d6b9c5c1,", - "slider.font.label.md": "S:569302273e42c00f591ba3581f441d661c057b1f,", - "slider.font.label.lg": "S:df88d2326b38829fb0047845d29a6e8c1ae61232,", + "slider-range.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "slider-range.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "slider-range.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "slider-range.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", + "slider-range.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", + "slider-range.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", + "slider-histogram-range.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "slider-histogram-range.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "slider-histogram-range.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "slider-histogram-range.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", + "slider-histogram-range.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", + "slider-histogram-range.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", + "slider-histogram.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "slider-histogram.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "slider-histogram.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "slider-histogram.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", + "slider-histogram.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", + "slider-histogram.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", + "slider.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "slider.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "slider.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", "slider.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", "slider.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", "slider.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", @@ -1830,11 +1830,11 @@ "popover.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", "popover.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", "popover.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "panel-header.font.heading.md": "S:d3220010a05e2cf1f4b9ec9d3632c7ed3cfa01ed,", - "panel-header.font.description.md": "S:5aa51e4226108b89031cec074877397a57ff287e,", + "panel-header.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "panel-header.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", "tooltip.font.standard": "S:d06a201e347559fb01fbd66261b7a3ab8b268fb0,", - "tip.font.heading.md": "S:eab77aa7679588129f70ed6d41460e40c276bb2f,", - "tip.font.description.md": "S:58c7814d3ecb8e164884d4b616646c5cc4d0bc21,", + "tip.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "tip.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", "rating.chip.value-text.font.sm": "S:96101bf0744e53acc2166a2184aa7f8ae2c2b8c4,", "rating.chip.value-text.font.md": "S:b10662274e31a3704323fc2cb94b1c233baaf571,", "rating.chip.value-text.font.lg": "S:4ca681a4eda0db296fad332696a6ed2e8fbbb86e,", @@ -1858,147 +1858,147 @@ "label.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", "label.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", "label.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "textarea.font.placeholder-value.sm": "S:293d36522a3e65296376698ea5ab8af71a106b9b,", - "textarea.font.placeholder-value.md": "S:3d1ba4fbaad3ce9c299f730c405a6f464768c0fa,", - "textarea.font.placeholder-value.lg": "S:1dec7d49bfcdad89987f6594dc1845bcde45387a,", - "textarea.font.label.sm": "S:c8c425e440b10d31861d8ac6700623f9eaac22ea,", - "textarea.font.label.md": "S:65ccc33f9c807767ddabd49a9844327684096a63,", - "textarea.font.label.lg": "S:efbc82c6d6e640c0c775c00d0f2416eaf94cdd7a,", - "textarea.font.read-only.sm": "S:ab7cdb769603feea0b7f71aa2b7d2c12df56cb77,", - "textarea.font.read-only.md": "S:73d8e090533d54512fda0a03926c46da489c696b,", - "textarea.font.read-only.lg": "S:0aa9864d5ddbb96a6c66904139848e4a27af8085,", + "textarea.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "textarea.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "textarea.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "textarea.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "textarea.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "textarea.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "textarea.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "textarea.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "textarea.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", "textarea.font.chat-limit.sm": "S:715a88be81f03c0539a4573a8095ea899279e87a,", "textarea.font.chat-limit.md": "S:a6aafccb6ad4bfb6e67f2503e562666d7024adf4,", "textarea.font.chat-limit.lg": "S:e5da8e77c6e39ed414fbd9ae5620564fd78ab3bf,", - "notice.font.title.sm": "S:d70f1bea6234cc6858d1d1f75a9f28f450d36e45,", - "notice.font.title.md": "S:c19b1582367d4adf0efe3affd9d2d1f317c1eb64,", - "notice.font.title.lg": "S:b551c5362270c4048630b15699c214e4d5aca6ce,", - "notice.font.message.sm": "S:f10b3acd1b727d6680a7ec8aa0a1b31a79aeabf3,", - "notice.font.message.md": "S:5d1530252131144227b0d53f16054f3237ad198f,", - "notice.font.message.lg": "S:fda64eb98275bb580931769604a55c0cbc2d1a82,", + "notice.font.title.sm": "S:3ce9291673796d12312501274a38efcf55f6b482,", + "notice.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", + "notice.font.title.lg": "S:051bc74df8ad468b012d4a69124462a7bd88ac16,", + "notice.font.message.sm": "S:62cbe66d7a194cf143b483c76e81b3ef7faec7e4,", + "notice.font.message.md": "S:914616baac8f924bb3068d03da85a3d7598a4eed,", + "notice.font.message.lg": "S:09c48ee987903ee44f92b7fd85f5e4dea0ead949,", "modal.font.header.sm": "S:a4b9d004ad1b17fd1f98b1f2d5bf20d46e265ca1,", "modal.font.header.md": "S:09bf67955036c958a09976e5162d4423b30b6a93,", "modal.font.header.lg": "S:82b11c9411411513150be795953c302451b0092e,", "modal.font.content.sm": "S:f2e10a30773ad893d3104d4c612c5a6bde6f5c58,", - "modal.font.content.md": "S:bc66a4cb8809ac9a25c3abd469bf2925f1b00d4c,", + "modal.font.content.md": "S:b2c1bb5f4c41d1d2af5feb08ce085d132682c3e3,", "modal.font.content.lg": "S:5da5d0c2e707f47a5cba3740883f9b09066cba67,", - "input-week.font.placeholder-value.sm": "S:c4c1a1c43f7b4532758fc28df24207f758ea79c2,", - "input-week.font.placeholder-value.md": "S:a984428988d3f64931867a1feb9ec9cbe9dd73d9,", - "input-week.font.placeholder-value.lg": "S:d920a93d6a0e02cea4df9262a015444243e42296,", - "input-week.font.label.sm": "S:62cbed843b235cfa0528176bfaa03aae055e382e,", - "input-week.font.label.md": "S:a112ff6d6382b8dbdaf47bd6a103ae3b39417a56,", - "input-week.font.label.lg": "S:e3b60489cdc7b219c52204e9a39918df1126ae3a,", - "input-week.font.prefix-suffix.sm": "S:4f9cd41d4c8d1a5d176eb27bbafbac2ae75c43b2,", - "input-week.font.prefix-suffix.md": "S:af690dadf9a92d5d022c2712792e3d1aae424109,", - "input-week.font.prefix-suffix.lg": "S:5636093f0ae11ec401b7f1064a0d581a382ac048,", - "input-week.font.read-only.sm": "S:e52ec852e2509b58161fabd47353cab1bcfdd2a6,", - "input-week.font.read-only.md": "S:1efa7b3ceb3c5ce3ef0591415013e5a4daa9cc10,", - "input-week.font.read-only.lg": "S:70fbb32723c545256e702bc981aa8bd15f621231,", - "input-text.font.placeholder-value.sm": "S:9b9ad19c7ee4a867bf7e3041c29bd49b38616aa5,", - "input-text.font.placeholder-value.md": "S:eed47086f33a21f31fb8155ffa220cf92e8e5528,", - "input-text.font.placeholder-value.lg": "S:ae3d39fefc35a32da1e625975eefed75f36d21ed,", - "input-text.font.label.sm": "S:39aec780fbf549f8dd1b7465766690da38fa2346,", - "input-text.font.label.md": "S:c67f7a5c311e1480e3ff6533deb51c86a06e405b,", - "input-text.font.label.lg": "S:57c0faff0d8272677daa9a74b2c993b45a66f147,", - "input-text.font.prefix-suffix.sm": "S:eef6d4c01e864215be52ec5d9fa4ddd79b9f91c8,", - "input-text.font.prefix-suffix.md": "S:1bd455765402c17deaaa295b57e08e45ebf08486,", - "input-text.font.prefix-suffix.lg": "S:565bb4d777c672310cabb55cbe252ea108ef894d,", - "input-text.font.read-only.sm": "S:9fcbd02b5bed7260f44fd3eef2f018d1bf7bfd0d,", - "input-text.font.read-only.md": "S:71a95c7d383479473bf160f32745546c8ae17e0e,", - "input-text.font.read-only.lg": "S:e691c6b478626e9ba06a010cdee3369ac5f7bff3,", + "input-week.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-week.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-week.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-week.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-week.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-week.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-week.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-week.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-week.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-week.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-week.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-week.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-text.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-text.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-text.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-text.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-text.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-text.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-text.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-text.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-text.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-text.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-text.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-text.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", "input-message.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", "input-message.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", "input-message.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "input-telephone.font.placeholder-value.sm": "S:574ee0fb8f7c87f87dc8963120ba276467d9342d,", - "input-telephone.font.placeholder-value.md": "S:60cb712501b0c18d6c0dd1e0804aefa8cb8c40c5,", - "input-telephone.font.placeholder-value.lg": "S:302afa3098021aff27fe7e5c4aed5a825f89b3ef,", - "input-telephone.font.label.sm": "S:bf664ee20469fb1c36b8ee94894678d154d1f081,", - "input-telephone.font.label.md": "S:2b7c7f8f915552840c2fe609caf3dca4fe826bdd,", - "input-telephone.font.label.lg": "S:6a7a92cd03ff7d3ac580217da9987c82b048b746,", - "input-telephone.font.prefix-suffix.sm": "S:915ab7aaa98835058e532a62fb032b4c45ab0e76,", - "input-telephone.font.prefix-suffix.md": "S:d9628e1b03c6c9a20b8a87b8f0a9d5172e215242,", - "input-telephone.font.prefix-suffix.lg": "S:5f2e5cc5f771d6da65cc327d36132ebc866e42ad,", - "input-telephone.font.read-only.sm": "S:9663ffa7a8fdda48252ce5ac6651b05d5ad20f61,", - "input-telephone.font.read-only.md": "S:357b5b32f5f547bd1b2acb5d05dd94487104a3ac,", - "input-telephone.font.read-only.lg": "S:12f52a478d3d850402d5c64227e4079a191da177,", - "input-search.font.placeholder-value.sm": "S:ae309cdad10c30af14a550a91a974bdd3507b96e,", - "input-search.font.placeholder-value.md": "S:f82454b0aea0426056f621a4572b406e5ac97159,", - "input-search.font.placeholder-value.lg": "S:b13445a024c66e80c67c3a44a7b29a58e0f2d631,", - "input-search.font.label.sm": "S:666c788f7e8b035529f17368e86e9947fbaee8e3,", - "input-search.font.label.md": "S:f4a4ac235f21a88c2a9429d1cc2271c5a2b9c660,", - "input-search.font.label.lg": "S:4222c52b39dac319263df98d0a3785e5bcafe185,", - "input-search.font.prefix-suffix.sm": "S:8fbdd40ce4d74fbc55d73b6c1bbe532790b3b229,", - "input-search.font.prefix-suffix.md": "S:fb18ef8dcdaacd10a877ef277dfb5ac3e65ec9c2,", - "input-search.font.prefix-suffix.lg": "S:ea11ff4863c17418acaf138342ed8ee8e3d71cf0,", - "input-search.font.read-only.sm": "S:bf4332a3de9cd9fe6a9f4f509a2be078dd71a119,", - "input-search.font.read-only.md": "S:e16cb5799c4592a1a5fdfbda98327c7456f84334,", - "input-search.font.read-only.lg": "S:869af49b58c9d0c3323e8d0076daeda7d931695e,", - "input-password.font.placeholder-value.sm": "S:ae69e844461496d3a819aa9a969edaa0e24b9f0d,", - "input-password.font.placeholder-value.md": "S:6a43733658f4543ac26e48cb7272ae788e8a1bda,", - "input-password.font.placeholder-value.lg": "S:c67d16be869fb95c91cf8d72d6aa789e6e8d068f,", - "input-password.font.label.sm": "S:70efcff53e88541ef5ed7a8c85a92e37eb833886,", - "input-password.font.label.md": "S:e559504ba84a8574c80d541b8d708071e8c4acb1,", - "input-password.font.label.lg": "S:0b6c1cc4fae736678a3e0cbfb5abbe0147b83f13,", - "input-password.font.prefix-suffix.sm": "S:d7ee15948d42cd62428f0efc5309bdcaff8424b1,", - "input-password.font.prefix-suffix.md": "S:58fb7178ab3d0c787d0380bd7875767a3d6d52bc,", - "input-password.font.prefix-suffix.lg": "S:30afae0c7b32996fc6d57d307d57f8ba42d06286,", - "input-password.font.read-only.sm": "S:a09896c7c18c845be7b58e7a271c7c2e25ad8cad,", - "input-password.font.read-only.md": "S:58a935f317385fa24913e92a23770963ad1cc9d4,", - "input-password.font.read-only.lg": "S:3dde8b4d2b081fa7c64f36c6867411965ce2c0da,", - "input-number.font.placeholder-value.sm": "S:abb08e1935b98a2517086fde04410e624520d8e9,", - "input-number.font.placeholder-value.md": "S:12568bd478c99a24a837927440efeb45d36e13eb,", - "input-number.font.placeholder-value.lg": "S:caf56decff72e34ff8d163b22847fcee8d4bfd94,", - "input-number.font.label.sm": "S:3c6678c73d397107d1b4a6ba1079e0e4072bfc02,", - "input-number.font.label.md": "S:b84312ae8ce95b2f2c3461ac820d0358efd283e1,", - "input-number.font.label.lg": "S:11a1e2ce90c327bb6289f0c12a22b242eedb23c9,", - "input-number.font.prefix-suffix.sm": "S:10a6f6f881eb4ef9439e1f77cd7871f3f27f803c,", - "input-number.font.prefix-suffix.md": "S:e73f3a4bacbf39cd99cc6f46d186387750f9c6ab,", - "input-number.font.prefix-suffix.lg": "S:03d25e1f97cf768be3721396971b354caae8ceca,", - "input-number.font.read-only.sm": "S:608192b5fa5c8910dcab170c5676fb650d19d364,", - "input-number.font.read-only.md": "S:db31de837c3d364a5c50abf3176bd5b04b35d852,", - "input-number.font.read-only.lg": "S:409af4e28352236952de46e60055abdb6e5cd955,", - "input-month.font.placeholder-value.sm": "S:f121f93280cf5f0dc3fe19d33425a06b69796c25,", - "input-month.font.placeholder-value.md": "S:1ac05255dce60e4f7dc5a6266cf4098f81936136,", - "input-month.font.placeholder-value.lg": "S:93e6dd73fdaf0b3c612cc90ebad4e81ca6977ad1,", - "input-month.font.label.sm": "S:ba77dba60b0db22eae7fa2a7b92a3ee973c2609b,", - "input-month.font.label.md": "S:b4c519eb9053f351c30e9e10b7d12a5ff733295f,", - "input-month.font.label.lg": "S:b1280f4e8220e178699ad47b3f7fa087d5b965a3,", - "input-month.font.prefix-suffix.sm": "S:c09c77d8db909546046e447799601fdf9fde6e8c,", - "input-month.font.prefix-suffix.md": "S:b30281f9a510be2ffebe86dfdf2fe0d695653d8b,", - "input-month.font.prefix-suffix.lg": "S:d75129caaea04b466da62d96b4dab17bf2ddc51b,", - "input-month.font.read-only.sm": "S:e1e88b21e9d579fa3135c9aae97d5433389deeb9,", - "input-month.font.read-only.md": "S:53b24e0864dc920fff2dee44eda3e81751f3bab7,", - "input-month.font.read-only.lg": "S:bd60fa8140e1a091cc2472f4710cbee5f7514463,", - "input-file.font.placeholder-value.sm": "S:28bcdff98556b49ee0f6a1fd8ea844fe895fa8d1,", - "input-file.font.placeholder-value.md": "S:637e4604562dbb7b9782cfe97afecd5c7dec51ac,", - "input-file.font.placeholder-value.lg": "S:fa54c0f5a0f0d91bcf40e9bb715b2cc4783324f9,", - "input-file.font.label.sm": "S:cff54e32a37aca3203b653444b9cbcba04f99aa4,", - "input-file.font.label.md": "S:c17827b8c9f1dd08161cc88c65f62fc8fb29cd19,", - "input-file.font.label.lg": "S:1cb2a18e6bf1c10bedfdfea7acfbf8b8fc1581f3,", - "input-file.font.prefix-suffix.sm": "S:5cdcd0e4ebf2c8e1061983d7c801e037c8b4493f,", - "input-file.font.prefix-suffix.md": "S:8b3c08201462dcfa9753e444847e3b47ef964175,", - "input-file.font.prefix-suffix.lg": "S:41cf851e8c9de71ac5936520a8cd0c2f7a58be3c,", - "input-file.font.read-only.sm": "S:da7c1d407762589d80a753c1e3514265b5ca6749,", - "input-file.font.read-only.md": "S:2d57e0983ca013e1254cd2c3bce3e6f05a82bf83,", - "input-file.font.read-only.lg": "S:715e334990a1ce0d422276501494bdb954af9f34,", - "input-email.font.placeholder-value.sm": "S:c9e8e987ea6d5b4cfc6f007a5c493863d26a14c1,", - "input-email.font.placeholder-value.md": "S:6dfa333d86c8510e4d0d67dfc0522a56774b20f4,", - "input-email.font.placeholder-value.lg": "S:647e441a50ee0b827a4bff5ef35d06af42b012fc,", - "input-email.font.label.sm": "S:a5a63c06f17bc2ee2321f843d644eca755ff100c,", - "input-email.font.label.md": "S:30a95a828006d1b93eac0afa187a73c9c7f06584,", - "input-email.font.label.lg": "S:1770a1fe0f24887cbde9845dff54d8a9d1dc5e5e,", - "input-email.font.prefix-suffix.sm": "S:d2d8c557cc62e371ee7ed44bb6389fc319e8dd66,", - "input-email.font.prefix-suffix.md": "S:acf64cf6df150fcb98dd7c75ef101aaa14a894b9,", - "input-email.font.prefix-suffix.lg": "S:6cdf2eb29340ce2bebfe7425b41bd1516c15835a,", - "input-email.font.read-only.sm": "S:044a797bf008f5fc630101ca38a79892745bfa11,", - "input-email.font.read-only.md": "S:4aa83bcbe3a4272e7f77e70517d248ba12031e23,", - "input-email.font.read-only.lg": "S:ebf6bba1b41b7fdf23fdfc6f1d64792d9bbc8233,", - "input-datetime-local.font.placeholder-value.sm": "S:16ff139f3a3674ed90260dfc60fee79a41be9800,", - "input-datetime-local.font.placeholder-value.md": "S:80556bbaa8078038871e60fac28e32922cab5e4e,", - "input-datetime-local.font.placeholder-value.lg": "S:f50e004f28f21c646f06b92cf323b28d21fd5ad5,", - "input-datetime-local.font.label.sm": "S:2502a8cd5ccf777426b9f251cd807613ebd6991f,", - "input-datetime-local.font.label.md": "S:d6dcf1e3f6ac0d7eb761552c571602179acba22c,", - "input-datetime-local.font.label.lg": "S:46864e6240ed80c4eed3175e42e43c27193fae40,", + "input-telephone.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-telephone.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-telephone.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-telephone.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-telephone.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-telephone.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-telephone.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-telephone.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-telephone.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-telephone.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-telephone.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-telephone.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-search.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-search.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-search.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-search.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-search.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-search.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-search.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-search.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-search.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-search.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-search.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-search.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-password.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-password.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-password.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-password.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-password.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-password.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-password.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-password.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-password.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-password.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-password.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-password.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-number.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-number.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-number.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-number.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-number.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-number.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-number.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-number.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-number.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-number.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-number.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-number.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-month.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-month.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-month.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-month.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-month.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-month.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-month.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-month.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-month.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-month.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-month.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-month.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-file.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-file.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-file.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-file.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-file.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-file.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-file.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-file.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-file.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-file.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-file.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-file.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-email.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-email.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-email.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-email.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-email.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-email.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-email.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-email.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-email.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-email.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-email.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-email.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-datetime-local.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-datetime-local.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-datetime-local.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-datetime-local.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-datetime-local.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-datetime-local.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", "input-datetime-local.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", "input-datetime-local.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", "input-datetime-local.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", @@ -2023,11 +2023,11 @@ "combobox.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", "combobox.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", "combobox.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "card.font.title.md": "S:0bae69e35da98ae2c134d5eaaac5ee00266d4654,", + "card.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", "card.font.subtile.md": "S:2f7bbe92776fd17b2ab450464cfe7115ff9e2625,", - "card.font.description.md": "S:6c1257c95513416330013fd36c681850d62bc838,", + "card.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", "block-section.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "block.font.heading.md": "S:42f57fa7a29493c550d9467daeb7fa707a5bc4e4,", + "block.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", "block.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", "block.font.content.md": "S:b2c1bb5f4c41d1d2af5feb08ce085d132682c3e3,", "avatar.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", @@ -2063,19 +2063,206 @@ "accordion-item.font.descrition.sm": "S:f228bade32be994f29a47ae05d541bc1f127b991,", "accordion-item.font.descrition.md": "S:74815d27fbc39d0e8e0221d98771575763398a36,", "accordion-item.font.descrition.lg": "S:f248373f8c30765addca512c0a58e0471cdbbd92,", - "popover.shadow.sm": "S:d3f59b69bf8cbdbfecf9c9eb839fbe755847ca0b,", - "popover.shadow.md": "S:83c9de48711cc62ca0b49f2b62a7d94e4e5ef4ab,", - "popover.shadow.lg": "S:fcbcc482d2a266968c0e307b437f8e2b1fbf4471,", - "notice.shadow.sm": "S:ab73ce018c5358056cceaf952c586443ac374bc7,", - "notice.shadow.md": "S:17e9862a4da6add3f4b67b69423bc763ccb8828b,", - "notice.shadow.lg": "S:29419949b577e61066c3a93422fdb28699bd484d,", + "popover.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", + "popover.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", + "popover.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", + "notice.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", + "notice.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", + "notice.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", "alert.shadow": "S:da1daed980d1d213e4a1bef7afcb9221ee263cde,", - "action-pad-grid.shadow.sm": "S:6b769f5ba81ade8ac303040b77f45e636dcf2e4c,", - "action-pad-grid.shadow.md": "S:95c0f4b965840205e8b3d816ad7afd00c36cd80a,", - "action-pad-grid.shadow.lg": "S:76cc4c7aff5867d52366b534031695737d912e6f,", + "action-pad-grid.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", + "action-pad-grid.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", + "action-pad-grid.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", "action-pad.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", "action-pad.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", - "action-pad.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5," + "action-pad.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", + "fab.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", + "fab.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", + "fab.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", + "fab.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", + "fab.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", + "fab.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", + "fab.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", + "fab.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", + "fab.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", + "fab.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", + "fab.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", + "fab.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", + "fab.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", + "fab.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", + "fab.icon.danger.outline-fill.light": "S:190897ad65956a28bc92cc308f36a77d349f3969,", + "fab.icon.danger.outline-fill.dark": "S:3c5a9638c2dda205a5eb4e396e2bff1d8b118e32,", + "fab.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", + "fab.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", + "fab.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", + "fab.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", + "fab.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", + "fab.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", + "fab.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", + "fab.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", + "fab.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", + "fab.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", + "fab.background.brand.outline-fill.light": "S:deed0816cd06e077712bc53d49d5c52a8f2697c6,", + "fab.background.brand.outline-fill.dark": "S:e881ff759d9a3fe4d3a5e595aafdb34c0b59d2fb,", + "fab.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", + "fab.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", + "fab.background.inverse.outline-fill.light": "S:55ee9a281c4f352fac11c4f46a6d3eba868fc154,", + "fab.background.inverse.outline-fill.dark": "S:f9b93ec04dbe06d0b8f9db9856f89a23ff9b4b9a,", + "fab.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", + "fab.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", + "fab.background.neutral.outline-fill.light": "S:fce6325d80907652f88187c8386bde0961f27b5e,", + "fab.background.neutral.outline-fill.dark": "S:f0e6f37e33b00091d74caad0f7226120ee03cc60,", + "fab.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", + "fab.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", + "fab.background.danger.outline-fill.light": "S:29efd6927147d4b571e4789bc074e7b2a62411d5,", + "fab.background.danger.outline-fill.dark": "S:3991216c4571864d862445156a38bb2b84e7ab62,", + "split-button.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", + "split-button.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", + "split-button.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", + "split-button.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", + "split-button.font.brand.outline.light": "S:a929ca685859c1fc5e7faf543728b2edf3b5f243,", + "split-button.font.brand.outline.dark": "S:7beb60e35440fb45e91d24d8acc14db5b1533bb4,", + "split-button.font.brand.transparent.light": "S:74cfdb55361a2fcfdf0e79657b1aa9b3e6cffb8c,", + "split-button.font.brand.transparent.dark": "S:8d19dd77778ab4642015721ce060bd7ec15f240d,", + "split-button.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", + "split-button.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", + "split-button.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", + "split-button.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", + "split-button.font.inverse.outline.light": "S:625d9574b0882315179cfc86548ed6471b4d016a,", + "split-button.font.inverse.outline.dark": "S:a58a68dd030763cd3b979f3c9c8b53d55cb9904b,", + "split-button.font.inverse.transparent.light": "S:57697b05e86e28fec3897f4cd70e8d71cd10ca9b,", + "split-button.font.inverse.transparent.dark": "S:c22b36e585444176b35d2985759be4ab13f7912f,", + "split-button.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", + "split-button.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", + "split-button.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", + "split-button.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", + "split-button.font.neutral.outline.light": "S:8f1c1a86e08810a6cc0ce7394e4c8ddf6cf7cb4d,", + "split-button.font.neutral.outline.dark": "S:c7418479a6a19078629d08ff0d250434dd7aa6d8,", + "split-button.font.neutral.transparent.light": "S:3d2e4e2536be873c087f6b6181332bf2ce825c42,", + "split-button.font.neutral.transparent.dark": "S:1a2ab9b9fdc12ddf69da58e4784f878a6c75fc66,", + "split-button.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", + "split-button.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", + "split-button.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", + "split-button.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", + "split-button.font.danger.outline.light": "S:9cfd1204a77cb867927a91597db7211a001d3a04,", + "split-button.font.danger.outline.dark": "S:9d611a3ad95a4e7c417d38dcf707aa9dfd4b1da8,", + "split-button.font.danger.transparent.light": "S:6399b4fb7079f55df8a107aa677eacad644890c9,", + "split-button.font.danger.transparent.dark": "S:957fbc6785acc68533d73f89c39099f0da9feaf9,", + "split-button.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", + "split-button.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", + "split-button.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", + "split-button.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", + "split-button.icon.brand.outline.light": "S:96930a17711f286e1a97b8b7ca57a1c37431a621,", + "split-button.icon.brand.outline.dark": "S:6a8c3b2e8887bf20eab6a4f1e3ae0ed577ec662b,", + "split-button.icon.brand.transparent.light": "S:e76ac2dd6b78f85c7892ae2f30e58e8325587168,", + "split-button.icon.brand.transparent.dark": "S:33667181ea79a9be22a25c217678cd18dd0018a4,", + "split-button.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", + "split-button.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", + "split-button.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", + "split-button.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", + "split-button.icon.inverse.outline.light": "S:80c8d7dcc226ba8c08f306b5c6729d81de95efb6,", + "split-button.icon.inverse.outline.dark": "S:9137cbda0b1d79a7a6daff11f72580e2a6fda301,", + "split-button.icon.inverse.transparent.light": "S:1d9ed9e6c0eca660882d7c5705d97d7eb4455e72,", + "split-button.icon.inverse.transparent.dark": "S:8a8366de3e4b5f5ac023b2c703cc641c21a4453b,", + "split-button.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", + "split-button.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", + "split-button.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", + "split-button.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", + "split-button.icon.neutral.outline.light": "S:933927902689b45a97c31f92ab03e1dabfa62bdb,", + "split-button.icon.neutral.outline.dark": "S:1d09040ccbfbdc3f8f89047c3eaab5dc24b7463c,", + "split-button.icon.neutral.transparent.light": "S:b3eb473ce8edf72285c36f6fb42680395ef7d7c1,", + "split-button.icon.neutral.transparent.dark": "S:060673768cd2545a55330e2a6c2c67e82627bbf2,", + "split-button.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", + "split-button.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", + "split-button.icon.danger.outline-fill.light": "S:f1c6de6da4bfbde4c1a866a46549d5444be79262,", + "split-button.icon.danger.outline-fill.dark": "S:2904f08da9ef81b685e5b932384e37173c2a5514,", + "split-button.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", + "split-button.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", + "split-button.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", + "split-button.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", + "split-button.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", + "split-button.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", + "split-button.border.brand.outline.light": "S:5942ca53e46c9c4d7505a40a90b90a8ae3c87afa,", + "split-button.border.brand.outline.dark": "S:1206b15553941f23d821e3ac2e2356e86733333c,", + "split-button.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", + "split-button.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", + "split-button.border.inverse.outline.light": "S:75364b4f0c001e011435396de3da6507780ce7d2,", + "split-button.border.inverse.outline.dark": "S:0f0f21f139a36b68f9c46a82a4f3a0d871225328,", + "split-button.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", + "split-button.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", + "split-button.border.neutral.outline.light": "S:17b18a49ebbd56a80e8d4f01b445d0e3203788a6,", + "split-button.border.neutral.outline.dark": "S:e31fa7bb3960cdf35f11e1a4f512773f5504100b,", + "split-button.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", + "split-button.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", + "split-button.border.danger.outline.light": "S:dac592a30b402672ee19c38cee360264a7823546,", + "split-button.border.danger.outline.dark": "S:34e2d7edfe99cdb6833425e7d33f7269e801bd35,", + "split-button.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", + "split-button.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", + "split-button.background.brand.outline-fill.light": "S:d626d393c8ad95b4751c9971da31d5b8dde5acf8,", + "split-button.background.brand.outline-fill.dark": "S:b31f7f41e7eee4d8762c5e91b343eb700f32da6d,", + "split-button.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", + "split-button.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", + "split-button.background.inverse.outline-fill.light": "S:6095f17907f65a36eaa43634b18481da07e89c24,", + "split-button.background.inverse.outline-fill.dark": "S:270947333fb60a350610c122800dd4541e11911f,", + "split-button.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", + "split-button.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", + "split-button.background.neutral.outline-fill.light": "S:2e2097b0019a629f737b798242b21137db05178b,", + "split-button.background.neutral.outline-fill.dark": "S:1bcb2d00c4bf1100190591fee9f0490c238b0690,", + "split-button.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", + "split-button.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", + "split-button.background.danger.outline-fill.light": "S:b8e89af0739f9c190ff213b5d65091077afb22a1,", + "split-button.background.danger.outline-fill.dark": "S:2aa25e0b56a98a40ad06ce747347818439d543d4,", + "split-button.divider.brand.solid.light": "S:f3907b1e2011db5bc8ba8b32d7c7754fe6a0cf12,", + "split-button.divider.brand.solid.dark": "S:040643b017550540295e39af834ce0727e36f417,", + "split-button.divider.brand.outline-fill.light": "S:09abf747e710b5189b9d5af8efdb236965e6d2b0,", + "split-button.divider.brand.outline-fill.dark": "S:e0361488773a28bde3a43e62be9c915182875306,", + "split-button.divider.brand.outline.light": "S:ae414b1b2e1500191e28a3a35a78a0b2d5021c90,", + "split-button.divider.brand.outline.dark": "S:7ca95385d3cd6c3ca0d7b3ccc310c85278d604ed,", + "split-button.divider.brand.transparent.light": "S:004ebd42468b602354cd292b48a24f09a1018c12,", + "split-button.divider.brand.transparent.dark": "S:011a75726685c59fbf16ae6fd2892432fca29be7,", + "split-button.divider.inverse.solid.light": "S:faf949f46b9e98d76d764c162c84e7bf3c805a87,", + "split-button.divider.inverse.solid.dark": "S:f9e5f06c0f90df05499ff6434746b6d0526dea76,", + "split-button.divider.inverse.outline-fill.light": "S:68d0d54f9077da4ed71eea134ad69991c5aaadc4,", + "split-button.divider.inverse.outline-fill.dark": "S:9688a5c1b2ad5999da192aaec45a351b0f61f39a,", + "split-button.divider.inverse.outline.light": "S:7d2abc11aa11557bcad0b7159a3b985bf7404c7a,", + "split-button.divider.inverse.outline.dark": "S:e29086325428f3768ae9b3d8032ed138b540678b,", + "split-button.divider.inverse.transparent.light": "S:0494750a4ce6c87ba5342bda04dfe3e1b2386731,", + "split-button.divider.inverse.transparent.dark": "S:73e30ccc276621b7c5cbeee15af9059ef6493b3f,", + "split-button.divider.neutral.solid.light": "S:d5d34078e8f8dce2d1074fe937570512618640e2,", + "split-button.divider.neutral.solid.dark": "S:868fd537733d832e99361df22c7105babc381c74,", + "split-button.divider.neutral.outline-fill.light": "S:9064dd0f28564e0d1f06da3fcf24064d1367330e,", + "split-button.divider.neutral.outline-fill.dark": "S:5dcceed203792587cd24998549207702559d0aea,", + "split-button.divider.neutral.outline.light": "S:361671e08751c062c80ff7acd1a9662961d7c2b6,", + "split-button.divider.neutral.outline.dark": "S:005eb1c4d9a870d9fa7325a7717b83b8aab81cd2,", + "split-button.divider.neutral.transparent.light": "S:f071a60687f9e060f9c0b71d3a6e0efe789a630e,", + "split-button.divider.neutral.transparent.dark": "S:edc8287cffd2b3249f8fdf66b3426058c2eb464c,", + "split-button.divider.danger.solid.light": "S:7326ee571ba5b45ef2f5341103dcc6ca4f55f20d,", + "split-button.divider.danger.solid.dark": "S:4e3d4364749947d861d81914749b1d3b4c14903e,", + "split-button.divider.danger.outline-fill.light": "S:6a586971d32ff0064f4a35b7145b308f567111f6,", + "split-button.divider.danger.outline-fill.dark": "S:657b2c4cce0fef37165e77b114c0b08409ade3d1,", + "split-button.divider.danger.outline.light": "S:8e4cf698f01e40e81435f2e61670627c40ad385e,", + "split-button.divider.danger.outline.dark": "S:b880746cb4e5cf8e14c98770516cf322933ea0a1,", + "split-button.divider.danger.transparent.light": "S:d0590600df31d1b53d4b0e989dc49efd1920ad1e,", + "split-button.divider.danger.transparent.dark": "S:e94b635ad1bbf73c275ab9de227839fb290871a0,", + "button.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", + "button.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", + "button.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", + "button.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", + "button.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", + "button.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", + "button.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", + "button.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", + "button.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", + "button.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", + "button.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", + "button.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", + "button.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", + "button.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", + "button.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", + "button.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", + "split-button.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "split-button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "split-button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359," } } ] \ No newline at end of file diff --git a/tokens/component/fab.json b/tokens/component/fab.json index 6f7346d918a..39b2114471b 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -12,7 +12,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -46,7 +46,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -68,7 +68,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -90,7 +90,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -114,7 +114,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -136,7 +136,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -158,7 +158,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.text.1.light", "type": "color" @@ -180,7 +180,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -194,7 +194,7 @@ }, "border": { "brand": { - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.brand.default.light", "type": "color" @@ -206,7 +206,7 @@ } }, "inverse": { - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.inverse.light", "type": "color" @@ -218,7 +218,7 @@ } }, "neutral": { - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.border.3.light", "type": "color" @@ -230,7 +230,7 @@ } }, "danger": { - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.danger.default.light", "type": "color" @@ -254,7 +254,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.foreground.1.light", "type": "color" @@ -276,7 +276,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.foreground.1.light", "type": "color" @@ -298,7 +298,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.foreground.1.light", "type": "color" @@ -320,7 +320,7 @@ "type": "color" } }, - "outline": { + "outline-fill": { "light": { "value": "$semantic.ui.color.foreground.1.light", "type": "color" From 8bb80c5f4437cc9d55dcf97798ad5c0256226c20 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 15:49:31 +0200 Subject: [PATCH 566/696] Updates --- tokens/component/fab.json | 42 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/tokens/component/fab.json b/tokens/component/fab.json index 39b2114471b..7c61bdb8e10 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -194,6 +194,16 @@ }, "border": { "brand": { + "solid": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, "outline-fill": { "light": { "value": "$semantic.ui.color.brand.default.light", @@ -206,6 +216,16 @@ } }, "inverse": { + "solid": { + "light": { + "value": "$semantic.ui.color.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.inverse.dark", + "type": "color" + } + }, "outline-fill": { "light": { "value": "$semantic.ui.color.inverse.light", @@ -218,9 +238,19 @@ } }, "neutral": { + "solid": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, "outline-fill": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "$semantic.ui.color.border.1.light", "type": "color" }, "dark": { @@ -230,6 +260,16 @@ } }, "danger": { + "solid": { + "light": { + "value": "$semantic.ui.color.danger.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.danger.default.dark", + "type": "color" + } + }, "outline-fill": { "light": { "value": "$semantic.ui.color.danger.default.light", From 93edb99ebf7516bc3fc2437f823e30b84b2ec351 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 16:15:49 +0200 Subject: [PATCH 567/696] Updates --- tokens/$themes.json | 50 ++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 21 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 51072b8d469..b73112f11f2 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -2090,8 +2090,8 @@ "fab.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", "fab.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", "fab.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", - "fab.icon.danger.outline-fill.light": "S:190897ad65956a28bc92cc308f36a77d349f3969,", - "fab.icon.danger.outline-fill.dark": "S:3c5a9638c2dda205a5eb4e396e2bff1d8b118e32,", + "fab.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", + "fab.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", "fab.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", "fab.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", "fab.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", @@ -2102,20 +2102,20 @@ "fab.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", "fab.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", "fab.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", - "fab.background.brand.outline-fill.light": "S:deed0816cd06e077712bc53d49d5c52a8f2697c6,", - "fab.background.brand.outline-fill.dark": "S:e881ff759d9a3fe4d3a5e595aafdb34c0b59d2fb,", + "fab.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", + "fab.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", "fab.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", "fab.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", - "fab.background.inverse.outline-fill.light": "S:55ee9a281c4f352fac11c4f46a6d3eba868fc154,", - "fab.background.inverse.outline-fill.dark": "S:f9b93ec04dbe06d0b8f9db9856f89a23ff9b4b9a,", + "fab.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", + "fab.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", "fab.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", "fab.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", - "fab.background.neutral.outline-fill.light": "S:fce6325d80907652f88187c8386bde0961f27b5e,", - "fab.background.neutral.outline-fill.dark": "S:f0e6f37e33b00091d74caad0f7226120ee03cc60,", + "fab.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", + "fab.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", "fab.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", "fab.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", - "fab.background.danger.outline-fill.light": "S:29efd6927147d4b571e4789bc074e7b2a62411d5,", - "fab.background.danger.outline-fill.dark": "S:3991216c4571864d862445156a38bb2b84e7ab62,", + "fab.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", + "fab.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", "split-button.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", "split-button.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", "split-button.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", @@ -2174,8 +2174,8 @@ "split-button.icon.neutral.transparent.dark": "S:060673768cd2545a55330e2a6c2c67e82627bbf2,", "split-button.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", "split-button.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", - "split-button.icon.danger.outline-fill.light": "S:f1c6de6da4bfbde4c1a866a46549d5444be79262,", - "split-button.icon.danger.outline-fill.dark": "S:2904f08da9ef81b685e5b932384e37173c2a5514,", + "split-button.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", + "split-button.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", "split-button.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", "split-button.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", "split-button.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", @@ -2198,20 +2198,20 @@ "split-button.border.danger.outline.dark": "S:34e2d7edfe99cdb6833425e7d33f7269e801bd35,", "split-button.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", "split-button.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", - "split-button.background.brand.outline-fill.light": "S:d626d393c8ad95b4751c9971da31d5b8dde5acf8,", - "split-button.background.brand.outline-fill.dark": "S:b31f7f41e7eee4d8762c5e91b343eb700f32da6d,", + "split-button.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", + "split-button.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", "split-button.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", "split-button.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", - "split-button.background.inverse.outline-fill.light": "S:6095f17907f65a36eaa43634b18481da07e89c24,", - "split-button.background.inverse.outline-fill.dark": "S:270947333fb60a350610c122800dd4541e11911f,", + "split-button.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", + "split-button.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", "split-button.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", "split-button.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", - "split-button.background.neutral.outline-fill.light": "S:2e2097b0019a629f737b798242b21137db05178b,", - "split-button.background.neutral.outline-fill.dark": "S:1bcb2d00c4bf1100190591fee9f0490c238b0690,", + "split-button.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", + "split-button.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", "split-button.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", "split-button.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", - "split-button.background.danger.outline-fill.light": "S:b8e89af0739f9c190ff213b5d65091077afb22a1,", - "split-button.background.danger.outline-fill.dark": "S:2aa25e0b56a98a40ad06ce747347818439d543d4,", + "split-button.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", + "split-button.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", "split-button.divider.brand.solid.light": "S:f3907b1e2011db5bc8ba8b32d7c7754fe6a0cf12,", "split-button.divider.brand.solid.dark": "S:040643b017550540295e39af834ce0727e36f417,", "split-button.divider.brand.outline-fill.light": "S:09abf747e710b5189b9d5af8efdb236965e6d2b0,", @@ -2262,7 +2262,15 @@ "button.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", "split-button.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", "split-button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "split-button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359," + "split-button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "fab.border.brand.solid.light": "S:bd7ea9269499e13add0ce3b7c573f0d5cf43477f,", + "fab.border.brand.solid.dark": "S:c675794954c819b4aa0f731b8a492dda370f1b1b,", + "fab.border.inverse.solid.light": "S:573938363514bd57d61b7938a8c2337aa45af89b,", + "fab.border.inverse.solid.dark": "S:79d49b3abca4ba1459da9ebafe07d1efd4b01763,", + "fab.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", + "fab.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", + "fab.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", + "fab.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d," } } ] \ No newline at end of file From 671f82aa36e57e0bb82623cdb6c30aabd741f2e1 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 17:27:04 +0200 Subject: [PATCH 568/696] Updates --- tokens/component/fab.json | 8 ++++---- tokens/component/split-button.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tokens/component/fab.json b/tokens/component/fab.json index 7c61bdb8e10..4c974a96854 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -240,21 +240,21 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "$semantic.ui.color.foreground.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "$semantic.ui.color.foreground.3.dark", "type": "color" } }, "outline-fill": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "$semantic.ui.color.foreground.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "$semantic.ui.color.foreground.3.dark", "type": "color" } } diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index f8c8114bb53..42fc2c2282a 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -590,7 +590,7 @@ }, "space-between": { "sm": { - "value": "$core.spacing.1", + "value": "$core.spacing.3", "type": "spacing" }, "md": { From 392e261e82e72d4d90f578a2deec4217d6a44951 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 17:45:02 +0200 Subject: [PATCH 569/696] Updates --- tokens/calcite/dark.json | 170 ++++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 170 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 340 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 24cd57d0fb8..6b0b687b7c2 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2318,6 +2318,176 @@ } } } + }, + "fab": { + "font": { + "brand": { + "solid": { + "value": "$fab.font.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.font.brand.outline-fill.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$fab.font.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.font.inverse.outline-fill.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$fab.font.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.font.inverse.outline-fill.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$fab.font.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.font.danger.outline-fill.dark", + "type": "color" + } + } + }, + "icon": { + "brand": { + "solid": { + "value": "$fab.icon.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.icon.brand.outline-fill.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$fab.icon.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.icon.inverse.outline-fill.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$fab.icon.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.icon.inverse.outline-fill.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$fab.icon.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.icon.danger.outline-fill.dark", + "type": "color" + } + } + }, + "background": { + "brand": { + "solid": { + "value": "$fab.background.brand.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.background.brand.outline-fill.dark", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$fab.background.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.background.inverse.outline-fill.dark", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$fab.background.inverse.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.background.inverse.outline-fill.dark", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$fab.background.danger.solid.dark", + "type": "color" + }, + "outline-fill": { + "value": "$fab.background.danger.outline-fill.dark", + "type": "color" + } + } + }, + "border": { + "brand": { + "outline-fill": { + "value": "$fab.border.brand.outline-fill.dark", + "type": "color" + }, + "solid": { + "value": "$fab.border.brand.solid.dark", + "type": "color" + } + }, + "inverse": { + "outline-fill": { + "value": "$fab.border.inverse.outline-fill.dark", + "type": "color" + }, + "solid": { + "value": "$fab.border.inverse.solid.dark", + "type": "color" + } + }, + "neutral": { + "outline-fill": { + "value": "$fab.border.inverse.outline-fill.dark", + "type": "color" + }, + "solid": { + "value": "$fab.border.inverse.solid.dark", + "type": "color" + } + }, + "danger": { + "outline-fill": { + "value": "$fab.border.danger.outline-fill.dark", + "type": "color" + }, + "solid": { + "value": "$fab.border.danger.solid.dark", + "type": "color" + } + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 4198246e13c..145eb21d66b 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2340,6 +2340,176 @@ } } } + }, + "fab": { + "font": { + "brand": { + "solid": { + "value": "$fab.font.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.font.brand.outline-fill.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$fab.font.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.font.inverse.outline-fill.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$fab.font.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.font.inverse.outline-fill.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$fab.font.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.font.danger.outline-fill.light", + "type": "color" + } + } + }, + "icon": { + "brand": { + "solid": { + "value": "$fab.icon.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.icon.brand.outline-fill.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$fab.icon.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.icon.inverse.outline-fill.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$fab.icon.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.icon.inverse.outline-fill.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$fab.icon.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.icon.danger.outline-fill.light", + "type": "color" + } + } + }, + "background": { + "brand": { + "solid": { + "value": "$fab.background.brand.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.background.brand.outline-fill.light", + "type": "color" + } + }, + "inverse": { + "solid": { + "value": "$fab.background.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.background.inverse.outline-fill.light", + "type": "color" + } + }, + "neutral": { + "solid": { + "value": "$fab.background.inverse.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.background.inverse.outline-fill.light", + "type": "color" + } + }, + "danger": { + "solid": { + "value": "$fab.background.danger.solid.light", + "type": "color" + }, + "outline-fill": { + "value": "$fab.background.danger.outline-fill.light", + "type": "color" + } + } + }, + "border": { + "brand": { + "outline-fill": { + "value": "$fab.border.brand.outline-fill.light", + "type": "color" + }, + "solid": { + "value": "$fab.border.brand.solid.light", + "type": "color" + } + }, + "inverse": { + "outline-fill": { + "value": "$fab.border.inverse.outline-fill.light", + "type": "color" + }, + "solid": { + "value": "$fab.border.inverse.solid.light", + "type": "color" + } + }, + "neutral": { + "outline-fill": { + "value": "$fab.border.inverse.outline-fill.light", + "type": "color" + }, + "solid": { + "value": "$fab.border.inverse.solid.light", + "type": "color" + } + }, + "danger": { + "outline-fill": { + "value": "$fab.border.danger.outline-fill.light", + "type": "color" + }, + "solid": { + "value": "$fab.border.danger.solid.light", + "type": "color" + } + } + } } } } From dc9a6907222ce9a680ce08b2e3dc93198f62dfa5 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 25 Apr 2023 18:42:19 +0200 Subject: [PATCH 570/696] Updates --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++- tokens/component/dropdown-item.json | 177 ++++++++++++++++++++++++++++ tokens/component/dropdown.json | 4 +- 4 files changed, 190 insertions(+), 7 deletions(-) create mode 100644 tokens/component/dropdown-item.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 3f68b549fa8..47698db2c1b 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -11,6 +11,7 @@ "component/checkbox", "component/chip", "component/dropdown", + "component/dropdown-item", "component/action-bar", "component/action-bar-grid", "component/action-pad", diff --git a/tokens/$themes.json b/tokens/$themes.json index b73112f11f2..ac9c8cba0fa 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/dropdown-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/dropdown-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -49,7 +51,8 @@ "core": "source", "semantic": "source", "component/tree-item": "source", - "component/split-button": "source" + "component/split-button": "source", + "component/dropdown-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -140,7 +143,8 @@ "component/switch": "source", "component/stepper-item": "source", "component/tree-item": "source", - "component/split-button": "source" + "component/split-button": "source", + "component/dropdown-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -272,7 +276,8 @@ "component/slider-histogram-range": "enabled", "component/slider-range": "enabled", "component/filter": "enabled", - "component/split-button": "enabled" + "component/split-button": "enabled", + "component/dropdown-item": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json new file mode 100644 index 00000000000..625af68b723 --- /dev/null +++ b/tokens/component/dropdown-item.json @@ -0,0 +1,177 @@ +{ + "dropdown": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "group-title": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.1", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.2", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.4", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.14", + "type": "spacing" + } + }, + "space-around": { + "sm": { + "value": "$core.spacing.7", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { + "sm": { + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "md": { + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + }, + "lg": { + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" + } + } + } + } +} \ No newline at end of file diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index b4e2f0a5bb1..e8261d8da1d 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -112,11 +112,11 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, From 2fd123434a5854bb52ce16240235e646d6afa6fc Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 00:17:54 +0200 Subject: [PATCH 571/696] Updates --- tokens/$themes.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index ac9c8cba0fa..aaa5f95d3d8 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/dropdown-item": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/dropdown-item": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, From 74b1dca3fcdf910aa8538a5632df4d7b282cec8f Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 00:30:12 +0200 Subject: [PATCH 572/696] Updates --- tokens/component/dropdown-item.json | 89 +++++++++-------------------- 1 file changed, 26 insertions(+), 63 deletions(-) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 625af68b723..10ec1ec9838 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -1,5 +1,5 @@ { - "dropdown": { + "dropdown-item": { "font": { "default": { "light": { @@ -9,20 +9,20 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" } }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, "group-title": { "light": { "value": "$semantic.ui.color.text.2.light", @@ -31,6 +31,18 @@ "dark": { "value": "$semantic.ui.color.text.2.dark", "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" } } }, @@ -54,33 +66,9 @@ "type": "color" } }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { @@ -147,31 +135,6 @@ "value": "$core.spacing.11", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } \ No newline at end of file From e422c8a0abaf44c634af3f71c14ae61992779205 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 00:54:33 +0200 Subject: [PATCH 573/696] Updates --- tokens/component/dropdown-item.json | 116 +++++++++++++++++++++------- 1 file changed, 89 insertions(+), 27 deletions(-) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 10ec1ec9838..3c9b2d24ac2 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -72,39 +72,25 @@ "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, @@ -123,17 +109,93 @@ } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" + "content": { + "left": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.0", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.0", + "type": "spacing" + } + } }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "container": { + "left": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "group-title": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } } } } From 1199e12a1086daf7ea5ac433f7e51bfe34c05abf Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 01:15:18 +0200 Subject: [PATCH 574/696] Updates --- tokens/component/dropdown-item.json | 193 ++++++++++++---------------- tokens/component/dropdown.json | 143 ++------------------- 2 files changed, 96 insertions(+), 240 deletions(-) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 3c9b2d24ac2..625af68b723 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -1,5 +1,5 @@ { - "dropdown-item": { + "dropdown": { "font": { "default": { "light": { @@ -9,20 +9,20 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" } }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, "group-title": { "light": { "value": "$semantic.ui.color.text.2.light", @@ -31,18 +31,6 @@ "dark": { "value": "$semantic.ui.color.text.2.dark", "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" } } }, @@ -66,31 +54,69 @@ "type": "color" } }, + "foreground": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.1", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.2", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.4", "type": "borderWidth" } }, + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" + } + }, "icon-size": { "sm": { "value": "$core.sizing.7", "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "$core.sizing.9", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "$core.sizing.11", "type": "sizing" } }, @@ -109,92 +135,41 @@ } }, "space-around": { - "content": { - "left": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.0", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.0", - "type": "spacing" - } - } + "sm": { + "value": "$core.spacing.7", + "type": "spacing" }, - "container": { - "left": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" - } - } + "md": { + "value": "$core.spacing.9", + "type": "spacing" }, - "group-title": { + "lg": { + "value": "$core.spacing.11", + "type": "spacing" + } + }, + "[specific-element]": { + "font": { "sm": { - "value": "$core.spacing.3", - "type": "spacing" + "value": { + "typography": "$[comp-name].font.sm", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" }, "md": { - "value": "$core.spacing.5", - "type": "spacing" + "value": { + "typography": "$[comp-name].font.md", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" }, "lg": { - "value": "$core.spacing.7", - "type": "spacing" + "value": { + "typography": "$[comp-name].font.lg", + "fontWeights": "$core.font.font-weight.medium-italic" + }, + "type": "composition" } } } diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index e8261d8da1d..d349d6bf369 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -1,97 +1,31 @@ { "dropdown": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.background.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } } }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, "border-radius": { "sm": { - "value": "$core.border.border-radius.4", + "value": "$core.border.border-radius.1", "type": "borderRadius" }, "md": { - "value": "$core.border.border-radius.5", + "value": "$core.border.border-radius.1", "type": "borderRadius" }, "lg": { - "value": "$core.border.border-radius.6", + "value": "$core.border.border-radius.1", "type": "borderRadius" } }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, "comp-size": { "sm": { "value": "$core.sizing.9", @@ -106,71 +40,18 @@ "type": "sizing" } }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { + "box-shadow": { "sm": { - "value": "$core.spacing.9", - "type": "spacing" + "value": "$core.box-shadow.2", + "type": "boxShadow" }, "md": { - "value": "$core.spacing.11", - "type": "spacing" + "value": "$core.box-shadow.2", + "type": "boxShadow" }, "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } + "value": "$core.box-shadow.2", + "type": "boxShadow" } } } From 6c130e7d4f789e785bd12183a674452eac3b6b4b Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 13:34:27 +0200 Subject: [PATCH 575/696] Updates --- tokens/component/dropdown-item.json | 193 ++++++++++++++++------------ 1 file changed, 109 insertions(+), 84 deletions(-) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 625af68b723..3c9b2d24ac2 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -1,5 +1,5 @@ { - "dropdown": { + "dropdown-item": { "font": { "default": { "light": { @@ -9,20 +9,20 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" } }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, "group-title": { "light": { "value": "$semantic.ui.color.text.2.light", @@ -31,6 +31,18 @@ "dark": { "value": "$semantic.ui.color.text.2.dark", "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" } } }, @@ -54,69 +66,31 @@ "type": "color" } }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, @@ -135,41 +109,92 @@ } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" + "content": { + "left": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.0", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.0", + "type": "spacing" + } + } }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "container": { + "left": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { + "group-title": { "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" + "value": "$core.spacing.3", + "type": "spacing" }, "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" + "value": "$core.spacing.5", + "type": "spacing" }, "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" + "value": "$core.spacing.7", + "type": "spacing" } } } From 00813ac4f43bb4da12ac7f0eb0b7a38822b64e01 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 15:23:14 +0200 Subject: [PATCH 576/696] Updates --- tokens/component/dropdown-item.json | 46 +++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 3c9b2d24ac2..95f764b4bc5 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -196,6 +196,52 @@ "value": "$core.spacing.7", "type": "spacing" } + }, + "icon-start": { + "left": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + }, + "icon-end": { + "left": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + } } } } From a211866b446f6b0d143a28fcbebdfd09980afc40 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 15:35:17 +0200 Subject: [PATCH 577/696] Updates --- tokens/component/dropdown-item.json | 150 ++++++++++++++++++++++------ 1 file changed, 120 insertions(+), 30 deletions(-) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 95f764b4bc5..2ea3431b82e 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -140,46 +140,136 @@ } }, "container": { - "left": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" + "default": { + "left": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } } }, - "right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" + "single": { + "left": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.13", + "type": "spacing" + } }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } } }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" + "multi": { + "left": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.13", + "type": "spacing" + } }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } } } }, From 663fc4bb6257d76be9f4e389710556068327e957 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 15:55:48 +0200 Subject: [PATCH 578/696] Updates --- tokens/component/dropdown-item.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 2ea3431b82e..4b9caddc7ff 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -23,6 +23,28 @@ "type": "typography" } }, + "selected": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, "group-title": { "light": { "value": "$semantic.ui.color.text.2.light", From 90f33277275580267c1243998bf5137b965786f5 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 16:43:23 +0200 Subject: [PATCH 579/696] Updates --- tokens/component/dropdown-item.json | 58 ++++++++++++++++++++--------- 1 file changed, 41 insertions(+), 17 deletions(-) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 4b9caddc7ff..7329f59cbcd 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -69,13 +69,35 @@ } }, "icon": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "selected": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" + "select": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } } }, "border": { @@ -117,17 +139,19 @@ } }, "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" + "container": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } } }, "space-around": { From 81e808401f9eb2da3948613e5074e0faa140afaa Mon Sep 17 00:00:00 2001 From: Skye Seitz Date: Wed, 26 Apr 2023 11:13:23 -0700 Subject: [PATCH 580/696] Adding semantic teir vars to spacing --- tokens/semantic.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tokens/semantic.json b/tokens/semantic.json index 6f678e878b4..90e46c11595 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1678,6 +1678,16 @@ } } } + }, + "spacing": { + "base": { + "value": "$core.spacing.0", + "type": "spacing" + }, + "xs": { + "value": "$semantic.spacing.base * 2", + "type": "spacing" + } } } } \ No newline at end of file From e97dae4686ba45f35fb856d882619a8186388d76 Mon Sep 17 00:00:00 2001 From: Skye Seitz Date: Wed, 26 Apr 2023 11:25:55 -0700 Subject: [PATCH 581/696] Added the rest of the semantic variables for spacing --- tokens/semantic.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tokens/semantic.json b/tokens/semantic.json index 90e46c11595..87211d78825 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1687,6 +1687,22 @@ "xs": { "value": "$semantic.spacing.base * 2", "type": "spacing" + }, + "sm": { + "value": "$semantic.spacing.base * 4", + "type": "spacing" + }, + "md": { + "value": "$semantic.spacing.base *6", + "type": "spacing" + }, + "lg": { + "value": "$semantic.spacing.base * 8", + "type": "spacing" + }, + "xl": { + "value": "$semantic.spacing.base *10", + "type": "spacing" } } } From 174ad24d9ecb515e1e78b80dd78661d52bf3577e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 23:19:00 +0200 Subject: [PATCH 582/696] Updates --- tokens/$themes.json | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index aaa5f95d3d8..df520648165 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -2273,7 +2273,33 @@ "fab.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", "fab.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", "fab.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", - "fab.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d," + "fab.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d,", + "dropdown-item.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "dropdown-item.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", + "dropdown-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", + "dropdown-item.font.selected.dark": "S:b4e880155c844b1765726290556b2d29d0f08f33,", + "dropdown-item.font.group-title.light": "S:31f32a2568e9993f9a0ab87652b766323c5f8c2c,", + "dropdown-item.font.group-title.dark": "S:d721d4da4208f405d7774d69f3ef379fbdeaf077,", + "dropdown-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "dropdown-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "dropdown-item.icon.default.selected.light": "S:b720f936648db74a22f04b075700ae48e938d222,", + "dropdown-item.icon.default.selected.dark": "S:5a55ca37cc14f021a69484aedbc347a0f190ac85,", + "dropdown-item.icon.select.light": "S:e1e32c1fe7ee7d08cb409d5dcd1dcc08c84e164c,", + "dropdown-item.icon.select.dark": "S:b4c84785f94ba696d082f6c2059e29738f167449,", + "dropdown-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "dropdown-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "dropdown-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", + "dropdown-item.font.default.md": "S:dfd9085fe214c3c65b4140511eb8fa5ae2b7d7c6,", + "dropdown-item.font.default.lg": "S:94893ba1668f2671af99cbef2e35361cd7d3d60b,", + "dropdown-item.font.selected.sm": "S:688d88aa531f806ed7f5472dbd94cb111b282e9a,", + "dropdown-item.font.selected.md": "S:744e56dc530590684c79e51206e6047cc86acbeb,", + "dropdown-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", + "dropdown-item.font.group-title.sm": "S:eb4ec061efa8034cbbe670c055585e4797e5bb46,", + "dropdown-item.font.group-title.md": "S:bc23c51d545229bbfbb38158cfd41ce38637c3eb,", + "dropdown-item.font.group-title.lg": "S:e3b5b3fea87360db4033c8305010066eb11e4334,", + "dropdown.box-shadow.sm": "S:fc6af9b0932b35a430b5801d07d2a09091f54d89,", + "dropdown.box-shadow.md": "S:2d1be1b2815911047a2998daf5f8a8900086776f,", + "dropdown.box-shadow.lg": "S:e13b51b3501db393d25693242284df7ece2e52c4," } } ] \ No newline at end of file From ca2795bb7fc864105ace22cd04e1608cf3b3689f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 26 Apr 2023 14:31:34 -0700 Subject: [PATCH 583/696] WIP: tokens build for dist --- .gitignore | 4 +- CONTRIBUTING.md | 4 +- README.md | 59 +++---- jest.config.js | 5 - jest.config.json | 16 ++ package.json | 22 ++- tools/token-transformer/format/css.ts | 6 +- tools/token-transformer/format/javascript.ts | 6 +- tools/token-transformer/getThemes.ts | 2 +- tools/token-transformer/index.ts | 8 +- .../parse/expandComposites.ts | 2 +- tools/token-transformer/sd-run.ts | 14 +- tools/token-transformer/sd-run.ts.bak | 150 ------------------ .../utils/getSortedTokens.ts | 4 +- tsconfig.cjs.json | 9 ++ 15 files changed, 103 insertions(+), 208 deletions(-) delete mode 100644 jest.config.js create mode 100644 jest.config.json delete mode 100644 tools/token-transformer/sd-run.ts.bak create mode 100644 tsconfig.cjs.json diff --git a/.gitignore b/.gitignore index f645f3fd4b7..c2ee34a97c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # Logs logs *.log +**/*.bak # Dependency directory # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- @@ -13,5 +14,4 @@ node_modules build # Transformation Directory -sd-tokens -sd-example +tools/token-transformer/**/*.js diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b43e6e0dd2b..5556732b5db 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -34,11 +34,11 @@ git checkout -b designer/[yourname] ``` ```bash -# Use the calcite default branching pattern +# or use the calcite default branching pattern git checkout -b [yourname]/[type]-[issue#] ``` -3. Be sure your code follows our practices. +3. Be sure your code passes our checks ```bash # Test current code diff --git a/README.md b/README.md index cc8b36ea44d..1f14417030d 100644 --- a/README.md +++ b/README.md @@ -1,44 +1,45 @@ # Calcite Design Tokens ## Getting Started + +Install the design tokens module. + ```bash -npm install -``` -```bash -npm run build +npm install @esri/calcite-design-tokens ``` -This will generate build artifacts from tokens created with the Figma Token Plugin +Reference tokens in your CSS. +```css +@import '@esri/calcite-design-tokens/css'; + +:root { + --my-custom-token: var(--calcite-semantic-ui-color-text-1-light); +} ``` -scss -✔︎ build/scss/_variables.scss -css -✔︎ build/css/tokens.css +Reference tokens in your JavaScript. -js-es6 -✔︎ build/es6/tokens.js -✔︎ build/es6/tokens.d.ts +```js +import { calciteSemanticUiColorText_1Light } from '@esri/calcite-design-tokens'; -js-cjs -✔︎ build/cjs/tokens.js -✔︎ build/cjs/tokens.d.ts +export function addTextStyle(component) { + component.style.color = calciteSemanticUiColorText_1Light; + + return component; +} +``` -android -✔︎ build/android/font_dimens.xml -✔︎ build/android/colors.xml +## Token assets -ios -✔︎ build/ios/StyleDictionaryColor.h -✔︎ build/ios/StyleDictionaryColor.m -✔︎ build/ios/StyleDictionarySize.h -✔︎ build/ios/StyleDictionarySize.m +These are the published asset files generated by the token transformer -ios-swift -✔︎ build/ios-swift/StyleDictionary.swift +| Name | CSS | JavaScript (es6) | +| --- | --- | --- | +| Calcite Headless | @esri/calcite-design-tokens/css
@esri/calcite-design-tokens/css/headless | @esri/calcite-design-tokens
@esri/calcite-design-tokens/js/headless | +| Calcite Light | @esri/calcite-design-tokens/css/calcite/light | @esri/calcite-design-tokens/js/calcite/light | +| Calcite Dark | @esri/calcite-design-tokens/css/calcite/dark | @esri/calcite-design-tokens/js/calcite/dark | +| Calcite Brand Light | @esri/calcite-design-tokens/css/brand/light | @esri/calcite-design-tokens/js/brand/light | +| Calcite Brand Dark | @esri/calcite-design-tokens/css/brand/dark | @esri/calcite-design-tokens/js/brand/dark | -ios-swift-separate-enums -✔︎ build/ios-swift/StyleDictionaryColor.swift -✔︎ build/ios-swift/StyleDictionarySize.swift -``` +For a full list of tokens and their detailes, please refer to https://developers.arcgis.com/calcite-design-system/tokens diff --git a/jest.config.js b/jest.config.js deleted file mode 100644 index b413e106db6..00000000000 --- a/jest.config.js +++ /dev/null @@ -1,5 +0,0 @@ -/** @type {import('ts-jest').JestConfigWithTsJest} */ -module.exports = { - preset: 'ts-jest', - testEnvironment: 'node', -}; \ No newline at end of file diff --git a/jest.config.json b/jest.config.json new file mode 100644 index 00000000000..e21a97f144d --- /dev/null +++ b/jest.config.json @@ -0,0 +1,16 @@ +{ + "preset": "ts-jest", + "testEnvironment": "node", + "extensionsToTreatAsEsm": [".ts"], + "moduleNameMapper": { + "^(\\.{1,2}/.*)\\.js$": "$1" + }, + "transform": { + "^.+\\.tsx?$": [ + "ts-jest", + { + "useESM": true + } + ] + } +} diff --git a/package.json b/package.json index 82102e03632..f92368b1c37 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,22 @@ "design tokens", "tokens" ], - "main": "dist/index.js", + "main": "./build/js/calciteHeadless.js", + "type": "module", + "exports": { + ".": "./build/js/calciteHeadless.js", + "./js/headless": "./build/js/calciteHeadless.js", + "./js/brand/light": "./build/js/brandLight.js", + "./js/brand/dark": "./build/js/brandDark.js", + "./js/calcite/light": "./build/js/calciteLight.js", + "./js/calcite/dark": "./build/js/calciteDark.js", + "./css": "./build/css/calciteHeadless.css", + "./css/headless": "./build/css/calciteHeadless.css", + "./css/brand/light": "./build/css/brandLight.css", + "./css/brand/dark": "./build/css/brandDark.css", + "./css/calcite/light": "./build/css/calciteLight.css", + "./css/calcite/dark": "./build/css/calciteDark.css" + }, "repository": { "type": "git", "url": "git://github.com/Esri/calcite-styles.git" @@ -46,8 +61,9 @@ "scripts": { "test": "jest", "test:dev": "jest --watch", - "build": "tsc", - "build:sd": "style-dictionary build", + "build": "npm run build:ts && npm run build:tokens", + "build:ts": "tsc --project tsconfig.cjs.json", + "build:tokens": "node tools/build/index.js", "build:transformer": "token-transformer tokens sd-tokens/output.json", "release": "echo 'release is still TBD. Please message Ali Stump or Erik Harper-Dicianno for more information." }, diff --git a/tools/token-transformer/format/css.ts b/tools/token-transformer/format/css.ts index ae0bf67086f..8749d4971f7 100644 --- a/tools/token-transformer/format/css.ts +++ b/tools/token-transformer/format/css.ts @@ -1,5 +1,7 @@ -import { Dictionary, File, Options, Platform, formatHelpers } from "style-dictionary"; -import { getSortedTokens } from "../utils/getSortedTokens"; +import sd, { Dictionary, File, Platform, Options } from "style-dictionary"; +import { getSortedTokens } from "../utils/getSortedTokens.js"; + +const { formatHelpers } = sd; const defaultFormatting = { lineSeparator: '\n', diff --git a/tools/token-transformer/format/javascript.ts b/tools/token-transformer/format/javascript.ts index 8f5154250ef..5fcfdacbe10 100644 --- a/tools/token-transformer/format/javascript.ts +++ b/tools/token-transformer/format/javascript.ts @@ -1,5 +1,7 @@ -import { Dictionary, File, Options, Platform, formatHelpers } from "style-dictionary"; -import { getSortedTokens } from "../utils/getSortedTokens"; +import sd, { Dictionary, File, Platform, Options } from "style-dictionary"; +import { getSortedTokens } from "../utils/getSortedTokens.js"; + +const { formatHelpers } = sd; export function formatJS(fileInfo: { dictionary: Dictionary, file: File, platform: Platform, options: Options}) { const { dictionary, options, file } = fileInfo; diff --git a/tools/token-transformer/getThemes.ts b/tools/token-transformer/getThemes.ts index a86ebf00216..d539267521f 100644 --- a/tools/token-transformer/getThemes.ts +++ b/tools/token-transformer/getThemes.ts @@ -1,6 +1,6 @@ import { readFileSync } from "fs"; -import { parseName } from "./utils/parseName"; import { Options } from "style-dictionary"; +import { parseName } from "./utils/parseName.js"; export interface ThemeFileInterface { id: string; diff --git a/tools/token-transformer/index.ts b/tools/token-transformer/index.ts index cfaacc67910..4eb66990a51 100644 --- a/tools/token-transformer/index.ts +++ b/tools/token-transformer/index.ts @@ -1,7 +1,11 @@ -import { run } from "./sd-run"; -import { getThemes } from './getThemes'; +import { run } from "./sd-run.js"; +import { getThemes } from './getThemes.js'; export const transformTokens = async () => { const themes = await getThemes('tokens/$themes.json'); return Promise.all(themes.map((theme) => run('tokens', 'build', theme))); } + +if (process.env.NODE_ENV !== 'test') { + transformTokens(); +} diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index bd1c40b876e..9bbde88f9fc 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -5,7 +5,7 @@ import { Expandables, ExpandablesAsStrings, expandablesAsStringsArr, -} from '../TransformOptions'; +} from '../TransformOptions.js'; const typeMaps = { boxShadow: { diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 4bb1c4b544f..c0ec5510b03 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -1,12 +1,12 @@ // import { registerTransforms } from '@tokens-studio/sd-transforms'; -import * as StyleDictionary from 'style-dictionary'; +import StyleDictionary from 'style-dictionary'; import { registerTransforms } from '@tokens-studio/sd-transforms'; -import { expandComposites } from './parse/expandComposites'; -import { Theme } from './getThemes' -import { formatJS } from './format/javascript'; -import { formatCSS } from './format/css'; -import { nameCamelCase } from './transform/nameCamelCase'; -import { parseName } from './utils/parseName'; +import { expandComposites } from './parse/expandComposites.js'; +import { Theme } from './getThemes.js'; +import { formatJS } from './format/javascript.js'; +import { formatCSS } from './format/css.js'; +import { nameCamelCase } from './transform/nameCamelCase.js'; +import { parseName } from './utils/parseName.js'; const matchExclusions = /(backup|\[|\])(?=\.\w+$)/ const matchFiles = (filePath: string, matchList: string[]) => { diff --git a/tools/token-transformer/sd-run.ts.bak b/tools/token-transformer/sd-run.ts.bak deleted file mode 100644 index 75f24cc951a..00000000000 --- a/tools/token-transformer/sd-run.ts.bak +++ /dev/null @@ -1,150 +0,0 @@ -import * as StyleDictionary from 'style-dictionary'; -import path from 'path'; -export { - expandComposites, - mapDescriptionToComment, - checkAndEvaluateMath, - transformDimension, - transformFontWeights, - transformColorModifiers, - transformLineHeight, - transformShadowForCSS, - transformBorderForCSS, - transformTypographyForCSS, - transformHEXRGBaForCSS, - transformLetterSpacingForCSS, - transformTypographyForCompose -} from '@tokens-studio/sd-transforms' - -const tokensDir = path.resolve(process.cwd(), 'tokens'); - -const themes = [{ - name: 'calcite-headless', - enabled: ['core', 'semantic.json', 'component/avatar'], - outputDir: 'build', - options: { - outputReferences: true, - } -}]; - -StyleDictionary.registerParser({ - pattern: /\.json$/, - parse: ({ filePath, contents }) => { - debugger; - const regexTest = /\$\w+[\.\w-]*/dgm - return JSON.parse(contents, (key, value) => { - const newValue = value.replaceAll(regexTest, (match) => { - return `{${match.slice(1)}}`; - }) - return newValue; - }); - } -}); - -StyleDictionary.registerTransform({ - type: `value`, - transitive: true, - name: `debugger`, - matcher: (token) => true, - transformer: (token) => { - debugger; - // token.value will be resolved and transformed at this point - return token; - } -}); - -StyleDictionary.registerFormat({ - name: `calcite/js`, - formatter: function({dictionary, options}) { - const referencedTokens: string[] = []; - // @ts-expect-error SD still needs to workout some weirdness with their types - const enabledTokens = dictionary.allTokens.sort(StyleDictionary.formatHelpers.sortByReference(dictionary)).map(token => { - debugger; - let value = JSON.stringify(token.value); - // the `dictionary` object now has `usesReference()` and - // `getReferences()` methods. `usesReference()` will return true if - // the value has a reference in it. `getReferences()` will return - // an array of references to the whole tokens so that you can access their - // names or any other attributes. - if (dictionary.usesReference(token.original.value)) { - // Note: make sure to use `token.original.value` because - // `token.value` is already resolved at this point. - const refs = dictionary.getReferences(token.original.value); - refs.forEach(ref => { - const originalValue = ref.name; - referencedTokens.push(originalValue.slice(1, -1)); - value = value.replace(ref.value, () => `${originalValue}`); - }); - } - // Only write to file if it is an enabled file (enabled == source in SD) - return token.isSource ? `export const ${token.name} = ${value};`: undefined; - }).filter((t) => t); - - return StyleDictionary.formatHelpers.fileHeader({ file: { - className?: string; - packageName?: string; - destination: string; - format?: string; - filter?: string | Partial | ((token: TransformedToken) => boolean); - options?: Options; - }, commentStyle: 'short'}) - } -}); - -const defaultTransforms = [ - 'debugger', - 'ts/descriptionToComment', - 'ts/size/px', - 'ts/opacity', - 'ts/size/lineheight', - 'ts/type/fontWeight', - 'ts/resolveMath', - 'ts/color/modifiers', -]; -const jsTransforms = [ - 'name/cti/kebab' -]; -const cssTransforms = [ - 'ts/size/css/letterspacing', - 'ts/typography/css/shorthand', - 'ts/border/css/shorthand', - 'ts/shadow/css/shorthand', - 'ts/color/css/hexrgba', - 'name/cti/kebab' -]; - -themes.forEach(theme => { - StyleDictionary.extend({ - source: theme.enabled, - platforms: { - js: { - options: theme.options, - transforms: [ - ...defaultTransforms, - ...jsTransforms, - ], - buildPath: `${theme.outputDir}/js/`, - files: [ - { - destination: `${theme.name}.js`, - format: 'calcite/js', - }, - ], - }, - css: { - options: theme.options, - transforms: [ - ...defaultTransforms, - ...cssTransforms, - ], - buildPath: `${theme.outputDir}/css/`, - files: [ - { - destination: `${theme.name}.css`, - format: 'css/variables', - }, - ], - }, - }, - }).buildAllPlatforms(); -}); diff --git a/tools/token-transformer/utils/getSortedTokens.ts b/tools/token-transformer/utils/getSortedTokens.ts index a882697f87d..4a54e050543 100644 --- a/tools/token-transformer/utils/getSortedTokens.ts +++ b/tools/token-transformer/utils/getSortedTokens.ts @@ -1,5 +1,5 @@ -import { Dictionary, File, Options, Platform, TransformedToken, TransformedTokens } from "style-dictionary"; -import { reverse } from "./reverse"; +import sd, { Dictionary, File, Platform, Options, TransformedTokens, TransformedToken } from "style-dictionary"; +import { reverse } from "./reverse.js"; function includeReferenceTokens(token: TransformedToken, dictionary: Dictionary, tokenSets: TransformedTokens[], pointer: number) { let value = JSON.stringify(token.value); diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json new file mode 100644 index 00000000000..0beb14e6f0c --- /dev/null +++ b/tsconfig.cjs.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig", + "compilerOptions": { + "target": "ES2018", + "outDir": "./tools/build", + "sourceMap": true + }, + "exclude": ["**/*.test.*"] +} From c0098d6c9592c229140811f02f0220612c9507d7 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 26 Apr 2023 23:44:47 +0200 Subject: [PATCH 584/696] Updates --- tokens/component/dropdown-item.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 7329f59cbcd..d3dfbc4358c 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -233,11 +233,11 @@ "single": { "left": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.3", "type": "spacing" }, "lg": { @@ -277,11 +277,11 @@ "multi": { "left": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.1", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.3", "type": "spacing" }, "lg": { From 0bf87c0a2d45fc55a292acd0ab2f5230f9890c60 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 27 Apr 2023 00:31:48 +0200 Subject: [PATCH 585/696] Updates --- tokens/component/dropdown-item.json | 74 +++++++++++++++++++++-------- 1 file changed, 53 insertions(+), 21 deletions(-) diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index d3dfbc4358c..a79374b5111 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -180,7 +180,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.0", + "value": "$core.spacing.none", "type": "spacing" } } @@ -232,17 +232,33 @@ }, "single": { "left": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" + "default": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.13", + "type": "spacing" + } }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.13", - "type": "spacing" + "selected": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } } }, "right": { @@ -276,17 +292,33 @@ }, "multi": { "left": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" + "default": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.13", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.13", - "type": "spacing" + "selected": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } } }, "right": { From 5091555c518c85b8c213793eea82e107c6cd2acd Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 27 Apr 2023 00:53:12 +0200 Subject: [PATCH 586/696] Updates --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/component/combobox-item.json | 370 ++++++++++++++++++++++++++++ 3 files changed, 381 insertions(+), 5 deletions(-) create mode 100644 tokens/component/combobox-item.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 47698db2c1b..857da62c0ca 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -22,6 +22,7 @@ "component/block-section", "component/card", "component/combobox", + "component/combobox-item", "component/date-picker", "component/color-picker", "component/input-date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index df520648165..4dcda723e84 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/combobox-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/combobox-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -50,7 +52,8 @@ "semantic": "source", "component/tree-item": "source", "component/split-button": "source", - "component/dropdown-item": "source" + "component/dropdown-item": "source", + "component/combobox-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -142,7 +145,8 @@ "component/stepper-item": "source", "component/tree-item": "source", "component/split-button": "source", - "component/dropdown-item": "source" + "component/dropdown-item": "source", + "component/combobox-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -275,7 +279,8 @@ "component/slider-range": "enabled", "component/filter": "enabled", "component/split-button": "enabled", - "component/dropdown-item": "enabled" + "component/dropdown-item": "enabled", + "component/combobox-item": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", diff --git a/tokens/component/combobox-item.json b/tokens/component/combobox-item.json new file mode 100644 index 00000000000..d2441ca171a --- /dev/null +++ b/tokens/component/combobox-item.json @@ -0,0 +1,370 @@ +{ + "combobox-item": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "selected": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "group-label": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "selected": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "space-around": { + "content": { + "left": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.none", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.0", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.none", + "type": "spacing" + } + } + }, + "container": { + "default": { + "left": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + }, + "single": { + "left": { + "default": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.13", + "type": "spacing" + } + }, + "selected": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + }, + "multi": { + "left": { + "default": { + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.13", + "type": "spacing" + } + }, + "selected": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + } + }, + "group-label": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + } + } +} \ No newline at end of file From a83186ef135b7f92bc8298968c73e7f867e111bc Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 27 Apr 2023 01:01:58 +0200 Subject: [PATCH 587/696] Updates --- tokens/$themes.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 4dcda723e84..24b3c82697e 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/combobox-item": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/combobox-item": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, From 8a2754729a1f6c47997f59386733f235c51c9e93 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 27 Apr 2023 02:00:33 +0200 Subject: [PATCH 588/696] Updates --- tokens/component/combobox-item.json | 102 ++++++++++++--------------- tokens/component/combobox.json | 104 ++++++++++++---------------- 2 files changed, 88 insertions(+), 118 deletions(-) diff --git a/tokens/component/combobox-item.json b/tokens/component/combobox-item.json index d2441ca171a..865ce0c31bd 100644 --- a/tokens/component/combobox-item.json +++ b/tokens/component/combobox-item.json @@ -155,50 +155,36 @@ } }, "space-around": { - "content": { - "left": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.0", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.none", - "type": "spacing" - } - } - }, "container": { - "default": { + "level-1": { "left": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" + "default": { + "sm": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.13", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.16", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" + "selected": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } } }, "right": { @@ -225,38 +211,38 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "$core.spacing.5", "type": "spacing" } } }, - "single": { + "level-2": { "left": { "default": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.13", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.3 * 6.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.13", + "value": "$core.spacing.18", "type": "spacing" } }, "selected": { "sm": { - "value": "$core.spacing.1", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "$core.spacing.7", "type": "spacing" } } @@ -285,38 +271,38 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "$core.spacing.5", "type": "spacing" } } }, - "multi": { + "level-3": { "left": { "default": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.15", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.17", "type": "spacing" }, "lg": { - "value": "$core.spacing.13", + "value": "$core.spacing.3 * 11", "type": "spacing" } }, "selected": { "sm": { - "value": "$core.spacing.1", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.3", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "$core.spacing.7", "type": "spacing" } } @@ -345,7 +331,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "$core.spacing.5", "type": "spacing" } } diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 8d724bffabd..3947d5de4c3 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -1,13 +1,15 @@ { "combobox": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "placeholder": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } }, "sm": { "value": "$semantic.font.default.bold.-3h", @@ -20,16 +22,38 @@ "lg": { "value": "$semantic.font.default.bold.0h", "type": "typography" + }, + "value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } } }, "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" + "dropdown": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } } }, "border": { @@ -43,80 +67,40 @@ } }, "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "$semantic.ui.color.background.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "$semantic.ui.color.background.dark", "type": "color" } }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", "type": "sizing" }, "md": { - "value": "$core.sizing.9", + "value": "$core.sizing.7", "type": "sizing" }, "lg": { - "value": "$core.sizing.11", + "value": "$core.sizing.9", "type": "sizing" } }, From 4c1877a825fcb82a701723a1aca3d08209e886e5 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 27 Apr 2023 02:06:22 +0200 Subject: [PATCH 589/696] Updates --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++++-- tokens/component/flow-header.json | 88 +++++++++++++++++++++++++++++++ 3 files changed, 99 insertions(+), 5 deletions(-) create mode 100644 tokens/component/flow-header.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 857da62c0ca..0063f70596f 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -53,6 +53,7 @@ "component/tip-manager", "component/tooltip", "component/panel-header", + "component/flow-header", "component/popover", "component/pagination", "component/segmented-control", diff --git a/tokens/$themes.json b/tokens/$themes.json index 24b3c82697e..9e0a7df3897 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/flow-header": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/flow-header": "disabled" }, "$figmaStyleReferences": {} }, @@ -51,7 +53,8 @@ "component/tree-item": "source", "component/split-button": "source", "component/dropdown-item": "source", - "component/combobox-item": "source" + "component/combobox-item": "source", + "component/flow-header": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -144,7 +147,8 @@ "component/tree-item": "source", "component/split-button": "source", "component/dropdown-item": "source", - "component/combobox-item": "source" + "component/combobox-item": "source", + "component/flow-header": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -278,7 +282,8 @@ "component/filter": "enabled", "component/split-button": "enabled", "component/dropdown-item": "enabled", - "component/combobox-item": "enabled" + "component/combobox-item": "enabled", + "component/flow-header": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", diff --git a/tokens/component/flow-header.json b/tokens/component/flow-header.json new file mode 100644 index 00000000000..4d78f119f19 --- /dev/null +++ b/tokens/component/flow-header.json @@ -0,0 +1,88 @@ +{ + "flow-header": { + "font": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + }, + "heading": { + "md": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + } + }, + "description": { + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + } + } + }, + "icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + }, + "border-width": { + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "md": { + "value": "$core.sizing.7", + "type": "sizing" + } + }, + "space-between": { + "md": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "md": { + "value": "$core.spacing.5", + "type": "spacing" + } + }, + "top-bottom": { + "md": { + "value": "$core.spacing.6", + "type": "spacing" + } + } + } + } +} \ No newline at end of file From 7d1ec592aed9970d2722b28e9e289f79e3f04d3b Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 27 Apr 2023 02:10:07 +0200 Subject: [PATCH 590/696] Updates --- tokens/$themes.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 9e0a7df3897..5ec191c1768 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/flow-header": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/flow-header": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, From 3d448e1d5c9352c2dc6fa006a3f8db4c7de57f93 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 27 Apr 2023 02:16:29 +0200 Subject: [PATCH 591/696] Updates --- tokens/component/combobox.json | 42 +++++++++++++++++++++++----------- 1 file changed, 29 insertions(+), 13 deletions(-) diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 3947d5de4c3..862d2ec3904 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -106,30 +106,46 @@ }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.3", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.5", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.7", "type": "spacing" } }, "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" + "left-right": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" + "top-bottom": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } } } } From f3dd32e966e8ec9d2815c3c64121f909b5c3f52e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 27 Apr 2023 19:51:27 +0200 Subject: [PATCH 592/696] Updates --- tokens/$themes.json | 41 +++++++++++++++++++++++++++++++++- tokens/component/combobox.json | 17 ++------------ tokens/component/link.json | 6 +++++ 3 files changed, 48 insertions(+), 16 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 5ec191c1768..4542fd58ebf 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -2305,7 +2305,46 @@ "dropdown-item.font.group-title.lg": "S:e3b5b3fea87360db4033c8305010066eb11e4334,", "dropdown.box-shadow.sm": "S:fc6af9b0932b35a430b5801d07d2a09091f54d89,", "dropdown.box-shadow.md": "S:2d1be1b2815911047a2998daf5f8a8900086776f,", - "dropdown.box-shadow.lg": "S:e13b51b3501db393d25693242284df7ece2e52c4," + "dropdown.box-shadow.lg": "S:e13b51b3501db393d25693242284df7ece2e52c4,", + "flow-header.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "flow-header.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "flow-header.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "flow-header.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "flow-header.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "flow-header.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "flow-header.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "flow-header.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "combobox-item.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "combobox-item.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", + "combobox-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", + "combobox-item.font.selected.dark": "S:b4e880155c844b1765726290556b2d29d0f08f33,", + "combobox-item.font.group-title.light": "S:31f32a2568e9993f9a0ab87652b766323c5f8c2c,", + "combobox-item.font.group-title.dark": "S:d721d4da4208f405d7774d69f3ef379fbdeaf077,", + "combobox-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "combobox-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "combobox-item.icon.default.selected.light": "S:b720f936648db74a22f04b075700ae48e938d222,", + "combobox-item.icon.default.selected.dark": "S:5a55ca37cc14f021a69484aedbc347a0f190ac85,", + "combobox-item.icon.select.light": "S:e1e32c1fe7ee7d08cb409d5dcd1dcc08c84e164c,", + "combobox-item.icon.select.dark": "S:b4c84785f94ba696d082f6c2059e29738f167449,", + "combobox-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "combobox-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "combobox.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "combobox.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "combobox.icon.dropdown.light": "S:029e2b35c13cffd1a1afbc844b8b58fc3852dc94,", + "combobox.icon.dropdown.dark": "S:f29ebf3665efba0f4a7a056fa542c9e224518616,", + "combobox.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "combobox.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "flow-header.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "flow-header.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", + "combobox-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", + "combobox-item.font.default.md": "S:dfd9085fe214c3c65b4140511eb8fa5ae2b7d7c6,", + "combobox-item.font.default.lg": "S:94893ba1668f2671af99cbef2e35361cd7d3d60b,", + "combobox-item.font.selected.sm": "S:688d88aa531f806ed7f5472dbd94cb111b282e9a,", + "combobox-item.font.selected.md": "S:744e56dc530590684c79e51206e6047cc86acbeb,", + "combobox-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", + "combobox-item.font.group-label.sm": "S:dffdf12b2e2a5398ea9615f8ee13ac3029fd930a,", + "combobox-item.font.group-label.md": "S:dcc86485ff3b666aa63f6ee85643190b6f8fa3cc,", + "combobox-item.font.group-label.lg": "S:8473e535cb4b48c81763861bc5f7cf39cfdbf0cc," } } ] \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 862d2ec3904..d8cc502302c 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -32,7 +32,8 @@ "value": "$semantic.ui.color.text.1.dark", "type": "color" } - } + }, + "type": "other" }, "icon": { "default": { @@ -76,20 +77,6 @@ "type": "color" } }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, "icon-size": { "sm": { "value": "$core.sizing.7", diff --git a/tokens/component/link.json b/tokens/component/link.json index 4bd7249b874..c190fb55cda 100644 --- a/tokens/component/link.json +++ b/tokens/component/link.json @@ -39,6 +39,12 @@ "value": "$core.border.border-width.0", "type": "borderWidth" } + }, + "opacity": { + "underline": { + "value": "$core.opacity.40", + "type": "opacity" + } } } } \ No newline at end of file From 091fb1e81b8020df753c0cb8be96a00948d93567 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Fri, 28 Apr 2023 10:22:30 -0700 Subject: [PATCH 593/696] WIP: tokens output update remove token references except for headless file to simplify output --- package.json | 2 +- tokens/$themes.json | 4222 +++++++++-------- tools/token-transformer/sd-run.ts | 28 +- .../transform/nameCamelCase.ts | 3 +- .../transform/nameKebabCase.ts | 6 + .../token-transformer/utils/parseTokenPath.ts | 11 + tsconfig.prod.json | 9 + 7 files changed, 2167 insertions(+), 2114 deletions(-) create mode 100644 tools/token-transformer/transform/nameKebabCase.ts create mode 100644 tools/token-transformer/utils/parseTokenPath.ts create mode 100644 tsconfig.prod.json diff --git a/package.json b/package.json index f92368b1c37..f41030088f0 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "test": "jest", "test:dev": "jest --watch", "build": "npm run build:ts && npm run build:tokens", - "build:ts": "tsc --project tsconfig.cjs.json", + "build:ts": "tsc --project tsconfig.prod.json", "build:tokens": "node tools/build/index.js", "build:transformer": "token-transformer tokens sd-tokens/output.json", "release": "echo 'release is still TBD. Please message Ali Stump or Erik Harper-Dicianno for more information." diff --git a/tokens/$themes.json b/tokens/$themes.json index 921349045f3..5cf68ad5954 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -3,10 +3,10 @@ "id": "59a65f6d4a3657738c9d46d61315ae0b6fc6e9fd", "name": "Brand - Light", "selectedTokenSets": { - "core": "source", - "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "core": "source", + "semantic": "source" }, "$figmaStyleReferences": {} }, @@ -14,10 +14,10 @@ "id": "d7056b4e805091c91b5ec1b6ce901ba3d606e7a8", "name": "Brand - Dark", "selectedTokenSets": { - "core": "source", - "semantic": "source", + "brand/dark": "enabled", "brand/global": "enabled", - "brand/dark": "enabled" + "core": "source", + "semantic": "source" }, "$figmaStyleReferences": {} }, @@ -44,8 +44,10 @@ "component/color-picker": "source", "component/combobox": "source", "component/date-picker": "source", + "component/dropdown-item": "source", "component/dropdown": "source", "component/fab": "source", + "component/filter": "source", "component/input-date-picker": "source", "component/input-datetime-local": "source", "component/input-email": "source", @@ -69,8 +71,13 @@ "component/popover": "source", "component/radio": "source", "component/rating": "source", + "component/scrim": "source", "component/segmented-control": "source", "component/slider": "source", + "component/slider-range": "source", + "component/slider-histogram": "source", + "component/slider-histogram-range": "source", + "component/split-button": "source", "component/stepper-item": "source", "component/stepper": "source", "component/switch": "source", @@ -79,72 +86,71 @@ "component/textarea": "source", "component/tile": "source", "component/tip": "source", + "component/tip-manager": "source", "component/tooltip": "source", "component/tree-item": "source", "core": "source", "semantic": "source" - "component/split-button": "source", - "component/dropdown-item": "source" }, "$figmaStyleReferences": { + "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", + "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", + "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", + "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", + "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", + "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", + "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", + "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", + "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", + "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", + "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", + "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", + "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", + "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", + "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", + "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", + "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", + "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", + "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", + "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", "color.brand.hover": "S:b2369f6f6c213b28bc1f85b74e862c86d810c2c5,", "color.brand.press": "S:6d7befb326831876f8d0cf865ace3aa5cfe7a2ac,", - "color.background.1": "S:1582df0a1264e64386ae37d62ac007a953bc5043,", + "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", + "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", + "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", + "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", + "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", + "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", + "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", + "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", + "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", + "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202,", + "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", + "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", + "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", + "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", + "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", "color.foreground.1": "S:8b3785c187b6bcbecb184e539d79f9c032fcf8ff,", "color.foreground.2": "S:583e6fe6adec03b50ac386027ad94c75d269afd5,", "color.foreground.3": "S:48f1acd94d07000f5ef84f9076616f3e7a655e80,", - "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", - "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", - "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", - "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", - "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", - "color.border.1": "S:234173fffe103275f1fb458852714bd790893c3b,", - "color.border.2": "S:41f3b5356c477eef1b0e8823fdfbcb32ba0de0c3,", - "color.border.3": "S:1809682a56a1266d657084ffa0a954623699c1b3,", - "color.border.input": "S:3b8e0a68b3324cb53d2ad435ccbb881260e71f13,", "color.info.default": "S:fd68f31a4f93ecebf9e2cf1ec4b532178c4d31da,", "color.info.hover": "S:8efab98eccb4ace87a30adfe2da1a24811208ac2,", "color.info.press": "S:ef4406951e42e1b319346672293f7d163c619a53,", + "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", "color.success.default": "S:6873a84169b622afbccfde1be36ae5c576e135d1,", "color.success.hover": "S:4fd1d5d649b6e675f15b103123aa96cbcd75dfcb,", "color.success.press": "S:17a3a09fbbd39051f0a9e95b369450789cd04347,", + "color.text.1": "S:75e55b33ec6bb5bf28fdd3f09bb8a284fb6e0b37,", + "color.text.2": "S:4af6f5b0564e62a1f019d1d5b3baf0e125eeb1b7,", + "color.text.3": "S:8e6473234a1f2e30d26fcaab8c5987f4e85ef7f8,", + "color.text.inverse": "S:47483fd2fa8b0df77f51fa172230425edd63175f,", + "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a," } }, { @@ -171,8 +177,10 @@ "component/color-picker": "source", "component/combobox": "source", "component/date-picker": "source", + "component/dropdown-item": "source", "component/dropdown": "source", "component/fab": "source", + "component/filter": "source", "component/input-date-picker": "source", "component/input-datetime-local": "source", "component/input-email": "source", @@ -196,2153 +204,2157 @@ "component/popover": "source", "component/radio": "source", "component/rating": "source", + "component/scrim": "source", "component/segmented-control": "source", + "component/slider": "source", + "component/slider-range": "source", + "component/slider-histogram": "source", + "component/slider-histogram-range": "source", + "component/split-button": "source", "component/stepper-item": "source", "component/stepper": "source", "component/switch": "source", - "component/slider": "source", "component/tab-title": "source", "component/tabs": "source", "component/textarea": "source", "component/tile": "source", "component/tip": "source", + "component/tip-manager": "source", "component/tooltip": "source", "component/tree-item": "source", "core": "source", "semantic": "source" - "component/split-button": "source", - "component/dropdown-item": "source" }, "$figmaStyleReferences": { + "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", + "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", + "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", + "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", + "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", + "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", + "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", + "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", + "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", + "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", + "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", + "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", + "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", + "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", + "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", + "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", + "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", + "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", + "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", + "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", + "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", + "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", + "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", "color.brand.hover": "S:4117296cea5558142d1c04412a32c3a3c763db83,", "color.brand.press": "S:b48b96dd50acc8e3d9fcd09dd5886459144fc135,", - "color.background.1": "S:996e66837184eae6d9d8f35cddb746f31ae95e8f,", + "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", + "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", + "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", + "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", + "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", + "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", + "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", + "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", + "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", + "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", + "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3,", + "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", + "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", + "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", + "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", + "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", "color.foreground.1": "S:4430d79bfb69d028923a8b3f3ed2378f4f18817d,", "color.foreground.2": "S:037fdef29562d034fa86fe4e33bddc5832126f39,", "color.foreground.3": "S:f64f38d95efd0ee7425337762f1b07fd3ef267de,", - "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", - "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", - "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", - "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", - "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", - "color.border.1": "S:c435bbd81ddbeadc4cec2ef4ea3bc543b9e9c601,", - "color.border.2": "S:9039c459e59f5bc01049650971307a668612c2cf,", - "color.border.3": "S:43fb608dfa6007beee48b235b6565b5c141d924e,", - "color.border.input": "S:312d22eefcdd007e392a4fc83600a8c1cd8a02ff,", "color.info.default": "S:7d8b66df444ecb7a82a1a0364109428c555f86a1,", "color.info.hover": "S:70e59d2edb727dfae58c56d3754e61dca4b7918a,", "color.info.press": "S:2308a9c3a366ac93ec93e226fcac4991e013642d,", + "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", "color.success.default": "S:8938fd168ecd800e480319ecaf53d2b04401af77,", "color.success.hover": "S:3d113fe8b2012f528ccd78cf9a96377786eae56f,", "color.success.press": "S:bb85e214f894a1cb93ac04014b99487c211552fd,", + "color.text.1": "S:d233bb530a4948b2685e4b5bdfd853f33a0dcd0d,", + "color.text.2": "S:82ed587d54024336cc40fe9dfd317475b5dd3b39,", + "color.text.3": "S:c830a12e4f31561833b5e5e1b9b92027d65016de,", + "color.text.inverse": "S:99167a67ee7a3e175ba7f50d3614f608981da2ac,", + "color.text.link": "S:23084a1f7e61f7c53a8b95cf0c31b6cde75d1146,", "color.warning.default": "S:769a2bddf6b2011bd2fa092acf5c81b2b672b84a,", "color.warning.hover": "S:e4e9f3676887af2b5bff561e160deb1b2482a694,", - "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9,", - "color.danger.default": "S:6387aaad732a7af1dc1cfd2ebf173d7fce52f09b,", - "color.danger.hover": "S:f865024aa52cff429465d136a1cd33c5a705d500,", - "color.danger.press": "S:40ba713b33a34a8b8c84b49e42e7c08c59d150f2,", - "color.inverse.default": "S:3f1a6a4a44638632869f9f52429dc813f14bf5dd,", - "color.component.avatar.font": "S:f79e6cdc2d5ae580f3f89532b587d6b0067e1ccc,", - "color.component.avatar.icon": "S:ec2e68c7ef3a7246297e516f8819d683ae9fe70f,", - "color.component.avatar.background.default": "S:a6b0c1cf56cc9ca0aea0ea5af9f5c4157e5cc291,", - "color.component.avatar.background.red": "S:b3cc9db7480b1c21608646ea16f916a8ae2b4106,", - "color.component.avatar.background.teal": "S:3098a0784423b82b5812516264141aa4faf08e23,", - "color.component.avatar.background.blue": "S:41143d2e38b160662fa3a3e79a4d8ae277da272b,", - "color.component.avatar.background.green": "S:63281f19470ef4ca444175733bc566845a7280da,", - "color.component.avatar.background.yellow": "S:96bd99a7f9331233f9019d9c4a5535de44390061,", - "avatar.font.light": "S:e93c764c313971860912b7cf47a6c11fc4f9d493,", - "avatar.font.dark": "S:0455ada9e4752cca1342966cd7d5eedb1cbeabb4,", - "avatar.icon.light": "S:be21f8df72687ebcc3cd8321df2ae2120ede082b,", - "avatar.icon.dark": "S:f33d7baaa96d9466795650b23005c6fbd41a9e13,", - "avatar.background.default.light": "S:fc7cbae9041ec1e69cadf22d073651684f3bfa7b,", - "avatar.background.default.dark": "S:21e4050d998c532b48a4794499bdf0fc8dc40f3d,", - "avatar.background.red.light": "S:5e5e5b1c04d00f22057e1232d5e1f75058b665fe,", - "avatar.background.red.dark": "S:43167db8d5920165de4b6c5961115948b1109f46,", - "avatar.background.teal.light": "S:29cd7b69404f52dace74879f084440fdcdb3bf80,", - "avatar.background.teal.dark": "S:8b28bd3c2dbacbaf58681003f4d2f7205c4eb981,", - "avatar.background.blue.light": "S:84fd60e34374234bd0218a9804189174216753cd,", - "avatar.background.blue.dark": "S:e670a15c9ed66a081f909173051dcbe73ca52b2a,", - "avatar.background.green.light": "S:d287241bdb024f876fd2f3182889b7d902ec5397,", - "avatar.background.green.dark": "S:236cef69cf105927f0e3f9d3f95be5e51c0974ce,", - "avatar.background.yellow.light": "S:bd039bd8a3b4a4776aeb5483d98e079a20d73424,", - "avatar.background.yellow.dark": "S:8fb9c3b80bbebcd2c5f387765531dce6e1bb4cdd,", - "avatar.font.sm": "S:39803c9962fb4f3962d41195f6a4b28393f74c2c,", - "avatar.font.md": "S:2dec7cbce4c3fcd922bbe178629bee2171adbeda,", - "avatar.font.lg": "S:258f39886eafb90a51840cde23ad24fa32901793,", - "color.component.checkbox.font": "S:0cab9b6b3026d154168f7e7c141d0e7d72d67c9f,", - "color.component.checkbox.background.default": "S:701cc919d4f6976fbdf445b290e60ce77e8435f4,", - "color.component.checkbox.background.selected": "S:086b38ee2fa73acced270182eb7a3ed1fa173498,", - "color.component.checkbox.icon": "S:f602fe0d0a62962edaace2bef590d8a9c041dbd2,", - "color.component.checkbox.border": "S:1e397d4475d46cc908e3b8ce7fd30514722a14c3," + "color.warning.press": "S:8dfd39d391f9e6cff3188e224a2ae47949b949c9," } }, { "id": "f3768dee38b252f1dfdddfb3f2fde9782d3560bc", "name": "Calcite Headless", "selectedTokenSets": { - "core": "enabled", - "semantic": "enabled", - "component/avatar": "enabled", - "component/checkbox": "enabled", - "component/chip": "enabled", - "component/loader": "enabled", - "component/radio": "enabled", - "component/rating": "enabled", - "component/label": "enabled", - "component/tooltip": "enabled", - "component/input-time": "enabled", "component/[template-comp-name]": "disabled", - "component/switch": "enabled", - "component/input-message": "enabled", "component/accordion-item": "enabled", - "component/alert": "enabled", "component/accordion": "enabled", - "component/tip": "enabled", + "component/action-bar-grid": "enabled", + "component/action-bar": "enabled", + "component/action-pad-grid": "enabled", + "component/action-pad": "enabled", + "component/action": "enabled", + "component/alert": "enabled", + "component/avatar": "enabled", + "component/block-section": "enabled", + "component/block": "enabled", + "component/button": "enabled", + "component/card": "enabled", + "component/checkbox": "enabled", + "component/chip": "enabled", "component/color-picker": "enabled", - "component/date-picker": "enabled", - "component/input-date-picker": "enabled", "component/combobox": "enabled", - "component/button": "enabled", + "component/date-picker": "enabled", + "component/dropdown-item": "enabled", "component/dropdown": "enabled", - "component/input-datetime-local": "enabled", - "component/link": "enabled", "component/fab": "enabled", - "component/stepper": "enabled", - "component/pagination": "enabled", - "component/segmented-control": "enabled", - "component/stepper-item": "enabled", + "component/filter": "enabled", + "component/input-date-picker": "enabled", + "component/input-datetime-local": "enabled", "component/input-email": "enabled", "component/input-file": "enabled", + "component/input-message": "enabled", "component/input-month": "enabled", "component/input-number": "enabled", "component/input-password": "enabled", "component/input-search": "enabled", "component/input-telephone": "enabled", "component/input-text": "enabled", + "component/input-time": "enabled", "component/input-week": "enabled", - "component/textarea": "enabled", - "component/tab-title": "enabled", - "component/card": "enabled", - "component/tabs": "enabled", - "component/action-bar": "enabled", - "component/action": "enabled", - "component/action-pad": "enabled", - "component/action-bar-grid": "enabled", - "component/action-pad-grid": "enabled", - "component/block": "enabled", - "component/block-section": "enabled", - "component/notice": "enabled", + "component/label": "enabled", + "component/link": "enabled", + "component/loader": "enabled", "component/modal": "enabled", + "component/notice": "enabled", + "component/pagination": "enabled", "component/panel-header": "enabled", "component/popover": "enabled", - "component/tree-item": "enabled", + "component/radio": "enabled", + "component/rating": "enabled", "component/scrim": "enabled", - "component/slider": "enabled", - "component/slider-histogram": "enabled", + "component/segmented-control": "enabled", "component/slider-histogram-range": "enabled", + "component/slider-histogram": "enabled", "component/slider-range": "enabled", - "component/filter": "enabled", + "component/slider": "enabled", "component/split-button": "enabled", - "component/dropdown-item": "enabled" - }, - "$figmaStyleReferences": { - "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", - "semantic.ui.color.brand.default.dark": "S:ff86eaace467ba24e95a7f0d1ca36e2e3dc13c36,", - "semantic.ui.color.brand.hover.light": "S:875002e4989b5f6f33ba973f006d3047f2b75ec8,", - "semantic.ui.color.brand.hover.dark": "S:5e594584b58499f6ff3a7585e6f5cfac871c883a,", - "semantic.ui.color.brand.press.light": "S:1cdfc0334a4e2836371c621c8bbe1b3eae058378,", - "semantic.ui.color.brand.press.dark": "S:913695f5e3dcf642406582f6968dd8d79ec5d4e3,", - "semantic.ui.color.background.light": "S:306f58c70f1ef21336c630a511f67008734c7695,", - "semantic.ui.color.background.dark": "S:25ddbb665ba99d050fcfd4a1eca4307eac11f69b,", - "semantic.ui.color.foreground.1.light": "S:9dd422cbb46d827a6a16c08ceec1c4b521f43d1a,", - "semantic.ui.color.foreground.1.dark": "S:ce0f83b6569b348b76c4640824e2d0a656e6275c,", - "semantic.ui.color.foreground.2.light": "S:a31002f2b1a51bd4fedafbf593735a26461b3a7d,", - "semantic.ui.color.foreground.2.dark": "S:f260c383d532520db9d12e649a880b2cfb7b8e24,", - "semantic.ui.color.foreground.3.light": "S:a9d51394e6365799ec9946a3f10d571337ad925a,", - "semantic.ui.color.foreground.3.dark": "S:b6288fc1b16cd947843f0b1d5b1fc659c3d5e4ad,", - "semantic.ui.color.text.1.light": "S:8c8054c9d1acdad360937d1e87b39868b4a30cdb,", - "semantic.ui.color.text.1.dark": "S:e21a0c3c8d5a685ab9c217f711d86e4e0d7c14b2,", - "semantic.ui.color.text.2.light": "S:5a28ed5672ec6dd9950a05742f3be134c44c2d51,", - "semantic.ui.color.text.2.dark": "S:a7860d0a07d9c233bc07a62703bf53a65a12accf,", - "semantic.ui.color.text.3.light": "S:ff1caa6a3822f4a34a62a44f8f98f63a1940fd73,", - "semantic.ui.color.text.3.dark": "S:3783278595fbf16ede70a66d09553f69b13b53a5,", - "semantic.ui.color.text.inverse.light": "S:f1e9b8d6929f1e925d6fa3f1c0964ab856d616d3,", - "semantic.ui.color.text.inverse.dark": "S:73a7f9d57384b11dc91f8bacd71aa73ee3768a17,", - "semantic.ui.color.text.link.light": "S:325ed178e00c12b2ed52ba1a50938d96244776ee,", - "semantic.ui.color.text.link.dark": "S:a5f800dd18722eff9d0f9bec0656826fedee956b,", - "semantic.ui.color.border.1.light": "S:a96ee43d9f87e727e1d163dae97e943aa9748f52,", - "semantic.ui.color.border.1.dark": "S:de10c926746cf058e312d25bbe1293923913ea3a,", - "semantic.ui.color.border.2.light": "S:c34ac7fe01960d487e1340a413d05bbbce372b8c,", - "semantic.ui.color.border.2.dark": "S:d5b02aa93adc37c2cb7f7ad09e2c9936fef1af79,", - "semantic.ui.color.border.3.light": "S:99c548dfdede861e5b4ca80c8e0e27a8ffd970b2,", - "semantic.ui.color.border.3.dark": "S:72dc2b15e848a591fce54e9a782b31cfd35f69ea,", - "semantic.ui.color.border.input.light": "S:05a96982b292c82f827ed448b7d1b1b73112f0ff,", - "semantic.ui.color.border.input.dark": "S:9b2d20bd17e3afe23b7555baba0542ed04718efa,", - "semantic.ui.color.info.default.light": "S:bc35ccb3f80820fad15134da4de9ca7ca618e760,", - "semantic.ui.color.info.default.dark": "S:8941782f2e8868518a8fba39df6bc1cea8fd42d6,", - "semantic.ui.color.info.hover.light": "S:1e1db2e409ab5142882dcca056f99a725da762e1,", - "semantic.ui.color.info.hover.dark": "S:23f26a31cedad39725a8c7549d93d5d427a3298e,", - "semantic.ui.color.info.press.light": "S:1532ddb6aa0fc5804f9c7abe7a09f5bb3171e400,", - "semantic.ui.color.info.press.dark": "S:27a9a23a009acf6a0e1491af580f2483da196ae4,", - "semantic.ui.color.success.default.light": "S:c7736e420c97f32c40c2aff9ba2dc3f35cfc4692,", - "semantic.ui.color.success.default.dark": "S:a4377176e8858a49ec7bb8466e663377b9bbe1c0,", - "semantic.ui.color.success.hover.light": "S:aadf659591f998182a22a593a71e4b8b2647ee00,", - "semantic.ui.color.success.hover.dark": "S:370f35e29a3a78b921a889a3b667ee01f0500cca,", - "semantic.ui.color.success.press.light": "S:65bb5e488168506c092284ea9943854bee4d8f60,", - "semantic.ui.color.success.press.dark": "S:c11d3d9223c0c3ffe3e32bedd5d6e04f56b6befd,", - "semantic.ui.color.warning.default.light": "S:a5f527c61c655c43a0032fe9357db48396daa2ac,", - "semantic.ui.color.warning.default.dark": "S:de4aea1e80c12dbbacaf32f2839123028a90ccb4,", - "semantic.ui.color.warning.hover.light": "S:b6f88f4f688d7ba49a0ffe93f8a3476b930f05c3,", - "semantic.ui.color.warning.hover.dark": "S:c004e1251a7e8ab8dda7d53acd286eea6b8da229,", - "semantic.ui.color.warning.press.light": "S:864044c19214493bb045462f0fead60fe6c064aa,", - "semantic.ui.color.warning.press.dark": "S:463b75a567d4495c2cb746fdc8292f0b9f661548,", - "semantic.ui.color.danger.default.light": "S:d9e760f9671a60e78405554f0d6136d5d8da409a,", - "semantic.ui.color.danger.default.dark": "S:bcd9526377574c8aa55265c56efe052ee58106e5,", - "semantic.ui.color.danger.hover.light": "S:3248a4c66f727779f4aa07e18ad426c7700efe27,", - "semantic.ui.color.danger.hover.dark": "S:3bc83d4c69f16109138ff03bd2c9305f9ca12b55,", - "semantic.ui.color.danger.press.light": "S:0317416c5e7ce3abeaf8c10beef54611785cedd1,", - "semantic.ui.color.danger.press.dark": "S:c7a0d083475a2dbaa3b2c5cee77b93b306523975,", - "semantic.ui.color.inverse.light": "S:5b474932a5a9f9d8b7c02009b7a5100290ee961c,", - "semantic.ui.color.inverse.dark": "S:a32fdc05568e2e4282b4836265cb5687e2521e91,", - "core.color.neutral.blk-000": "S:a67e6b964c87a95c90d2051109e6235f971cfed6,", - "core.color.neutral.blk-005": "S:e007de0e5126b5656ab20a44ef5542ec38d3b1b7,", - "core.color.neutral.blk-010": "S:379de77e676e45964aa0d9fa8830a22c2ddb9cef,", - "core.color.neutral.blk-020": "S:9fc3b3acbeda4ebd6eaa9694a799615de38c8f53,", - "core.color.neutral.blk-030": "S:6e7010ebd7da11ef0c8677c7b3e138d0d6b6666b,", - "core.color.neutral.blk-040": "S:2c369ccc2bd9dbf119b1a447eb6f638012b7c193,", - "core.color.neutral.blk-050": "S:e71ce79ebfa1e5e47b70284bde8298e0f428d0af,", - "core.color.neutral.blk-060": "S:c48ae66b1205086fbe209ba6e1ec0ef224315646,", - "core.color.neutral.blk-070": "S:568e210e3abc4bac9c59fd6da505eca60c2906eb,", - "core.color.neutral.blk-080": "S:c2923315fc6b3128caec7736fdfda9db5bb2dc55,", - "core.color.neutral.blk-090": "S:6e336f0e932fe1694dbf4eedd383b3d287406fbb,", - "core.color.neutral.blk-100": "S:b8cb9ddaa17b8e52cc8baa461fdb88c5070770e8,", - "core.color.neutral.blk-110": "S:dfdbe4ae031086d3977fbfc3c6690eebbb539915,", - "core.color.neutral.blk-120": "S:d02ee52cc6cbb1f64e4d644a46775b5a09c681bc,", - "core.color.neutral.blk-130": "S:4bbb7914654196933c1da872015c7993e1fcfccc,", - "core.color.neutral.blk-140": "S:7ca7950c73120089cd71e7c82d252be795b3b62e,", - "core.color.neutral.blk-150": "S:3c918f8d749ef073ead2218c7efefbf14ba6dffb,", - "core.color.neutral.blk-160": "S:f792b9890c36f6ac70f1c1ee1c3a498ef9161808,", - "core.color.neutral.blk-170": "S:411d4fc1eac1ec98b04758e6aa28d5971a769297,", - "core.color.neutral.blk-180": "S:de8af9b59e8116339ed199ec765893f2bf77bdc3,", - "core.color.neutral.blk-190": "S:3689986e44266e08bee9f4ac1f89a65af7d277d9,", - "core.color.neutral.blk-200": "S:dfc3a1482e86e0d79479102515ae1640cfda7660,", - "core.color.neutral.blk-210": "S:4b85d05798bcf10f05e1001665a163eedad46a25,", - "core.color.neutral.blk-220": "S:d38ce197c2a81d738c3aa36fb428a48cf869e172,", - "core.color.neutral.blk-230": "S:bd064ee87818ec8a5e4600cc049237ef96898eaa,", - "core.color.neutral.blk-235": "S:9c64ecf6085cefb0f09181a4f78a9dc3276a43f6,", - "core.color.neutral.blk-240": "S:566e201f296c4048cfdee8da4654fa663916fb97,", - "core.color.palette.high-saturation.blue.h-bb-010": "S:a30ba21a5a769859a1a365443ec1a7ae1c0dbc4b,", - "core.color.palette.high-saturation.blue.h-bb-020": "S:f16fe042a5395dde509e4df0f4c400a080226b2b,", - "core.color.palette.high-saturation.blue.h-bb-030": "S:e3038d72f66ffc3f0b34a95b3489a19e0de9b294,", - "core.color.palette.high-saturation.blue.h-bb-040": "S:615c572713be17f77d4c24bf0643f1a29296240e,", - "core.color.palette.high-saturation.blue.h-bb-050": "S:381bfaa859daf1e49bb01f6a3c2e2ff6ae345f87,", - "core.color.palette.high-saturation.blue.h-bb-060": "S:29331b79a5d4ac10298a460dfba3786bdd9f5254,", - "core.color.palette.high-saturation.blue.h-bb-070": "S:2b5067dd954b317dc7703d6972506b7212b63311,", - "core.color.palette.high-saturation.blue.h-bb-080": "S:a4e84e53aafa35d7114425188e4bc2fa8ca8016d,", - "core.color.palette.high-saturation.blue.h-bb-090": "S:3646636061731a38d31d34ae2ba82e7226630c0b,", - "core.color.palette.high-saturation.blue.h-bb-100": "S:b137c82c753cee8690ad1bf580378f945e59413e,", - "core.color.palette.high-saturation.green-blue.h-gb-010": "S:86acdd47f813a3b6840e5be60646304724e8e694,", - "core.color.palette.high-saturation.green-blue.h-gb-020": "S:6a141dd9a788a88b35b66538cfce91fbefbd359b,", - "core.color.palette.high-saturation.green-blue.h-gb-030": "S:21271ba54272055068ddcc604f3ac1316c7a755c,", - "core.color.palette.high-saturation.green-blue.h-gb-040": "S:e036ed954eecd1cf1060b9e347f07257db1ac99c,", - "core.color.palette.high-saturation.green-blue.h-gb-050": "S:bbbd7b4a5478ce9d9a4f47979e3f2e6c3fbfa657,", - "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7a22a2f99c80ae2bb0019677140ce920343271a9,", - "core.color.palette.high-saturation.green-blue.h-gb-070": "S:76a07fa6afbb24ffaebe9848da2d56584bca1139,", - "core.color.palette.high-saturation.green-blue.h-gb-080": "S:cfebc84ef66573b8762db2e67afa4e8707853f53,", - "core.color.palette.high-saturation.green-blue.h-gb-090": "S:f9cd0722f121b1e14620c509c50d8cc8a035af0d,", - "core.color.palette.high-saturation.green-blue.h-gb-100": "S:2b1ec16718e0780eb78c84fbc8a863132534b2db,", - "core.color.palette.high-saturation.green.h-gg-010": "S:430c8695a2cbf32dc936ec92d352440f6b8baa83,", - "core.color.palette.high-saturation.green.h-gg-020": "S:bcdae4d9ef10acd863a18e695fe4bbd8c42b124d,", - "core.color.palette.high-saturation.green.h-gg-030": "S:fa64724d0f31c0a4fd76055afff3965be2202599,", - "core.color.palette.high-saturation.green.h-gg-040": "S:5abb8c81a3309fb62ac92b87e3ce880df36f4050,", - "core.color.palette.high-saturation.green.h-gg-050": "S:bfcb47dc8a77c4cae92c5cfdaea6e6871c309405,", - "core.color.palette.high-saturation.green.h-gg-060": "S:d2e08acc23f2d375003d815977b639a57ae3c5d7,", - "core.color.palette.high-saturation.green.h-gg-070": "S:4a4ca908024da34195ae5e1f53dfca68ad8bfc16,", - "core.color.palette.high-saturation.green.h-gg-080": "S:9b853997dedc3bcbd9414437bd09ddac84b21322,", - "core.color.palette.high-saturation.green.h-gg-090": "S:96ff382489dfbf8f473d91b02e14164d3f18cb04,", - "core.color.palette.high-saturation.green.h-gg-100": "S:aefb6e4a31ab9d60b6ab5b724409c2e5bce732c0,", - "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:fb933c69a7eb66e3ace1dcc3018d8b72309b5494,", - "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:d7441f89845f36a907304a2b8d134941df2faa55,", - "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:99c2d767e05c9741f3a70061c3802f9a96ca7b92,", - "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:5b721c955c1ad2f3350c4984f126debac5cfecce,", - "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:c076b7e08ccc3cd2831039cd69140bf1ab1d718e,", - "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:263daeecd3a70bbd9b3c1ef9050317d62809156d,", - "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:d7b0744a407d03166754e72118d86c97eb5786dd,", - "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:81bfa9f3dd5ac7b5f90cc6b7ba807fa5d3b7947e,", - "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:1ad692e88dc7c0849892dd2f12fe1708e87fca1a,", - "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:6f81213d26a0986b6c8b1807a4df5b0313a5609e,", - "core.color.palette.high-saturation.yellow.h-yy-010": "S:157f230fe60c3e396f37284470728605f8515c63,", - "core.color.palette.high-saturation.yellow.h-yy-020": "S:3a54f6277edbd4c92c83d72cf7eb8663f7b1867d,", - "core.color.palette.high-saturation.yellow.h-yy-030": "S:e3c57eefabd42b3d15e138b62ccf76f673d532c0,", - "core.color.palette.high-saturation.yellow.h-yy-040": "S:430d25da287d5fd16a8f398cb2fdf1e8a93e5db4,", - "core.color.palette.high-saturation.yellow.h-yy-050": "S:45c181165c8cf7dc9a75172b796f13ea5e6865e1,", - "core.color.palette.high-saturation.yellow.h-yy-060": "S:aaf6b1686716ba60e09e442bceace906c0c3c4bc,", - "core.color.palette.high-saturation.yellow.h-yy-070": "S:5490cdcefbff5b5e61fbb460e3210b71856ccd18,", - "core.color.palette.high-saturation.yellow.h-yy-080": "S:cb4adac94e31977c65f30ecdc3f162f47350a9a5,", - "core.color.palette.high-saturation.yellow.h-yy-090": "S:fe8696238f9f363040075ebad9eadcfdb5fc4070,", - "core.color.palette.high-saturation.yellow.h-yy-100": "S:a07d09607ed87f74630d11f30c9e403e6b682b30,", - "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:d6886cfda04ce1879187dace6439eca99196bd25,", - "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:36febea423bf21b8ffade26dfbdff1d1d86b16be,", - "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:c3584d602a0f67a3648d67ddaa13444d4334c301,", - "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:ab7f0583694d290842d460dd1393c8e3903dd257,", - "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:05fd025c8c0381fcf82d5e21e9fde71f5867bc48,", - "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:e451d7ee43ff8164e124b5a13004188b668c068e,", - "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:fdb4b6f58a600d604560d871399b3bf5c02a37a8,", - "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:82c5ecfe97d81153b8cf0df3bbdf4946e0941844,", - "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:6a0862425705cdce19f742977f3555b7b4e20b88,", - "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:23a580aae4798bcff45cff8bf23a29e5cbb587cd,", - "core.color.palette.high-saturation.orange.h-oo-010": "S:9dd0ce8fa68b2f403cd935dcb85865bdaf3c7c40,", - "core.color.palette.high-saturation.orange.h-oo-020": "S:f8335f88872810e2e490e4b60f82b916c4fabdb5,", - "core.color.palette.high-saturation.orange.h-oo-030": "S:30b22a97e608f144d24de0a31361b51ce0326e8c,", - "core.color.palette.high-saturation.orange.h-oo-040": "S:819bee7a96e0cbc320a63f1e202847e617cafa0f,", - "core.color.palette.high-saturation.orange.h-oo-050": "S:f565589dd9c7ecbe21fd6b16af88fec443a80757,", - "core.color.palette.high-saturation.orange.h-oo-060": "S:fc495462d9c23608df5d3a2f33dd6ca7c1e54ea6,", - "core.color.palette.high-saturation.orange.h-oo-070": "S:2821799e9639eccd07992e27c4e6694ae02bf6d0,", - "core.color.palette.high-saturation.orange.h-oo-080": "S:728bb41c33fd83583676baf7033dca60bdd741d6,", - "core.color.palette.high-saturation.orange.h-oo-090": "S:31b0367b23ffd087b0fd223313d735f05c36f7a6,", - "core.color.palette.high-saturation.orange.h-oo-100": "S:9997f139bbc6b8d1cf2c9ff289ff2311bfcc8c0f,", - "core.color.palette.high-saturation.red-orange.h-ro-010": "S:01ff093ba2e7b3dc3221f560f2448f25f34208ab,", - "core.color.palette.high-saturation.red-orange.h-ro-020": "S:723100344827d512b6a2cdd6c7fcae745c7aebd5,", - "core.color.palette.high-saturation.red-orange.h-ro-030": "S:7dffa36a03dbc41ebb16e38f018cb82a2094c275,", - "core.color.palette.high-saturation.red-orange.h-ro-040": "S:5e070803b21a2c5647a6e9fa17671aaae548d6d2,", - "core.color.palette.high-saturation.red-orange.h-ro-050": "S:5f3ba5da8df574574b3fd2b1ab6d2ebdc4c5fb19,", - "core.color.palette.high-saturation.red-orange.h-ro-060": "S:4a71ecd5bf9ed15033f518e68bcfab66d7fb960a,", - "core.color.palette.high-saturation.red-orange.h-ro-070": "S:6d7d6dc19cdd30aaabf0c11637edad931b5feb3e,", - "core.color.palette.high-saturation.red-orange.h-ro-080": "S:4d5899b3aa7be56bf41d2dbfa3b95e825c8e0114,", - "core.color.palette.high-saturation.red-orange.h-ro-090": "S:d3593a25f6453c441e3c2e3d517f7980f3428c60,", - "core.color.palette.high-saturation.red-orange.h-ro-100": "S:91a05bf108f4f03541653f686a2078fd2a5672ed,", - "core.color.palette.high-saturation.red.h-rr-010": "S:72bf4c6626a6aadaa819d25c4081562f06fa12a2,", - "core.color.palette.high-saturation.red.h-rr-020": "S:15ddbfa8e4581df9079cde86d7d0fdfe5eb34b1e,", - "core.color.palette.high-saturation.red.h-rr-030": "S:9e593aa8f214b38e98522453c863ba486475382e,", - "core.color.palette.high-saturation.red.h-rr-040": "S:cf51d25a58cb8bec4ef72b73d550c88ad41c41dc,", - "core.color.palette.high-saturation.red.h-rr-050": "S:0429df1a99a360307086093dca26f12feba95567,", - "core.color.palette.high-saturation.red.h-rr-060": "S:df92c84bbe47af0a506a11389ffa25980ddbf71d,", - "core.color.palette.high-saturation.red.h-rr-070": "S:3698204b2caa7d34f77be9ddba8fcc76321b2821,", - "core.color.palette.high-saturation.red.h-rr-080": "S:c77c87f684559adb69e175e12897529c3645ddf1,", - "core.color.palette.high-saturation.red.h-rr-090": "S:093ed2efb025d6d2f406dcdac508de589658437e,", - "core.color.palette.high-saturation.red.h-rr-100": "S:02824a1c296eabc6218cf6bb7daeb1dcde36fac4,", - "core.color.palette.high-saturation.pink.h-pk-010": "S:c027bd4128a5857b7cbedba5209e6c3aabc3de7a,", - "core.color.palette.high-saturation.pink.h-pk-020": "S:87bf40f484e94e4021da62d8b092c37d7edab62b,", - "core.color.palette.high-saturation.pink.h-pk-030": "S:91afaaa48482a5e2b7172933e8564fdba0469a12,", - "core.color.palette.high-saturation.pink.h-pk-040": "S:802fed85b89883a05fd3ea3174504d923a99ff29,", - "core.color.palette.high-saturation.pink.h-pk-050": "S:476e1afaadd97e03ec2eda43c296ba05d2a616f8,", - "core.color.palette.high-saturation.pink.h-pk-060": "S:eb4f19e47f82b5bdcb4455d330e63eb9f8ef1e06,", - "core.color.palette.high-saturation.pink.h-pk-070": "S:1cf5b4431ac55c0284ece0b3506136ca63e128cc,", - "core.color.palette.high-saturation.pink.h-pk-080": "S:b680dba4a6e7a534893958e1a09b45da536164f5,", - "core.color.palette.high-saturation.pink.h-pk-090": "S:9211d5dd09ee4a12c6f559870ecb4ca3273e7d38,", - "core.color.palette.high-saturation.pink.h-pk-100": "S:fea2af5d6af09bf9ca344cc8a8b59720ff57e043,", - "core.color.palette.high-saturation.violet-red.h-vr-010": "S:d9a5369ff6ac626201326882679bcd4663801de9,", - "core.color.palette.high-saturation.violet-red.h-vr-020": "S:e1f2e31077d7dc45b8543998d1b79fbd154cc441,", - "core.color.palette.high-saturation.violet-red.h-vr-030": "S:9e1a260e10913714d0d9bbcbdb6474da33d9ac49,", - "core.color.palette.high-saturation.violet-red.h-vr-040": "S:dbfa38e55babf7dda9961547f0eb16e67a8f0265,", - "core.color.palette.high-saturation.violet-red.h-vr-050": "S:32dae974bd24d671c83feb6465949a849294ab06,", - "core.color.palette.high-saturation.violet-red.h-vr-060": "S:afbb6f3f9dfece8273608c1f00c980150ba1c277,", - "core.color.palette.high-saturation.violet-red.h-vr-070": "S:8ed7669af254c3fe12310ab115f77b7227366a06,", - "core.color.palette.high-saturation.violet-red.h-vr-080": "S:f4451432a831473289c70f7e7282e6dbde9ccb0a,", - "core.color.palette.high-saturation.violet-red.h-vr-090": "S:7fd97dfa464285509bf40fc039af159d56f579bc,", - "core.color.palette.high-saturation.violet-red.h-vr-100": "S:90fd71cf8895dcb1cd034bd0580aa225950aca34,", - "core.color.palette.high-saturation.violet.h-vv-010": "S:a4fd8438ca3d2c0f65c436a971d30284c488fb58,", - "core.color.palette.high-saturation.violet.h-vv-020": "S:500d0566c62490d66a912c0def0642822ebbe276,", - "core.color.palette.high-saturation.violet.h-vv-030": "S:08f873b4f74a821fe521827382bed72817884c07,", - "core.color.palette.high-saturation.violet.h-vv-040": "S:8a4a73cdf4253aa6ad58d663e97a2999cfb0bd5b,", - "core.color.palette.high-saturation.violet.h-vv-050": "S:244f69540b20db975232e019cfe2e81e4fb82695,", - "core.color.palette.high-saturation.violet.h-vv-060": "S:b39c473f516e51267bca75819d192b6ea3f2f020,", - "core.color.palette.high-saturation.violet.h-vv-070": "S:c66eafbfef67edcfb9e898e636cd9ff49d29e20b,", - "core.color.palette.high-saturation.violet.h-vv-080": "S:3973dd0fe8d726ed4265989b0b8c8d206077a2d0,", - "core.color.palette.high-saturation.violet.h-vv-090": "S:1d48293e45fac39396eea9a16c52258d1b7447d5,", - "core.color.palette.high-saturation.violet.h-vv-100": "S:f2f832092ddc91fd4d4f417c4ca5c9d1fc1ba280,", - "core.color.palette.vibrant.blue.v-bb-120": "S:1b912737566790521b736fc0cb5790e0d1758549,", - "core.color.palette.vibrant.blue.v-bb-140": "S:7d847def6e5074a8cdd43baf422978ac08d09741,", - "core.color.palette.vibrant.blue.v-bb-160": "S:ce4e4c4afaa37ac070a03dc8ea77b6e26f23f8a9,", - "core.color.palette.vibrant.blue.v-bb-180": "S:aeaa8f622e7673b47171d53cef6e5d305c52cdad,", - "core.color.palette.vibrant.green-blue.v-gb-120": "S:e545cc972786b8b866be0af383adac42b93490c0,", - "core.color.palette.vibrant.green-blue.v-gb-140": "S:24ef68b4113dd8865413e7b7fedbc975f73b1844,", - "core.color.palette.vibrant.green-blue.v-gb-160": "S:26257d454cefefa4b0e0392539b29967da80cd03,", - "core.color.palette.vibrant.green-blue.v-gb-180": "S:41faa42c025c8b0835b46833622ef8d566ac0ef8,", - "core.color.palette.vibrant.green.v-gg-120": "S:3c32e87b40218532cf223d4f25ddd8e585252178,", - "core.color.palette.vibrant.green.v-gg-140": "S:5c0a317d12ecd5afa4821a63bf48bfcff4b66908,", - "core.color.palette.vibrant.green.v-gg-160": "S:3c7e9cc671a86bcd48bba238963182d8fd5dec84,", - "core.color.palette.vibrant.green.v-gg-180": "S:d3e30b0e8fe8bb40a0bc3cdd3ac61c6d09603232,", - "core.color.palette.vibrant.yellow-green.v-yg-120": "S:4715ea79a577a93a3a6e99ce0142e742df6a5068,", - "core.color.palette.vibrant.yellow-green.v-yg-140": "S:101f1e34931f4dcd0fafe5fa2720fdc404e74885,", - "core.color.palette.vibrant.yellow-green.v-yg-160": "S:fe8e96fc343e65cd13c7741a9933cda392073117,", - "core.color.palette.vibrant.yellow-green.v-yg-180": "S:117baa81e4d628adcaea061e4c929c48a415edc8,", - "core.color.palette.vibrant.yellow.v-yy-120": "S:aa8ac761db055ea5816853564704bcc9063cec02,", - "core.color.palette.vibrant.yellow.v-yy-140": "S:22614e355bd4fb8c2b132207ec8dccb4e46e31f7,", - "core.color.palette.vibrant.yellow.v-yy-160": "S:3457eb204ca408d52ddbb80f84a111e911dea55d,", - "core.color.palette.vibrant.yellow.v-yy-180": "S:88d256ac4a6561ce88e2f7f256ad037d8ec3ff8b,", - "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:391020c0f092b5402febc0c2d0667d48de33d1ad,", - "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:506b1d01e499bcba07730eb885aa9fef7b5c3cf3,", - "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:f0b69b624b41a6645e8d23660b2a115d23d68d6c,", - "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:beb78cc618755d86db5cca1545c79fce4931d70c,", - "core.color.palette.vibrant.red-orange.v-ro-120": "S:e2b928465273fe8d962655e71d78fb1f9f686490,", - "core.color.palette.vibrant.red-orange.v-ro-140": "S:980e62e80e8f3f9f09425a6d8b26b7302705716b,", - "core.color.palette.vibrant.red-orange.v-ro-160": "S:7403c860250af93694c42ca2464fdcd59d02ca28,", - "core.color.palette.vibrant.red-orange.v-ro-180": "S:e8e13ec2d4406a6683e5f91f9fa1cd664aaf28a1,", - "core.color.palette.vibrant.red.v-rr-120": "S:bcda3ca03b09b394fed9066f9c726fea24ddfe82,", - "core.color.palette.vibrant.red.v-rr-140": "S:b75af4155f1f5474e4032009d0d948a99184999a,", - "core.color.palette.vibrant.red.v-rr-160": "S:88cd4e4fc13847018e7936084c7314042cea5fdd,", - "core.color.palette.vibrant.red.v-rr-180": "S:74c93bbf5b2823acd54016fed51129bcd455703f,", - "core.color.palette.vibrant.pink.v-pk-120": "S:135ed546e2076187d3745c85a8da21a7e7c16d53,", - "core.color.palette.vibrant.pink.v-pk-140": "S:bad80534e3ba23d8230747873bc575b34a608067,", - "core.color.palette.vibrant.pink.v-pk-160": "S:a777eaeb101c5d8a3f518f06043d630a82ad4ef9,", - "core.color.palette.vibrant.pink.v-pk-180": "S:5ccaaf1a5b41cd71e837d43f9bd0f695691fe4c3,", - "core.color.palette.vibrant.violet-red.v-vr-120": "S:9155708e86a8fb667554b200f87c3fb462789caf,", - "core.color.palette.vibrant.violet-red.v-vr-140": "S:b4d6d11c17004435c313505d1c208a4b4258db38,", - "core.color.palette.vibrant.violet-red.v-vr-160": "S:c2609e360b146b6c6b7bc109099d50679f8e049b,", - "core.color.palette.vibrant.violet-red.v-vr-180": "S:5e1709c59c961c97c2d8876919128d145b9b2922,", - "core.color.palette.vibrant.violet.v-vv-120": "S:5962188393f63a4aacda8dbf97c8fee5d9d51624,", - "core.color.palette.vibrant.violet.v-vv-140": "S:12e4253328fc0297e55cd1dd6f47b5fb6921207d,", - "core.color.palette.vibrant.violet.v-vv-160": "S:8497c9ebd8d903caabcb33da8ef48c502beac564,", - "core.color.palette.vibrant.violet.v-vv-180": "S:94ceff7a97452d069c1c06d0b100d989a68b92f8,", - "core.color.palette.dark.green.d-gg-410": "S:696963c67cccb3184f70df720c18499ba54372cc,", - "core.color.palette.dark.green.d-gg-420": "S:1d8b212500ead45da840547917f11b1750d24330,", - "core.color.palette.dark.green.d-gg-430": "S:6e32f21df7c3e9cccb516f157cbd0c73cfe090bd,", - "core.color.palette.dark.yellow.d-yy-410": "S:4906ceee1669c1ba45f248d40c9402fa223bc15e,", - "core.color.palette.dark.yellow.d-yy-420": "S:23b7ad4f5dc84a74b4025093726a20bdbd487a85,", - "core.color.palette.dark.yellow.d-yy-430": "S:3a9e706df7bfee778d832ebc36bb0bc67a9bc6e6,", - "core.color.palette.dark.red.d-rr-410": "S:d1efd5a9b420f32748921b6ec6d718b6e1af465a,", - "core.color.palette.dark.red.d-rr-420": "S:e97c4e83c642e168f0bf9870c3caa3966dd9831e,", - "core.color.palette.dark.red.d-rr-430": "S:515edae396cbd56599053c86abb3d1b0eeda8070,", - "core.color.palette.dark.blue.d-bb-410": "S:098d21075614d6c47f49f3c326099ab1b5934010,", - "core.color.palette.dark.blue.d-bb-420": "S:08f1dadd6b907fa2e4c5022c4dfba0973b892372,", - "core.color.palette.dark.blue.d-bb-430": "S:90e82be07ee6af71f6fb71a8bc1c964f18a2d396,", - "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", - "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", - "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", - "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", - "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", - "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", - "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", - "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", - "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", - "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", - "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", - "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", - "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", - "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", - "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", - "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", - "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", - "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", - "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", - "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", - "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", - "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", - "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", - "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", - "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", - "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", - "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", - "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", - "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", - "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", - "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", - "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", - "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", - "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", - "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", - "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", - "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", - "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", - "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", - "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", - "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", - "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", - "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", - "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", - "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", - "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", - "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", - "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", - "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", - "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", - "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", - "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", - "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", - "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", - "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", - "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", - "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", - "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", - "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", - "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", - "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", - "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", - "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", - "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", - "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", - "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", - "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", - "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", - "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", - "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", - "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", - "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", - "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", - "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", - "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", - "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", - "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", - "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", - "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", - "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", - "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", - "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", - "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", - "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", - "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", - "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", - "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", - "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", - "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", - "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", - "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", - "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", - "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", - "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", - "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", - "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", - "core.box-shadow.0": "S:b15553f1884f62f3316a48a6e38b8c0e8f8e72d2,", - "core.box-shadow.1": "S:bf2ed3904ec79304842edb9a26b9f7493058ad06,", - "core.box-shadow.2": "S:405e9e5847d05b187655689838208704356b6e1b,", - "core.box-shadow.none": "S:bce4a69329ebfff685ce2a044bcfb3d09a8ad7ec,", - "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", - "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", - "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", - "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", - "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", - "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", - "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", - "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", - "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", - "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", - "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", - "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", - "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", - "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", - "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", - "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", - "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", - "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", - "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", - "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", - "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", - "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", - "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", - "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", - "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", - "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", - "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", - "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", - "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", - "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", - "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", - "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", - "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", - "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", - "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", - "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", - "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", - "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", - "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", - "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", - "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", - "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", - "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", - "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", - "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", - "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", - "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", - "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", - "semantic.font.default.light.-3h": "S:448b8eef6afc320529c1511a5d210297c4b712da,", - "semantic.font.default.light.-2h": "S:6d4d0ce7635f3287bc32b08ba7b014de59921559,", - "semantic.font.default.light.-1h": "S:d97c48634357f806ef3d1480c9656ef66fab7289,", - "semantic.font.default.light.0h": "S:33d15e08a02cd7e1bdf1011762f6b9adfae79b27,", - "semantic.font.default.light.1h": "S:d1ffb1864e795d393f0095a4235916dc58a8259e,", - "semantic.font.default.light.2h": "S:0952400b4b67b69f03816c2f9c925db27c7d801f,", - "semantic.font.default.light.3h": "S:4ea96f94c15953429909c2b2dc15c3bb0b2815bf,", - "semantic.font.default.light.4h": "S:d64e93a9f77b74fa9349db68933422df14e8fb10,", - "semantic.font.default.light.5h": "S:0be059d62f7cfd1b86c5eb059707982ff5e32b23,", - "semantic.font.default.light.6h": "S:0fa03ed4d3b9f4473d72982137b02379de784218,", - "semantic.font.default.light.7h": "S:df73e52a2cdf830d1cee6bbc8c28905ca60a8dcb,", - "semantic.font.default.light.8h": "S:bbf4a7b49b5e20bfd25da69a7a1e081b3922727c,", - "semantic.font.default.regular.-3h": "S:e539f06b6ef0f93743d99f050c67d6496056799c,", - "semantic.font.default.regular.-2h": "S:c2ce2e62c26dd7e48297ebb52dd530aa12efe109,", - "semantic.font.default.regular.-1h": "S:d226510a3405bab79fb709f0894da8ffe83f0f49,", - "semantic.font.default.regular.0h": "S:901d996f7d9fdb561034d4ec0e8e74ab5de106d8,", - "semantic.font.default.regular.1h": "S:c48245c10d68383746909343a54fdf5a920ae81c,", - "semantic.font.default.regular.2h": "S:9c34f9ed2b0abde711f5f65c08633627314a491b,", - "semantic.font.default.regular.3h": "S:f8ff4a752cb1cc3baeb4c4186543b98a592f6ac7,", - "semantic.font.default.regular.4h": "S:6a50b1b7c5a005593fd4fa8eec8230f8f783ef44,", - "semantic.font.default.regular.5h": "S:34db3a1662fbcf2c075d6e5b607b6bbb27a50948,", - "semantic.font.default.regular.6h": "S:e3f9d7e0f4439e711883b04d94c827dbfff20a8d,", - "semantic.font.default.regular.7h": "S:6683a70fc5ca1dd68eef7ba2656ba179376fe239,", - "semantic.font.default.regular.8h": "S:f33bdcf5723f8bd3ff9fbe33b6d07d1c18525ffd,", - "semantic.font.default.medium.-3h": "S:a68637f330054d193a760d2f79d0a8e643e9ec31,", - "semantic.font.default.medium.-2h": "S:8a9b402b814f835cbc6842d324c047ea41ac92a8,", - "semantic.font.default.medium.-1h": "S:06e0d4a94b16fa9a0c903e1b57f53d101fc775f2,", - "semantic.font.default.medium.0h": "S:5ea926036783771ab1655f2b2ceb56250968522b,", - "semantic.font.default.medium.1h": "S:d540a3df6537a70aa5846a51abf53d8648ab1082,", - "semantic.font.default.medium.2h": "S:1472f2ed1508242eb3ec85d507371921258b2bbf,", - "semantic.font.default.medium.3h": "S:98c7c2afadd9444f79f3a87629fc6be454982068,", - "semantic.font.default.medium.4h": "S:371251870d9e73733636f040c0c06062eaeda112,", - "semantic.font.default.medium.5h": "S:4d391a8697373fd0fd8dac6cec59936e7c1598bd,", - "semantic.font.default.medium.6h": "S:5b77ac013b402efcd145ccf0d0719a9299958808,", - "semantic.font.default.medium.7h": "S:67029b6225ab20096df8da8ca9de08de43491255,", - "semantic.font.default.medium.8h": "S:b9869105637e6d3b5e4e789b9adab73c9b0b8723,", - "semantic.font.default.bold.-3h": "S:f9691e3bc28d14127e0937c5709a6adac1abb1b1,", - "semantic.font.default.bold.-2h": "S:542864c12a09091cd711ee99382dfb670da75d56,", - "semantic.font.default.bold.-1h": "S:17b20c9348892cad57a5264d833eff914389be66,", - "semantic.font.default.bold.0h": "S:36cc6065d5108adcd6fd5ae0a2dd7aae3ac9b7ab,", - "semantic.font.default.bold.1h": "S:7f20641af4349763385cccaa4c922507d0509bbb,", - "semantic.font.default.bold.2h": "S:7ffe88bbc64eb05102b59d71d053a9eec4e193a0,", - "semantic.font.default.bold.3h": "S:cd6d4da5cbd8097ce2998db554909e0d69681d29,", - "semantic.font.default.bold.4h": "S:6294f9009b4ca52cd74b62fc93429e5270c2e1e7,", - "semantic.font.default.bold.5h": "S:542a6d26a8c5de3ef75e36d3be6e4c77e3e47d47,", - "semantic.font.default.bold.6h": "S:fe0f1febd1e9d6d281b8598a68ed8491c4afc6d6,", - "semantic.font.default.bold.7h": "S:e44d20e160df29f5b8bb28d38b69ea93faf3b424,", - "semantic.font.default.bold.8h": "S:4b05ff3e5710321f82cf95d7e57335bc6ca4f1cb,", - "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", - "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", - "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", - "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", - "semantic.font.wrap.light.0": "S:ad0064efc4ce82398d0acddf75cbd5e41f06f13d,", - "semantic.font.wrap.light.1": "S:fae87e50783ad1979337a90ab0271f6fd5a150b4,", - "semantic.font.wrap.light.2": "S:3bde43f8548be65880bce5d5c2ccb60a59afe03d,", - "semantic.font.wrap.light.3": "S:75de41b5080babbb13afaca2d11073e996b3b0ea,", - "semantic.font.wrap.light.4": "S:b9d229876f3242705efff7bfe110ca6baaf00f71,", - "semantic.font.wrap.light.5": "S:83e915d79c195eda8a98454dca5868f0225e1bd5,", - "semantic.font.wrap.light.6": "S:6e448d218245dbac9f250f5d6cac088005d5e3fd,", - "semantic.font.wrap.light.7": "S:2e650a9572119390bf68afb9cf7ac1ef2ff16aaa,", - "semantic.font.wrap.light.8": "S:bd6df56d4f7f06585fa5eb1c840507647377470d,", - "semantic.font.wrap.light.-3": "S:ec76af7e237bca56ab3b0eeece5616fc4c66893b,", - "semantic.font.wrap.light.-2": "S:0575d1464658f6f8233739cd82ec2561a46e8199,", - "semantic.font.wrap.light.-1": "S:7841c5bab1ad63e397e9ac884b8ede26130fe2d8,", - "semantic.font.wrap.regular.0": "S:66b886195444d65889657f414927f31bcf090174,", - "semantic.font.wrap.regular.1": "S:34fdc8e0ee010877423e5f7bad26f54e5f4c1ec4,", - "semantic.font.wrap.regular.2": "S:2e82a159ce76ed0c68d7a20f72c38807a69ad104,", - "semantic.font.wrap.regular.3": "S:9e278573c267b7f30f5719e73b1d21105edf49a9,", - "semantic.font.wrap.regular.4": "S:f52208a0d4984cff2d733adce9803ea89a41cc55,", - "semantic.font.wrap.regular.5": "S:a5d4a2bfedfd60bcc6d076cb87053eb396109863,", - "semantic.font.wrap.regular.6": "S:a7a9d92ab31a81a26ff26d3f8193670dabe1cfdf,", - "semantic.font.wrap.regular.7": "S:879ab6791a3c5b321e06c04b83ca30528264ff54,", - "semantic.font.wrap.regular.8": "S:a9f87e2be6eaf5de030dfa0f406f14f6d26369b2,", - "semantic.font.wrap.regular.-3": "S:791af7d01240411e1aada55cc97dd03f9e9a447a,", - "semantic.font.wrap.regular.-2": "S:79bfcbc46d7482725a02f917f86341342900cc4c,", - "semantic.font.wrap.regular.-1": "S:8cfb200ba516a6a75a81538c8d9a5273692f7b91,", - "semantic.font.wrap.medium.0": "S:8746d1c9ca0cd1cdd592df79ab2d61ee859b8071,", - "semantic.font.wrap.medium.1": "S:bfb563f71a916453ce2de93c6cad2fd3738cff6a,", - "semantic.font.wrap.medium.2": "S:7a2f4cdb73d54deed52c6b690c6863d76dbe55b2,", - "semantic.font.wrap.medium.3": "S:178f16dbb959a506aed5aff27b4f64ab33e204d3,", - "semantic.font.wrap.medium.4": "S:0100d6fb52cf898cd004a8752d03f5dfab4d7216,", - "semantic.font.wrap.medium.5": "S:9f7368f9e7cb233d4585c25f6e7b7b6ac9f1e857,", - "semantic.font.wrap.medium.6": "S:1ad763f1dc801bceed5a8c2027fa2a357c1fcf55,", - "semantic.font.wrap.medium.7": "S:1e0e5b711985bce690c3e32dd663eae62fe99dcb,", - "semantic.font.wrap.medium.8": "S:ad7eb3080e7540ca64cb61b2b599c73a73da2e9b,", - "semantic.font.wrap.medium.-3": "S:018ce57cb92b0652178256efa6f21989100cf8b0,", - "semantic.font.wrap.medium.-2": "S:526517080d04515a9580785dddc87f680a179488,", - "semantic.font.wrap.medium.-1": "S:4c6ca23bf1bd7002f101a347c3d9ad21ccbee0e1,", - "semantic.font.wrap.bold.0": "S:ad11f6639ca0cd3d85cf993fbc95e7c9ad9ca269,", - "semantic.font.wrap.bold.1": "S:9313a06be8f7070400e6cfd7f7ff27939d6c6ed2,", - "semantic.font.wrap.bold.2": "S:abfb6349c8c060ad0abdb9ce2f363e08233be443,", - "semantic.font.wrap.bold.3": "S:6a08218bc036ca8a46513197790957e3bb9ca105,", - "semantic.font.wrap.bold.4": "S:4aaaf75ae7f4623fd87f62e8891a36efec7b371d,", - "semantic.font.wrap.bold.5": "S:f7fa8ece8ccab4931cfb0c5e19e970140da9576b,", - "semantic.font.wrap.bold.6": "S:122c69ab69b84f7f77c19a7d4500d945e434f81b,", - "semantic.font.wrap.bold.7": "S:2712dec933d765f4c2e0d201dbcb1fba43b266f3,", - "semantic.font.wrap.bold.8": "S:38b78db6105317957d23ba1adeb83432e7831f5c,", - "semantic.font.wrap.bold.-3": "S:4bca865601ab87f1d77f48d3e1de83d3dbac85a8,", - "semantic.font.wrap.bold.-2": "S:7f2ba398b489c12db90e5045bb6f7027780a9b3b,", - "semantic.font.wrap.bold.-1": "S:c5860e8f1206a3d343390c9a915a8f3f58a0b336,", - "semantic.font.hierarchy.display-1": "S:594de2ae8f95a4557f94948efb92e719c44d8dc3,", - "semantic.font.hierarchy.display-2": "S:345ca489008fa931564b0874bd1e23c4e9d48aea,", - "semantic.font.hierarchy.heading-1": "S:94ccd91356c618934977da98b51a717b141c2b45,", - "semantic.font.hierarchy.heading-2": "S:d5452773dc8e3ac66d43ae15d64cdccb0e8a875e,", - "semantic.font.hierarchy.heading-3": "S:5a462c2c5c170b662f9be6536d6034c222ce5d64,", - "semantic.font.hierarchy.heading-4": "S:2fdd27077600a7745a2573719630a2818c9768be,", - "semantic.font.hierarchy.heading-5": "S:51757e80503233faa7a0102da2d6f7770d620f83,", - "semantic.font.hierarchy.heading-6": "S:b603d2e8c9cf762c51996f290b7e930bef26a327,", - "semantic.font.hierarchy.body-1": "S:505abbdd354c8ea55e27b9a500e86276988eb9cf,", - "semantic.font.hierarchy.body-2": "S:c4d02b7fec5d9014e79420d18a7dcc4ad9ce4477,", - "semantic.font.hierarchy.overline": "S:8c5923b6a044203bd88b4829f85ff177c9950004,", - "semantic.font.hierarchy.caption": "S:b951134acc837c9c2e0fde5059666306d644a89e,", - "tree-item.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "tree-item.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "tree-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", - "tree-item.font.selected.dark": "S:b4e880155c844b1765726290556b2d29d0f08f33,", - "tree-item.font.children-selected.light": "S:dfd1a09df6ad5d51d017fb59ebcc0b4ae6396ac3,", - "tree-item.font.children-selected.dark": "S:b607abfaf491569cb3a94468e43250d5eae4d270,", - "tree-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "tree-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "tree-item.icon.selected.light": "S:ece20359c4d66506c3bbc5619ee5f4f305878423,", - "tree-item.icon.selected.dark": "S:5adbcfb229680d6c9c5722e501a6202edd952b19,", - "tree-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "tree-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "scrim.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "scrim.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "[comp-name].font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "[comp-name].font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "[comp-name].icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "[comp-name].icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "[comp-name].border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "[comp-name].border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "[comp-name].background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "[comp-name].background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "[comp-name].foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "[comp-name].foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "switch.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "switch.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "switch.background.checked.light": "S:0ab45ed9bff22a94a58242207f07e8511f3a81f1,", - "switch.background.checked.dark": "S:cbe1f3df2b63dfcfec9daa27715cd5021382308e,", - "switch.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "switch.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "switch.border.checked.light": "S:f19b95f1c4240eb67ccce31f43a4a2b909fc9808,", - "switch.border.checked.dark": "S:3d7742ae7dae69c0768ae5d08d439cbaa2a7b078,", - "switch.handle.background.default.light": "S:746d55ebf4063086d8b02ca467e617f06f2215a0,", - "switch.handle.background.default.dark": "S:86c4b5b13f25bf62f7d22b82eb3e777cc4949016,", - "switch.handle.background.checked.light": "S:cd22cdbfb2b7d5bd9d470aa561e6be2bc2c38dff,", - "switch.handle.background.checked.dark": "S:0589e976bec8b67f097ba545e5d07e22e765adcb,", - "switch.handle.border.default.light": "S:da3a5b3202820a53a539eecf457e7df62c9ebc9d,", - "switch.handle.border.default.dark": "S:44c909d394bca66186f97c7b4ff700cdda1b2a21,", - "switch.handle.border.checked.light": "S:c436707d0a2bc0922d42ae2b9a5fa6b9d7f3841a,", - "switch.handle.border.checked.dark": "S:53dd1b99e591b0427a5766fe42f5cdacfe9e3e50,", - "stepper-item.font.heading.default.light": "S:40ce528e19b100251c7b871858873db10af26b9b,", - "stepper-item.font.heading.default.dark": "S:f175c2a3fe052c485d5ecfee58101ec273441d59,", - "stepper-item.font.heading.active.light": "S:7599968187e637add83c21f7864eebb5893ee6e7,", - "stepper-item.font.heading.active.dark": "S:219c33d16e6f3f2ab8844186171482269d81164d,", - "stepper-item.font.heading.error.light": "S:437eb6f82fe8c92b38c7bc86c4e5df0612120737,", - "stepper-item.font.heading.error.dark": "S:6a23496900d852a45c92ae33a23d16ee193ceb06,", - "stepper-item.font.heading.complete.light": "S:fb92dd236702e411cb7037b3434c8fbe560bf92d,", - "stepper-item.font.heading.complete.dark": "S:1ee0e61d48ee69dbec6d6fcb04514893febf3b52,", - "stepper-item.font.description.default.light": "S:c1f37b5b087232d3d69b2d2343154a494bebf829,", - "stepper-item.font.description.default.dark": "S:bb68feb462ab14a8d979d6916bc8f61c7776c153,", - "stepper-item.font.description.active.light": "S:b440a2640643ed554d42000d15fba7521000d877,", - "stepper-item.font.description.active.dark": "S:5a4965dc35cdba19cefa3f4e22052abe89ea8722,", - "stepper-item.font.description.error.light": "S:c02eca656fda2efc2f18e0fa10141e8d804f4bca,", - "stepper-item.font.description.error.dark": "S:321c552c4829bd9ab0ab5412e5dc6723031f3017,", - "stepper-item.font.description.complete.light": "S:a013ceeaefe60b844168f6a523ac006fddf265d4,", - "stepper-item.font.description.complete.dark": "S:98f30ea8b9e815dd36681cf18acdd8a474a44272,", - "stepper-item.font.context.default.light": "S:24b28ebd7d47f0e14e3ae7de6441cf47da4e56ed,", - "stepper-item.font.context.default.dark": "S:c90b39576e968cfa065778663f73a8c6bd853c74,", - "stepper-item.font.context.active.light": "S:46ab1687c1369c4a0c9a40e46f104648bea60a9c,", - "stepper-item.font.context.active.dark": "S:24c588d01dfda605f594684ea3090e1493db2b25,", - "stepper-item.font.context.error.light": "S:a7b82b3be10e9cdc737078f5f28470aa8e220e5c,", - "stepper-item.font.context.error.dark": "S:dd3d49dadf6070de590566ee4913755255d80318,", - "stepper-item.font.context.complete.light": "S:332da58af9bff487a26ccbbdbde4a5c5ee0d4bba,", - "stepper-item.font.context.complete.dark": "S:3a1c4f0a7c7946f28090a8055d680bba4bfa988f,", - "stepper-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "stepper-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "stepper-item.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", - "stepper-item.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", - "stepper-item.icon.error.light": "S:4870f6f31a7bd5c16b5c7f457d0652ce44a45c29,", - "stepper-item.icon.error.dark": "S:e156fd5ba38f1d8b86af0cc31e7c7a7845942e16,", - "stepper-item.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "stepper-item.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "stepper-item.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "stepper-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "stepper-item.border.error.light": "S:334ffb7849b067fc4e31f80ff89b89961d87dd94,", - "stepper-item.border.error.dark": "S:7020352ed69885c054a137ec55107272685b832e,", - "stepper-item.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "stepper-item.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "stepper-item.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "stepper-item.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "stepper.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "stepper.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "stepper.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "stepper.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "stepper.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "stepper.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "stepper.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "stepper.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "stepper.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "stepper.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "slider-range.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "slider-range.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "slider-range.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", - "slider-range.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", - "slider-range.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", - "slider-range.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", - "slider-range.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", - "slider-range.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", - "slider-range.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "slider-range.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "slider-range.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "slider-range.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "slider-range.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", - "slider-range.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", - "slider-range.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", - "slider-range.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", - "slider-range.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", - "slider-range.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", - "slider-range.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", - "slider-range.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", - "slider-histogram-range.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "slider-histogram-range.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "slider-histogram-range.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", - "slider-histogram-range.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", - "slider-histogram-range.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", - "slider-histogram-range.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", - "slider-histogram-range.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", - "slider-histogram-range.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", - "slider-histogram-range.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "slider-histogram-range.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "slider-histogram-range.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "slider-histogram-range.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "slider-histogram-range.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", - "slider-histogram-range.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", - "slider-histogram-range.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", - "slider-histogram-range.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", - "slider-histogram-range.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", - "slider-histogram-range.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", - "slider-histogram-range.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", - "slider-histogram-range.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", - "slider-histogram-range.area.active.background.light": "S:c89c4d11164ed977c2c0e97abe8f82386ac87c7f,", - "slider-histogram-range.area.active.background.dark": "S:91077d887efcf9f4b14ad27f16be3585dc657cdf,", - "slider-histogram.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "slider-histogram.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "slider-histogram.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", - "slider-histogram.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", - "slider-histogram.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", - "slider-histogram.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", - "slider-histogram.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", - "slider-histogram.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", - "slider-histogram.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "slider-histogram.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "slider-histogram.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "slider-histogram.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "slider-histogram.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", - "slider-histogram.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", - "slider-histogram.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", - "slider-histogram.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", - "slider-histogram.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", - "slider-histogram.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", - "slider-histogram.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", - "slider-histogram.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", - "slider-histogram.area.active.background.light": "S:c89c4d11164ed977c2c0e97abe8f82386ac87c7f,", - "slider-histogram.area.active.background.dark": "S:91077d887efcf9f4b14ad27f16be3585dc657cdf,", - "slider-histogram.active-end.background.light": "S:8d8d3af5d1021f90b1327dc018d5dd21e6c43693,", - "slider-histogram.active-end.background.dark": "S:42a2ced53672247a20f98edb87562a99a5aca41d,", - "slider.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "slider.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "slider.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", - "slider.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", - "slider.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", - "slider.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", - "slider.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", - "slider.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", - "slider.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "slider.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "slider.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "slider.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "slider.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", - "slider.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", - "slider.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", - "slider.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", - "slider.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", - "slider.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", - "slider.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", - "slider.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", - "segmented-control.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "segmented-control.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "segmented-control.font.checked.light": "S:40c18363bec74ce07c70ac651afcd442f0046da8,", - "segmented-control.font.checked.dark": "S:1b340cfe17153ee654d067cf22fbf1e890af9726,", - "segmented-control.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "segmented-control.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "segmented-control.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "segmented-control.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "segmented-control.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "segmented-control.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "pagination.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "pagination.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "pagination.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "pagination.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "pagination.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "pagination.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "pagination.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "pagination.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "pagination.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "pagination.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "popover.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "popover.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "popover.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "popover.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "popover.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "popover.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "popover.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "popover.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "panel-header.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "panel-header.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "panel-header.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "panel-header.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "panel-header.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "panel-header.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "panel-header.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "panel-header.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "tooltip.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "tooltip.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "tooltip.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "tooltip.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "tooltip.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "tooltip.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "tip.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", - "tip.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", - "tip.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", - "tip.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", - "tip.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "tip.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "tip.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "tip.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "tip.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "tip.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "rating.chip.value-text.font.light": "S:11423cc98fa9e43a0b42365d5ea5891e31085b0d,", - "rating.chip.value-text.font.dark": "S:0ab47c728381761f98384403f12dae2820e3227f,", - "rating.chip.count.font.light": "S:9db37e98cba760e02da719f6c1f8e94a79ce6f47,", - "rating.chip.count.font.dark": "S:57d5b0c18c9fb6fa98c8a2e627bb4355395289e2,", - "rating.chip.foreground.light": "S:2a7ae900c56bdaed64830a000ab5f147e9a1871d,", - "rating.chip.foreground.dark": "S:2c5f57a9414dade7ecd6d59f5d53e0cc2f811316,", - "rating.star.background.default.light": "S:710775754e463031894aa2fcc269e8080b46a711,", - "rating.star.background.default.dark": "S:2c69735b85675262be35962ab8d72d564660a8dc,", - "rating.star.background.active.light": "S:9a8727139d8e167a07a102ceab10b6eb28d9a642,", - "rating.star.background.active.dark": "S:3f4cee2f66b1636cc5f5498324e084ba7fcfb60c,", - "rating.star.background.average.light": "S:d1ada06fc9c905264006c3ce38ece1b10157bf48,", - "rating.star.background.average.dark": "S:2b295f1ae1097dd5aa7d56c9401d7b054cadc945,", - "tabs.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "tabs.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "tabs.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", - "tabs.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", - "tabs.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "tabs.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "tabs.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", - "tabs.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", - "tabs.bordered.border.light": "S:bd54d03400f3a9f97d97d9656f88c7bf5f46dd02,", - "tabs.bordered.border.dark": "S:0d48699e13a0a4526295bfd5705597f25df40902,", - "tabs.bordered.background.default.light": "S:f6acc31e97b24210b6a778b3972d713a5620aa86,", - "tabs.bordered.background.default.dark": "S:13121a0d01e4fb62e4f35a04239e9cfe749cbb07,", - "tabs.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "tabs.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "tab-title.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "tab-title.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "tab-title.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", - "tab-title.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", - "tab-title.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "tab-title.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "tab-title.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", - "tab-title.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", - "tab-title.bordered.border.light": "S:bd54d03400f3a9f97d97d9656f88c7bf5f46dd02,", - "tab-title.bordered.border.dark": "S:0d48699e13a0a4526295bfd5705597f25df40902,", - "tab-title.bordered.background.default.light": "S:f6acc31e97b24210b6a778b3972d713a5620aa86,", - "tab-title.bordered.background.default.dark": "S:13121a0d01e4fb62e4f35a04239e9cfe749cbb07,", - "tab-title.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "tab-title.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "radio.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "radio.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "radio.border.unchecked.light": "S:d3f814c271446438e13819ae171d5ab92f739b18,", - "radio.border.unchecked.dark": "S:318cf4c8f427f70be43a816f7091db13238a9282,", - "radio.border.checked.light": "S:f19b95f1c4240eb67ccce31f43a4a2b909fc9808,", - "radio.border.checked.dark": "S:3d7742ae7dae69c0768ae5d08d439cbaa2a7b078,", - "radio.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "radio.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "loader.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "loader.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "loader.default.foreground.light": "S:b98314fedea7c3e5e832bff9d4e44474ce7265a1,", - "loader.default.foreground.dark": "S:304a629ada6a7ef5519a7806204eeb4d7f01d954,", - "loader.inline.foreground.indeterminate.light": "S:da04095cbdaf7cf5f98eeec697078fc7264d32ba,", - "loader.inline.foreground.indeterminate.dark": "S:4280761ef8e8f569b4352ad45aa52609ff23e128,", - "loader.inline.foreground.determinate.light": "S:691f6850302be0203c2298e598ab895cf8fc4fe9,", - "loader.inline.foreground.determinate.dark": "S:dc561e94c526f6e3c0a23ce9ec67da08b6656413,", - "filter.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "filter.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "filter.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "filter.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "filter.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "filter.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "filter.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "filter.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "link.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "link.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "link.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "link.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "link.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "link.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "label.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "label.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "textarea.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "textarea.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "textarea.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "textarea.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "textarea.font.chat-limit.light": "S:d036a96c3e40b11a613c327a3a0a7cae0b72fcde,", - "textarea.font.chat-limit.dark": "S:14ac320a893a6133618f2c147881beb7caf1d565,", - "textarea.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "textarea.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "textarea.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "textarea.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "textarea.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "textarea.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "textarea.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "textarea.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "notice.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", - "notice.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", - "notice.font.message.light": "S:6cf383eac5cca5700a959ab59f20a865a46decd5,", - "notice.font.message.dark": "S:7815f7fb82fdc4c4c26e1623790dffe9e187a466,", - "notice.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "notice.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "notice.icon.info.light": "S:98207d369d594d10f790fc9bea415e4ea3e45335,", - "notice.icon.info.dark": "S:4f96af66fb23e050160b1662d3c2655ea138f899,", - "notice.icon.success.light": "S:99de94ded284f960aa2039ad2d96df78a0c880c1,", - "notice.icon.success.dark": "S:7d3d6b3d230ecb9151d3b878d06a91bb15672455,", - "notice.icon.warning.light": "S:81ea08fd5391ccfaa22bd5bcfbe0811ce14f314f,", - "notice.icon.warning.dark": "S:571c79bd43fa8f6ade105342cc4805ecdaa77c50,", - "notice.icon.danger.light": "S:cf8d2ab3ca68b0f621b36d3b2ca6f691b9506ac3,", - "notice.icon.danger.dark": "S:7d85d8810f8eb5b037e710a082cad64cfc5e1683,", - "notice.icon.brand.light": "S:eedb21b228f1b8f494c9f162140a63406414686a,", - "notice.icon.brand.dark": "S:a76eb181aefeef694685113d7815fe90b15aea69,", - "notice.highlight.info.light": "S:73e5b57b4b678a4b853265e33050f7fae69dc0b4,", - "notice.highlight.info.dark": "S:38d81b30b34e16721fe36b6df97e1fbaf12f73e3,", - "notice.highlight.success.light": "S:88529531c4701433647c40e594e0b654e9014ba3,", - "notice.highlight.success.dark": "S:478c949da4555301573feaba90dc2dcee7a720a1,", - "notice.highlight.warning.light": "S:66f48a97f5bf1594dd2cc055de30fa2cb471a1c8,", - "notice.highlight.warning.dark": "S:721ebfc1b5023d7516126855b4e94e83bce6230c,", - "notice.highlight.danger.light": "S:f9bf35d17558127d31e7aff5fa320f4a088093da,", - "notice.highlight.danger.dark": "S:0e46e2198e037bc44bbb6337a3c3ae78af39b0b0,", - "notice.highlight.brand.light": "S:ff24217a653ee3bef7ad198f70f6fb26257629cd,", - "notice.highlight.brand.dark": "S:238edd866a0fb63465a1a1a3dd99d48708e2e316,", - "modal.font.header.light": "S:bb81170665255fe206e85bde8105d7d0e49230e8,", - "modal.font.header.dark": "S:a3fd15b7d470afc805b072dbf848d57469bb681c,", - "modal.font.content.light": "S:c46be83f52216f16ced44f463fcedcf82d3ee870,", - "modal.font.content.dark": "S:5bf1d0dbbd8f49618514192dbfcaf7057cd6f72a,", - "modal.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "modal.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "modal.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "modal.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "modal.border.top.brand.light": "S:a9b4989bb9daad33b84c52206527ff7e76479865,", - "modal.border.top.brand.dark": "S:b05703110c9b8ce6024303d8afed3ba60fa3104b,", - "modal.border.top.info.light": "S:c3d1c7b192199d8fd537011e94f4289ab0ab1631,", - "modal.border.top.info.dark": "S:d6ae78b081b805c48d50806240c949cc2b9d0fec,", - "modal.border.top.success.light": "S:0b8304d2a78248a6fe28da6b96560351b1c33f47,", - "modal.border.top.success.dark": "S:a4b10bfb518b25fbd87598ada78821a3b8c307e3,", - "modal.border.top.danger.light": "S:07a123da04a78be0ca0734de98940cf63a2c2d61,", - "modal.border.top.danger.dark": "S:fb0dd7e07d149d3086385646a21160771e492be7,", - "modal.border.top.warning.light": "S:ed7d8c003631a5e8be2f0631574bd70db885e44f,", - "modal.border.top.warning.dark": "S:78a2de515a0dcadf8f2b49cae9bd8be150243908,", - "modal.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "modal.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "input-week.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-week.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-week.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-week.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-week.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-week.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-week.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-week.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-week.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-week.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-week.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-week.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-week.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-week.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-week.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-week.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-week.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-week.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-text.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-text.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-text.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-text.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-text.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-text.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-text.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-text.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-text.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-text.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-text.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-text.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-text.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-text.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-text.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-text.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-text.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-text.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-message.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "input-message.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "input-message.icon.idle.light": "S:f02d0fb7bba5b12f80f94cba50e49649f3d2ddd8,", - "input-message.icon.idle.dark": "S:37f89d2bdd848ec033c26905f5cf5dcd8fd5c642,", - "input-message.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", - "input-message.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", - "input-message.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", - "input-message.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", - "input-telephone.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-telephone.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-telephone.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-telephone.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-telephone.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-telephone.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-telephone.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-telephone.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-telephone.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-telephone.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-telephone.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-telephone.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-telephone.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-telephone.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-telephone.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-telephone.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-telephone.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-telephone.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-search.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-search.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-search.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-search.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-search.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-search.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-search.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-search.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-search.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-search.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-search.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-search.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-search.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-search.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-search.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-search.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-search.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-search.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-password.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-password.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-password.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-password.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-password.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-password.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-password.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-password.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-password.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-password.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-password.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-password.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-password.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-password.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-password.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-password.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-password.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-password.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-number.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-number.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-number.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-number.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-number.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-number.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-number.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-number.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-number.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-number.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-number.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-number.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-number.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-number.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-number.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-number.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-number.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-number.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-month.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-month.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-month.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-month.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-month.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-month.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-month.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-month.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-month.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-month.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-month.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-month.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-month.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-month.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-month.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-month.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-month.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-month.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-file.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-file.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-file.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-file.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-file.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-file.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-file.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-file.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-file.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-file.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-file.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-file.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-file.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-file.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-file.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-file.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-file.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-file.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-email.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-email.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-email.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-email.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-email.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-email.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-email.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-email.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-email.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-email.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-email.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-email.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-email.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-email.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-email.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-email.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-email.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-email.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-datetime-local.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-datetime-local.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-datetime-local.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-datetime-local.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-datetime-local.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", - "input-datetime-local.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", - "input-datetime-local.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-datetime-local.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-datetime-local.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", - "input-datetime-local.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", - "input-datetime-local.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "input-datetime-local.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "input-datetime-local.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-datetime-local.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-datetime-local.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", - "input-datetime-local.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", - "input-datetime-local.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-datetime-local.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "input-date-picker.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", - "input-date-picker.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", - "input-date-picker.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "input-date-picker.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "input-date-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "input-date-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "input-date-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "input-date-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "input-date-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "input-date-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "input-date-picker.background.arrow.light": "S:1c8e76ed08d85a1f5f4b21e363c5bf31b5f41910,", - "input-date-picker.background.arrow.dark": "S:d0eb9c0117c69137d5ce76e05b7ac929335e7bc9,", - "input-date-picker.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", - "input-date-picker.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", - "color-picker.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "color-picker.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "color-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "color-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "color-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "color-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "color-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "color-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "date-picker.font.date.light": "S:3671fe14f042965357c46b2615824a1c7efa70e4,", - "date-picker.font.date.dark": "S:241f8779538cb4702201ed4066cd4340fa9f686f,", - "date-picker.font.day.light": "S:e1f8fe8a0d500900f3755214d6639efb6e5fafec,", - "date-picker.font.day.dark": "S:edf6e93f0880409de72951ab590e37223a5e7e22,", - "date-picker.font.month.light": "S:e7007a61645ae44b3abd80d52d8f984fc782206c,", - "date-picker.font.month.dark": "S:7a26a1b5050ac857298b1e427d93e512d4d57a65,", - "date-picker.font.range.date.light": "S:06a32d845847149d2cbeb96b36e43468f1a62789,", - "date-picker.font.range.date.dark": "S:2ceceff57cd77aa99ffc7d2f0b0517541f985766,", - "date-picker.font.selected.date.light": "S:18248953f5c1f8ea47799a390f9956d4d622db11,", - "date-picker.font.selected.date.dark": "S:875fa73c614a95118c158cc6dc0ec80f074ccb0d,", - "date-picker.font.active.date.light": "S:8fcb8da38c5f2fb6d0aa36167cc0f4ef2b160550,", - "date-picker.font.active.date.dark": "S:c107a2ddcb3a1cbff0b2851c9a8ebfe8929f328d,", - "date-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "date-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "date-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "date-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "date-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "date-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "date-picker.background.date.active.light": "S:6796ec3ef28142c1660b3f7739c4c04ab1c75a04,", - "date-picker.background.date.active.dark": "S:00008689f4cd67914fac19beec1528a1ac41a4ea,", - "date-picker.background.date.range.light": "S:d87a05addefd5d554795dd94b2acd577288521c2,", - "date-picker.background.date.range.dark": "S:ffc81c58606df60c717c94bfdad04a0c94909404,", - "date-picker.date.active.border.light": "S:fd8fc2f890e9782d5c058c793be18797a5534932,", - "date-picker.date.active.border.dark": "S:1c7ebf7d8f4af02e7f83a46c3f52233e9ba35c31,", - "combobox.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "combobox.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "combobox.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "combobox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "combobox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "combobox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "combobox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "combobox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "combobox.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "combobox.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "card.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", - "card.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", - "card.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", - "card.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", - "card.font.subtitle.light": "S:003a1a7519374d0278e2d39a05ccdece9494156b,", - "card.font.subtitle.dark": "S:6355016a1a58da665def5e759c512e087504e510,", - "card.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", - "card.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", - "card.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "card.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "card.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "card.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "block-section.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "block-section.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "block-section.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", - "block-section.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", - "block-section.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", - "block-section.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", - "block-section.icon.chevron.light": "S:af5fabff28cd8db6aa06132f0493b629e04023d9,", - "block-section.icon.chevron.dark": "S:9efa9354a66d5d3fa260049c448260d556bf4c0b,", - "block-section.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "block-section.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "block.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", - "block.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", - "block.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", - "block.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", - "block.font.content.light": "S:c46be83f52216f16ced44f463fcedcf82d3ee870,", - "block.font.content.dark": "S:5bf1d0dbbd8f49618514192dbfcaf7057cd6f72a,", - "block.icon.idle.light": "S:f02d0fb7bba5b12f80f94cba50e49649f3d2ddd8,", - "block.icon.idle.dark": "S:37f89d2bdd848ec033c26905f5cf5dcd8fd5c642,", - "block.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", - "block.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", - "block.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", - "block.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", - "block.icon.drag-handle.light": "S:4167dec666a9ebc6855f6445e070d1fbab3f124a,", - "block.icon.drag-handle.dark": "S:bee7da2a1ce827c8937234f1fbaafe97877201e2,", - "block.icon.chevron.light": "S:af5fabff28cd8db6aa06132f0493b629e04023d9,", - "block.icon.chevron.dark": "S:9efa9354a66d5d3fa260049c448260d556bf4c0b,", - "block.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "block.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "block.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "block.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "avatar.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "avatar.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "avatar.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "avatar.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "avatar.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "avatar.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "avatar.background.red.light": "S:15480901727a45856967d3e6203a510279eaf126,", - "avatar.background.red.dark": "S:706f2f2a48db1827512c44cfc6399c2646f255ce,", - "avatar.background.teal.light": "S:3d5a2a9f65af84740e758bce0f39b9429bb4d693,", - "avatar.background.teal.dark": "S:6e24e66c70e6650e8fcece5816f9e4a174590adf,", - "avatar.background.blue.light": "S:e6f70231d5734d0abb13a62fb0b28639c711d5eb,", - "avatar.background.blue.dark": "S:adcb513654fc4a335332bd7cffd516805ed8e0da,", - "avatar.background.green.light": "S:303caddb723321f904804f0e0de733143d3a5980,", - "avatar.background.green.dark": "S:c707a517f7e4fd908707a14a119c4eb3c656aa9b,", - "avatar.background.yellow.light": "S:70442e1c6857374d7c798f0443c98c9359e43d62,", - "avatar.background.yellow.dark": "S:c17fd8acec7ed4cc44492e62025c11ea4f8ee1e3,", - "alert.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", - "alert.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", - "alert.font.message.light": "S:6cf383eac5cca5700a959ab59f20a865a46decd5,", - "alert.font.message.dark": "S:7815f7fb82fdc4c4c26e1623790dffe9e187a466,", - "alert.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "alert.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "alert.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "alert.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "alert.icon.blue.light": "S:76f65d8ec01d5472cd2ee30b970d1191e24b21a3,", - "alert.icon.blue.dark": "S:a60354ca19575dfe34c4c35f8846bd28c4796ab8,", - "alert.icon.green.light": "S:25e3219805c14739a43718e5c55c066001bc00d1,", - "alert.icon.green.dark": "S:e71da60b629c97a7ac832d88cdefa655664cd38a,", - "alert.icon.yellow.light": "S:9ad965d79acdf9a9364a61394028db7535efdb59,", - "alert.icon.yellow.dark": "S:2524c0634b4411fa44d0c76177e587d40243c654,", - "alert.icon.red.light": "S:f854ce135867b3fab5c250b84422539684c92f28,", - "alert.icon.red.dark": "S:0fdbcf1a38f260e10527f5bd5a84a2a0183e9bcb,", - "alert.highlight.blue.light": "S:d06b668f7b2e939e6a4eab82a6f143c5e440faf0,", - "alert.highlight.blue.dark": "S:db000ee1304d89f2f129b1dc05bddeeb0c27faa8,", - "alert.highlight.green.light": "S:e324e6552b39a2db26d76da925a70ab5d8c07a10,", - "alert.highlight.green.dark": "S:a881a827f501f0890e4f03d4404bec97094aa041,", - "alert.highlight.yellow.light": "S:755c350d0874c569f9c73fba1c4fe8604a9a065d,", - "alert.highlight.yellow.dark": "S:7729ee4a2bce3753785a33aa99df95e44ba2ea37,", - "alert.highlight.red.light": "S:a08c993c84b045345121c6c87d9c434c8c6a625c,", - "alert.highlight.red.dark": "S:9cb1b42abcd0ef58fdb3a1f7b2c030410cf720b6,", - "action-pad-grid.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "action-pad-grid.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "action-pad-grid.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "action-pad-grid.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "action-pad.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "action-pad.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "action-pad.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "action-pad.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "action-bar-grid.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "action-bar-grid.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "action-bar-grid.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "action-bar-grid.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "action-bar.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "action-bar.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "action-bar.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "action-bar.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "dropdown.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "dropdown.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "dropdown.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "dropdown.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "dropdown.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "dropdown.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "dropdown.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "dropdown.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "dropdown.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", - "dropdown.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", - "chip.font.clear.light": "S:3bceb92c16f9494f5df688ac26364dc9916d2f30,", - "chip.font.clear.dark": "S:26f3b7443216233f279c7e7f7fd0131efcf2894a,", - "chip.font.solid.grey.light": "S:1c6e18ed37f0dd57da2b2fe7158f708f32ff10b9,", - "chip.font.solid.grey.dark": "S:bd62c223330d9bd183081da305c26e6d054b727f,", - "chip.font.solid.blue.light": "S:66e5eea50a4738310a610bf35defc79c2f68d268,", - "chip.font.solid.blue.dark": "S:ce2f48f7c48c85f1947ed4def67837b09682f392,", - "chip.font.solid.red.light": "S:4dd45363a1a8a7f69731c3087cd75501c569a9df,", - "chip.font.solid.red.dark": "S:bfdc2378122e67bb9ca7c20e4616c910684ce386,", - "chip.font.solid.yellow.light": "S:4a1dd23a0f565029e15822cc6b8b56957b4383d4,", - "chip.font.solid.yellow.dark": "S:bcf8ce210a5dcce132c602eb4aadaa7c49421f70,", - "chip.font.solid.green.light": "S:3fba5d47fc5dc3890f9815e5588b1fae3955e2a4,", - "chip.font.solid.green.dark": "S:7d35770c490fbb1b9952d56ba8f64530b8ca2c20,", - "chip.icon.solid.grey.light": "S:b11bef71ea8faa8e4e469ce9080f40b4cabc2017,", - "chip.icon.solid.grey.dark": "S:fe6895416c0213445a74a77a2da5191ee06266c2,", - "chip.icon.solid.blue.light": "S:3bedd59076e486afe8128a69e505c734b3934bc1,", - "chip.icon.solid.blue.dark": "S:e96f458a9e09ce6fdfefc393072ce28766601907,", - "chip.icon.solid.red.light": "S:84c2a93cc8de0a128f5da1131cc1cc7a2b0f5686,", - "chip.icon.solid.red.dark": "S:28265c9ca8729ceb5805b7842663c1162f073b12,", - "chip.icon.solid.yellow.light": "S:d3d415877af4342dfa5b2a522b995005f46a036f,", - "chip.icon.solid.yellow.dark": "S:0dcdf78002ec8d6c2d2d9f1526c769ac2e64ed62,", - "chip.icon.solid.green.light": "S:20c657522b2e549263180c408042654c597852f2,", - "chip.icon.solid.green.dark": "S:dbfbdd28233f829f94b29b3f609d62ecec873072,", - "chip.icon.clear.light": "S:a2d113d47d21d5652fbf97ba3c080ef75b8b86b5,", - "chip.icon.clear.dark": "S:b9d89075c8ede720ed163c7db3ad8ae99f55a7a3,", - "chip.background.solid.grey.light": "S:b53697b7f83ed2a1cb8401a03ceedd9858bdfa44,", - "chip.background.solid.grey.dark": "S:b46a140ddd397a1f3bc89a9097ea67ac2cdf5eb5,", - "chip.background.solid.red.light": "S:c27419c0893c8639b4e38f21d1009ea61dd87644,", - "chip.background.solid.red.dark": "S:9d0bc5f00f8f6775b890b749c4ab92a0e2936f82,", - "chip.background.solid.blue.light": "S:4be84169ac345a5fe20beb467ba90e098af63ca6,", - "chip.background.solid.blue.dark": "S:efe9257d7ff25660d4f56ecb5f8eff1965836ed8,", - "chip.background.solid.green.light": "S:5e399aedb6838ff8ea03512163d75a41ab6994c3,", - "chip.background.solid.green.dark": "S:c241f69fd7fd9d471ab2156f4a683079ed39fc14,", - "chip.background.solid.yellow.light": "S:2962dae5faa2ebdfdb41a236eb4fe2d6728e73c2,", - "chip.background.solid.yellow.dark": "S:c0854e1751ab501aa79abffc7573b649a040fa87,", - "chip.closable-icon.light": "S:5864661006b1e772d3497a8fcda14e8c4c14ec59,", - "chip.closable-icon.dark": "S:571b293be9fa93c88d4c744e859ccaa9f0327396,", - "chip.border.clear.grey.light": "S:ba3709462c1adcc8247a4b551e49f82c3a5d52b5,", - "chip.border.clear.grey.dark": "S:da12f587cccfb923ff5326f0820abd034885243c,", - "chip.border.clear.red.light": "S:df1e6343d454f39b6310ef4e88ed6067aea0f78d,", - "chip.border.clear.red.dark": "S:ca09bbb774ed71bab49b4768fda03cef7c127bec,", - "chip.border.clear.blue.light": "S:04657641675b69f642cbd457001d849c986bb902,", - "chip.border.clear.blue.dark": "S:a4e5c73ecd06a6d15e1c0c5e06d0db710d159e40,", - "chip.border.clear.green.light": "S:857bba35f26bbd88a44c03fc89fe80ebef65bb31,", - "chip.border.clear.green.dark": "S:0f59e37a995fa88e6d805a2f6acdeb6c5b6b0d91,", - "chip.border.clear.yellow.light": "S:835f772647e8725e264c9de44c48f73b19b1dee1,", - "chip.border.clear.yellow.dark": "S:fd20cf70d56bd57879800426b23e0a1c40ef66ae,", - "checkbox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "checkbox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "checkbox.background.selected.light": "S:13d63ed31b4ad61a912dbd663332e89530a9ce64,", - "checkbox.background.selected.dark": "S:2395510a93b41923ce9358f2754a8fd8451f47d8,", - "checkbox.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "checkbox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "checkbox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "checkbox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "checkbox.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "checkbox.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "fab.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", - "fab.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", - "fab.font.brand.outline.light": "S:f0adeadd0e0e0f4a1f3fee86558666b817037268,", - "fab.font.brand.outline.dark": "S:1e8852afd9ea094755d09382eded30d2e2bbe130,", - "fab.font.brand.clear.light": "S:1f3107c5a2f1daf1fcf03e492b2d6993789a3c3f,", - "fab.font.brand.clear.dark": "S:76f49a66542c52b964e3ec9f9a7652e934e7a781,", - "fab.font.brand.transparent.light": "S:06df2efafe1c1cafe563f76e771347a69d04a7a1,", - "fab.font.brand.transparent.dark": "S:d4356a1762c850343f02a3c9777f23ebfa4d41f3,", - "fab.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", - "fab.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", - "fab.font.inverse.outline.light": "S:043470cf705695bc573e8be8d0f1ca5cd43f235c,", - "fab.font.inverse.outline.dark": "S:bd96e308b8742f172fd160a9f16cee7139edef42,", - "fab.font.inverse.clear.light": "S:4e0126885705a695441471685e9c6fe53df73560,", - "fab.font.inverse.clear.dark": "S:6b6b568e5b20a35af73db4ea211ed735480fde1a,", - "fab.font.inverse.transparent.light": "S:bb5130f5070b15d7cb2aa427df1f2daf170c9ef4,", - "fab.font.inverse.transparent.dark": "S:fcff24f62b0f0ba8c776732e6f5470fb0a1dbf69,", - "fab.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", - "fab.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", - "fab.font.neutral.outline.light": "S:4e2bfb0fb3cf8178c5f92b14ed9e07a9c081b8d1,", - "fab.font.neutral.outline.dark": "S:c5d513baa7dd50fa7187946b6439f13a0c20b1ab,", - "fab.font.neutral.clear.light": "S:1e82fef827484f0bf26f77727d1b1613b4c3aba4,", - "fab.font.neutral.clear.dark": "S:55cccdc027e56fef0edd16c7ac5aa7eb2013db7e,", - "fab.font.neutral.transparent.light": "S:65f4164ddf1746ca302a6893fa48b90d95fabf26,", - "fab.font.neutral.transparent.dark": "S:a8c25d727dd4b2107098c344a191fda0f0d5cacc,", - "fab.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", - "fab.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", - "fab.font.danger.outline.light": "S:8741a29d39368c4806c94ee4e10696e7d2d7b52f,", - "fab.font.danger.outline.dark": "S:c24691323d8d5644e4f839a94279632eef9e3d27,", - "fab.font.danger.clear.light": "S:432cc47f645578d52058b0a32e71dcceb2c27550,", - "fab.font.danger.clear.dark": "S:eda93904fa4476dfa692f041d1ae43558bb8cf8f,", - "fab.font.danger.transparent.light": "S:ae81a8c9ff5a24316bcbd766c7aa4069a960d5f6,", - "fab.font.danger.transparent.dark": "S:5a1cb81061b8ad3b5d15bdadafaa96bd269f5be5,", - "fab.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", - "fab.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", - "fab.icon.brand.outline.light": "S:9725df33208dd26ef970c6ec407e9549ae3e27b5,", - "fab.icon.brand.outline.dark": "S:943336f4351cd0578403d1ac7a4d2eb049e58038,", - "fab.icon.brand.clear.light": "S:7b41c424d6d43439158e852afca3ecc4879c68c3,", - "fab.icon.brand.clear.dark": "S:0209e34abf08a3748f1c017de6ca04407d1f24ec,", - "fab.icon.brand.transparent.light": "S:0d69f2196d70b057296fb229c7d31607298fdfd0,", - "fab.icon.brand.transparent.dark": "S:f6962099346882882e98104ff08ebe0ba1374f08,", - "fab.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", - "fab.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", - "fab.icon.inverse.outline.light": "S:21803c6456f48209cbde4a98b58f1d2f69bdae6c,", - "fab.icon.inverse.outline.dark": "S:6b26325108a1a6da51a0c561034d54eb68f02e6f,", - "fab.icon.inverse.clear.light": "S:91c1f1ef69bd21f34f9c72b24233b868e5ffa432,", - "fab.icon.inverse.clear.dark": "S:8f4d3756bcfa4276a98d6b5a61e8d3f97a12eeca,", - "fab.icon.inverse.transparent.light": "S:1293e84a59bcf4653f65d196ad8f646cc22120c4,", - "fab.icon.inverse.transparent.dark": "S:02b13cc89af23516f4ee3f12ab93fb3121ae984d,", - "fab.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", - "fab.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", - "fab.icon.neutral.outline.light": "S:d08cebd573da8fefff690d3fe3e89f6d22ace3ff,", - "fab.icon.neutral.outline.dark": "S:9eb2b2d7d7e57478b5b0d705029a38f2a99814dd,", - "fab.icon.neutral.clear.light": "S:181c0465edf07b98f6cf4324052bbdef3266f9b8,", - "fab.icon.neutral.clear.dark": "S:f4965e149db9d7921bcb72c1962d64e7d6c83350,", - "fab.icon.neutral.transparent.light": "S:a9ee00a0ff35a5f8588c4b53addbae5de8575b62,", - "fab.icon.neutral.transparent.dark": "S:350afeb494cb53e50dd315e8dcc0328877d7932e,", - "fab.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", - "fab.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", - "fab.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", - "fab.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", - "fab.icon.danger.clear.light": "S:c24a2b5bfa9655777cc888f9706e28ff9b424ac6,", - "fab.icon.danger.clear.dark": "S:83f59a42749045bc176c76eff33bae3d78d57760,", - "fab.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", - "fab.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", - "fab.border.brand.light": "S:0a487125d5f58c91b426b23486b6c0aadf59541a,", - "fab.border.brand.dark": "S:ff9ccecf20101a5ec706984a6aef21c387289e1a,", - "fab.border.inverse.light": "S:bbc6d04a67d5af3d498fd848feeffddcd2aebeb1,", - "fab.border.inverse.dark": "S:7cabf2db07e740256356e1a258f47f93f4de70ad,", - "fab.border.neutral.light": "S:e6886e133cdff23972c5e15246ee37582150a756,", - "fab.border.neutral.dark": "S:1edf76a1774c4e32e9ae091278d4b44c1e500595,", - "fab.border.danger.light": "S:08b70e12351771cbe47f05f9411640bba734f4a4,", - "fab.border.danger.dark": "S:05ecd2230432bfac13daa1732bb3d4f9af41b10f,", - "fab.background.brand.light": "S:9ac99a92c95b9cfe1cdb3e34588b1f11efa19610,", - "fab.background.brand.dark": "S:f6e2deace9b6dd48b910a426a510fde31cc0db92,", - "fab.background.inverse.light": "S:bab00cecb69ae753c9250a25568cf8dfa0a577be,", - "fab.background.inverse.dark": "S:1c77b198189e9321cb9bbd232609708563fee263,", - "fab.background.neutral.light": "S:71762a3ba06a95fcf1b11b376001d247582842f3,", - "fab.background.neutral.dark": "S:c1b1717848f0b10f15e25cec75d82d8c78c38275,", - "fab.background.danger.light": "S:00ac2274658d2870de79c6619dc3e4d72300f87e,", - "fab.background.danger.dark": "S:8e1ee57c6f283567fb11d0ff3fe8dd5a75e83e6b,", - "button.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", - "button.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", - "button.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", + "component/stepper-item": "enabled", + "component/stepper": "enabled", + "component/switch": "enabled", + "component/tab-title": "enabled", + "component/tabs": "enabled", + "component/textarea": "enabled", + "component/tip": "enabled", + "component/tooltip": "enabled", + "component/tree-item": "enabled", + "core": "enabled", + "semantic": "enabled" + }, + "$figmaStyleReferences": { + "[comp-name].background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "[comp-name].background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "[comp-name].border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "[comp-name].border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "[comp-name].font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "[comp-name].font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "[comp-name].font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "[comp-name].font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "[comp-name].font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "[comp-name].foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "[comp-name].foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "[comp-name].icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "[comp-name].icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "accordion-item.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "accordion-item.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "accordion-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "accordion-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "accordion-item.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", + "accordion-item.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", + "accordion-item.font.descrition.lg": "S:f248373f8c30765addca512c0a58e0471cdbbd92,", + "accordion-item.font.descrition.md": "S:74815d27fbc39d0e8e0221d98771575763398a36,", + "accordion-item.font.descrition.sm": "S:f228bade32be994f29a47ae05d541bc1f127b991,", + "accordion-item.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", + "accordion-item.font.heading.lg": "S:26e38b824652312797550c4393b9af9201d16410,", + "accordion-item.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", + "accordion-item.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "accordion-item.font.heading.sm": "S:22cd3c704f1ff153a930b1de5482c90d06b68463,", + "accordion-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "accordion-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "accordion-item.icon.expanded.dark": "S:587b66cd00f9aa16f13bafd05481e6d3fc2bfc52,", + "accordion-item.icon.expanded.light": "S:e86ffc1b86f516ff744eb2b695fea0f7e6a06250,", + "accordion.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "accordion.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "accordion.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "accordion.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "accordion.description.dark": "S:799bc4c7335cb1325182383cfc46902f4b2dd826,", + "accordion.description.light": "S:cb01ae66ab41b4df8b4683fef5cc6030de18b079,", + "accordion.heading.dark": "S:0e150e73c0b5e8e7bebfadc132c82e875d1392e6,", + "accordion.heading.light": "S:db3aa5453c145e02177ac3004f0594e2094b7859,", + "accordion.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "accordion.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "accordion.icon.expanded.dark": "S:587b66cd00f9aa16f13bafd05481e6d3fc2bfc52,", + "accordion.icon.expanded.light": "S:e86ffc1b86f516ff744eb2b695fea0f7e6a06250,", + "action-bar-grid.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "action-bar-grid.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "action-bar-grid.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "action-bar-grid.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "action-bar.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "action-bar.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "action-bar.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "action-bar.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "action-pad-grid.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "action-pad-grid.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "action-pad-grid.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "action-pad-grid.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "action-pad-grid.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", + "action-pad-grid.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", + "action-pad-grid.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", + "action-pad.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "action-pad.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "action-pad.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "action-pad.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "action-pad.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", + "action-pad.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", + "action-pad.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", + "action.background.active.dark": "S:2ae52fe76f9def32610a5350625d32781b6b06f4,", + "action.background.active.light": "S:ef2a2a44d264ec06e2c24185b8f5ed7f931652ed,", + "action.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "action.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "action.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", + "action.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", + "action.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "action.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", + "action.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "action.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "action.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "action.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "action.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "action.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", + "action.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", + "action.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "action.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "action.indicator.dark": "S:b2c7c4f184b2ee2bb12274865ab84dc5f2eaee09,", + "action.indicator.light": "S:dba58a89b82ed1ddcbe79772d66e6064b0ff21f1,", + "action.loader-icon.dark": "S:5531396af52cc9e186d10da418be5f6bb2b364ee,", + "action.loader-icon.light": "S:bf9fb786f9562fa5988589c2336e82d8b56f3e34,", + "alert.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "alert.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "alert.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "alert.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "alert.font.message.dark": "S:7815f7fb82fdc4c4c26e1623790dffe9e187a466,", + "alert.font.message.lg": "S:09c48ee987903ee44f92b7fd85f5e4dea0ead949,", + "alert.font.message.light": "S:6cf383eac5cca5700a959ab59f20a865a46decd5,", + "alert.font.message.md": "S:914616baac8f924bb3068d03da85a3d7598a4eed,", + "alert.font.message.sm": "S:62cbe66d7a194cf143b483c76e81b3ef7faec7e4,", + "alert.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", + "alert.font.title.lg": "S:051bc74df8ad468b012d4a69124462a7bd88ac16,", + "alert.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", + "alert.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", + "alert.font.title.sm": "S:3ce9291673796d12312501274a38efcf55f6b482,", + "alert.highlight.blue.dark": "S:db000ee1304d89f2f129b1dc05bddeeb0c27faa8,", + "alert.highlight.blue.light": "S:d06b668f7b2e939e6a4eab82a6f143c5e440faf0,", + "alert.highlight.green.dark": "S:a881a827f501f0890e4f03d4404bec97094aa041,", + "alert.highlight.green.light": "S:e324e6552b39a2db26d76da925a70ab5d8c07a10,", + "alert.highlight.red.dark": "S:9cb1b42abcd0ef58fdb3a1f7b2c030410cf720b6,", + "alert.highlight.red.light": "S:a08c993c84b045345121c6c87d9c434c8c6a625c,", + "alert.highlight.yellow.dark": "S:7729ee4a2bce3753785a33aa99df95e44ba2ea37,", + "alert.highlight.yellow.light": "S:755c350d0874c569f9c73fba1c4fe8604a9a065d,", + "alert.icon.blue.dark": "S:a60354ca19575dfe34c4c35f8846bd28c4796ab8,", + "alert.icon.blue.light": "S:76f65d8ec01d5472cd2ee30b970d1191e24b21a3,", + "alert.icon.green.dark": "S:e71da60b629c97a7ac832d88cdefa655664cd38a,", + "alert.icon.green.light": "S:25e3219805c14739a43718e5c55c066001bc00d1,", + "alert.icon.red.dark": "S:0fdbcf1a38f260e10527f5bd5a84a2a0183e9bcb,", + "alert.icon.red.light": "S:f854ce135867b3fab5c250b84422539684c92f28,", + "alert.icon.yellow.dark": "S:2524c0634b4411fa44d0c76177e587d40243c654,", + "alert.icon.yellow.light": "S:9ad965d79acdf9a9364a61394028db7535efdb59,", + "alert.shadow": "S:da1daed980d1d213e4a1bef7afcb9221ee263cde,", + "avatar.background.blue.dark": "S:adcb513654fc4a335332bd7cffd516805ed8e0da,", + "avatar.background.blue.light": "S:e6f70231d5734d0abb13a62fb0b28639c711d5eb,", + "avatar.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "avatar.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "avatar.background.green.dark": "S:c707a517f7e4fd908707a14a119c4eb3c656aa9b,", + "avatar.background.green.light": "S:303caddb723321f904804f0e0de733143d3a5980,", + "avatar.background.red.dark": "S:706f2f2a48db1827512c44cfc6399c2646f255ce,", + "avatar.background.red.light": "S:15480901727a45856967d3e6203a510279eaf126,", + "avatar.background.teal.dark": "S:6e24e66c70e6650e8fcece5816f9e4a174590adf,", + "avatar.background.teal.light": "S:3d5a2a9f65af84740e758bce0f39b9429bb4d693,", + "avatar.background.yellow.dark": "S:c17fd8acec7ed4cc44492e62025c11ea4f8ee1e3,", + "avatar.background.yellow.light": "S:70442e1c6857374d7c798f0443c98c9359e43d62,", + "avatar.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "avatar.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "avatar.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "avatar.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "avatar.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "avatar.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "avatar.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "block-section.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "block-section.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "block-section.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "block-section.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "block-section.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "block-section.icon.chevron.dark": "S:9efa9354a66d5d3fa260049c448260d556bf4c0b,", + "block-section.icon.chevron.light": "S:af5fabff28cd8db6aa06132f0493b629e04023d9,", + "block-section.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", + "block-section.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", + "block-section.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", + "block-section.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", + "block.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "block.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "block.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "block.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "block.font.content.dark": "S:5bf1d0dbbd8f49618514192dbfcaf7057cd6f72a,", + "block.font.content.light": "S:c46be83f52216f16ced44f463fcedcf82d3ee870,", + "block.font.content.md": "S:b2c1bb5f4c41d1d2af5feb08ce085d132682c3e3,", + "block.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", + "block.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", + "block.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", + "block.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", + "block.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", + "block.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "block.icon.chevron.dark": "S:9efa9354a66d5d3fa260049c448260d556bf4c0b,", + "block.icon.chevron.light": "S:af5fabff28cd8db6aa06132f0493b629e04023d9,", + "block.icon.drag-handle.dark": "S:bee7da2a1ce827c8937234f1fbaafe97877201e2,", + "block.icon.drag-handle.light": "S:4167dec666a9ebc6855f6445e070d1fbab3f124a,", + "block.icon.idle.dark": "S:37f89d2bdd848ec033c26905f5cf5dcd8fd5c642,", + "block.icon.idle.light": "S:f02d0fb7bba5b12f80f94cba50e49649f3d2ddd8,", + "block.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", + "block.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", + "block.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", + "block.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", + "button.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", + "button.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", + "button.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", + "button.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", + "button.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", + "button.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", + "button.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", + "button.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", + "button.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", + "button.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", + "button.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", + "button.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", + "button.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", + "button.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", + "button.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", + "button.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", + "button.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", + "button.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", + "button.border.brand.outline.dark": "S:1206b15553941f23d821e3ac2e2356e86733333c,", + "button.border.brand.outline.light": "S:5942ca53e46c9c4d7505a40a90b90a8ae3c87afa,", + "button.border.brand.solid.dark": "S:c675794954c819b4aa0f731b8a492dda370f1b1b,", + "button.border.brand.solid.light": "S:bd7ea9269499e13add0ce3b7c573f0d5cf43477f,", + "button.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", + "button.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", + "button.border.danger.outline.dark": "S:34e2d7edfe99cdb6833425e7d33f7269e801bd35,", + "button.border.danger.outline.light": "S:dac592a30b402672ee19c38cee360264a7823546,", + "button.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d,", + "button.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", + "button.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", + "button.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", + "button.border.inverse.outline.dark": "S:0f0f21f139a36b68f9c46a82a4f3a0d871225328,", + "button.border.inverse.outline.light": "S:75364b4f0c001e011435396de3da6507780ce7d2,", + "button.border.inverse.solid.dark": "S:79d49b3abca4ba1459da9ebafe07d1efd4b01763,", + "button.border.inverse.solid.light": "S:573938363514bd57d61b7938a8c2337aa45af89b,", + "button.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", + "button.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", + "button.border.neutral.outline.dark": "S:e31fa7bb3960cdf35f11e1a4f512773f5504100b,", + "button.border.neutral.outline.light": "S:17b18a49ebbd56a80e8d4f01b445d0e3203788a6,", + "button.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", + "button.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", "button.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", - "button.font.brand.outline.light": "S:a929ca685859c1fc5e7faf543728b2edf3b5f243,", + "button.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", "button.font.brand.outline.dark": "S:7beb60e35440fb45e91d24d8acc14db5b1533bb4,", - "button.font.brand.transparent.light": "S:74cfdb55361a2fcfdf0e79657b1aa9b3e6cffb8c,", + "button.font.brand.outline.light": "S:a929ca685859c1fc5e7faf543728b2edf3b5f243,", + "button.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", + "button.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", "button.font.brand.transparent.dark": "S:8d19dd77778ab4642015721ce060bd7ec15f240d,", - "button.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", - "button.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", - "button.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", + "button.font.brand.transparent.light": "S:74cfdb55361a2fcfdf0e79657b1aa9b3e6cffb8c,", + "button.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", + "button.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", + "button.font.danger.outline.dark": "S:9d611a3ad95a4e7c417d38dcf707aa9dfd4b1da8,", + "button.font.danger.outline.light": "S:9cfd1204a77cb867927a91597db7211a001d3a04,", + "button.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", + "button.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", + "button.font.danger.transparent.dark": "S:957fbc6785acc68533d73f89c39099f0da9feaf9,", + "button.font.danger.transparent.light": "S:6399b4fb7079f55df8a107aa677eacad644890c9,", "button.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", - "button.font.inverse.outline.light": "S:625d9574b0882315179cfc86548ed6471b4d016a,", + "button.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", "button.font.inverse.outline.dark": "S:a58a68dd030763cd3b979f3c9c8b53d55cb9904b,", - "button.font.inverse.transparent.light": "S:57697b05e86e28fec3897f4cd70e8d71cd10ca9b,", + "button.font.inverse.outline.light": "S:625d9574b0882315179cfc86548ed6471b4d016a,", + "button.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", + "button.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", "button.font.inverse.transparent.dark": "S:c22b36e585444176b35d2985759be4ab13f7912f,", - "button.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", - "button.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", - "button.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", + "button.font.inverse.transparent.light": "S:57697b05e86e28fec3897f4cd70e8d71cd10ca9b,", + "button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", "button.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", - "button.font.neutral.outline.light": "S:8f1c1a86e08810a6cc0ce7394e4c8ddf6cf7cb4d,", + "button.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", "button.font.neutral.outline.dark": "S:c7418479a6a19078629d08ff0d250434dd7aa6d8,", - "button.font.neutral.transparent.light": "S:3d2e4e2536be873c087f6b6181332bf2ce825c42,", + "button.font.neutral.outline.light": "S:8f1c1a86e08810a6cc0ce7394e4c8ddf6cf7cb4d,", + "button.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", + "button.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", "button.font.neutral.transparent.dark": "S:1a2ab9b9fdc12ddf69da58e4784f878a6c75fc66,", - "button.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", - "button.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", - "button.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", - "button.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", - "button.font.danger.outline.light": "S:9cfd1204a77cb867927a91597db7211a001d3a04,", - "button.font.danger.outline.dark": "S:9d611a3ad95a4e7c417d38dcf707aa9dfd4b1da8,", - "button.font.danger.transparent.light": "S:6399b4fb7079f55df8a107aa677eacad644890c9,", - "button.font.danger.transparent.dark": "S:957fbc6785acc68533d73f89c39099f0da9feaf9,", - "button.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", - "button.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", - "button.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", + "button.font.neutral.transparent.light": "S:3d2e4e2536be873c087f6b6181332bf2ce825c42,", + "button.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", "button.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", - "button.icon.brand.outline.light": "S:96930a17711f286e1a97b8b7ca57a1c37431a621,", + "button.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", "button.icon.brand.outline.dark": "S:6a8c3b2e8887bf20eab6a4f1e3ae0ed577ec662b,", - "button.icon.brand.transparent.light": "S:e76ac2dd6b78f85c7892ae2f30e58e8325587168,", + "button.icon.brand.outline.light": "S:96930a17711f286e1a97b8b7ca57a1c37431a621,", + "button.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", + "button.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", "button.icon.brand.transparent.dark": "S:33667181ea79a9be22a25c217678cd18dd0018a4,", - "button.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", - "button.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", - "button.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", + "button.icon.brand.transparent.light": "S:e76ac2dd6b78f85c7892ae2f30e58e8325587168,", + "button.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", + "button.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", + "button.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", + "button.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", + "button.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", + "button.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", + "button.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", + "button.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", "button.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", - "button.icon.inverse.outline.light": "S:80c8d7dcc226ba8c08f306b5c6729d81de95efb6,", + "button.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", "button.icon.inverse.outline.dark": "S:9137cbda0b1d79a7a6daff11f72580e2a6fda301,", - "button.icon.inverse.transparent.light": "S:1d9ed9e6c0eca660882d7c5705d97d7eb4455e72,", + "button.icon.inverse.outline.light": "S:80c8d7dcc226ba8c08f306b5c6729d81de95efb6,", + "button.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", + "button.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", "button.icon.inverse.transparent.dark": "S:8a8366de3e4b5f5ac023b2c703cc641c21a4453b,", - "button.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", - "button.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", - "button.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", + "button.icon.inverse.transparent.light": "S:1d9ed9e6c0eca660882d7c5705d97d7eb4455e72,", "button.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", - "button.icon.neutral.outline.light": "S:933927902689b45a97c31f92ab03e1dabfa62bdb,", + "button.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", "button.icon.neutral.outline.dark": "S:1d09040ccbfbdc3f8f89047c3eaab5dc24b7463c,", - "button.icon.neutral.transparent.light": "S:b3eb473ce8edf72285c36f6fb42680395ef7d7c1,", + "button.icon.neutral.outline.light": "S:933927902689b45a97c31f92ab03e1dabfa62bdb,", + "button.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", + "button.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", "button.icon.neutral.transparent.dark": "S:060673768cd2545a55330e2a6c2c67e82627bbf2,", - "button.border.brand.solid.light": "S:bd7ea9269499e13add0ce3b7c573f0d5cf43477f,", - "button.border.brand.solid.dark": "S:c675794954c819b4aa0f731b8a492dda370f1b1b,", - "button.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", - "button.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", - "button.border.brand.outline.light": "S:5942ca53e46c9c4d7505a40a90b90a8ae3c87afa,", - "button.border.brand.outline.dark": "S:1206b15553941f23d821e3ac2e2356e86733333c,", - "button.border.inverse.solid.light": "S:573938363514bd57d61b7938a8c2337aa45af89b,", - "button.border.inverse.solid.dark": "S:79d49b3abca4ba1459da9ebafe07d1efd4b01763,", - "button.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", - "button.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", - "button.border.inverse.outline.light": "S:75364b4f0c001e011435396de3da6507780ce7d2,", - "button.border.inverse.outline.dark": "S:0f0f21f139a36b68f9c46a82a4f3a0d871225328,", - "button.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", - "button.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", - "button.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", - "button.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", - "button.border.neutral.outline.light": "S:17b18a49ebbd56a80e8d4f01b445d0e3203788a6,", - "button.border.neutral.outline.dark": "S:e31fa7bb3960cdf35f11e1a4f512773f5504100b,", - "button.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", - "button.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d,", - "button.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", - "button.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", - "button.border.danger.outline.light": "S:dac592a30b402672ee19c38cee360264a7823546,", - "button.border.danger.outline.dark": "S:34e2d7edfe99cdb6833425e7d33f7269e801bd35,", - "button.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", - "button.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", - "button.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", - "button.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", - "button.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", - "button.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", - "button.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", - "button.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", - "action.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "action.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "action.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "action.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "action.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", - "action.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", - "action.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "action.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "action.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", - "action.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", - "action.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "action.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "action.background.active.light": "S:ef2a2a44d264ec06e2c24185b8f5ed7f931652ed,", - "action.background.active.dark": "S:2ae52fe76f9def32610a5350625d32781b6b06f4,", - "action.indicator.light": "S:dba58a89b82ed1ddcbe79772d66e6064b0ff21f1,", - "action.indicator.dark": "S:b2c7c4f184b2ee2bb12274865ab84dc5f2eaee09,", - "action.loader-icon.light": "S:bf9fb786f9562fa5988589c2336e82d8b56f3e34,", - "action.loader-icon.dark": "S:5531396af52cc9e186d10da418be5f6bb2b364ee,", - "accordion.heading.light": "S:db3aa5453c145e02177ac3004f0594e2094b7859,", - "accordion.heading.dark": "S:0e150e73c0b5e8e7bebfadc132c82e875d1392e6,", - "accordion.description.light": "S:cb01ae66ab41b4df8b4683fef5cc6030de18b079,", - "accordion.description.dark": "S:799bc4c7335cb1325182383cfc46902f4b2dd826,", - "accordion.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "accordion.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "accordion.icon.expanded.light": "S:e86ffc1b86f516ff744eb2b695fea0f7e6a06250,", - "accordion.icon.expanded.dark": "S:587b66cd00f9aa16f13bafd05481e6d3fc2bfc52,", - "accordion.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "accordion.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "accordion.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "accordion.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "accordion-item.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", - "accordion-item.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", - "accordion-item.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", - "accordion-item.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", - "accordion-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "accordion-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "accordion-item.icon.expanded.light": "S:e86ffc1b86f516ff744eb2b695fea0f7e6a06250,", - "accordion-item.icon.expanded.dark": "S:587b66cd00f9aa16f13bafd05481e6d3fc2bfc52,", - "accordion-item.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", - "accordion-item.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", - "accordion-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "accordion-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "semantic.ui.color.foreground.current.light": "S:6f322dcea6ed2d12012f28be4a31b05432ece061,", - "semantic.ui.color.foreground.current.dark": "S:7843aa25183f4168e7e37abc38238f90178fbe20,", - "tree-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", - "tree-item.font.default.md": "S:dfd9085fe214c3c65b4140511eb8fa5ae2b7d7c6,", - "tree-item.font.default.lg": "S:94893ba1668f2671af99cbef2e35361cd7d3d60b,", - "tree-item.font.selected.sm": "S:688d88aa531f806ed7f5472dbd94cb111b282e9a,", - "tree-item.font.selected.md": "S:744e56dc530590684c79e51206e6047cc86acbeb,", - "tree-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", - "[comp-name].font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "[comp-name].font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "[comp-name].font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "stepper-item.font.heading.sm": "S:22cd3c704f1ff153a930b1de5482c90d06b68463,", - "stepper-item.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "stepper-item.font.heading.lg": "S:26e38b824652312797550c4393b9af9201d16410,", - "stepper-item.font.description.sm": "S:e4ebff926d9e4d2f4b9b20ef895b87979b82bacc,", - "stepper-item.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "stepper-item.font.description.lg": "S:23af9aa67ad9cf7d3bbdec0a84a3a9decaa099a2,", - "stepper-item.font.context.sm": "S:da64e75edca6fca30de3e1bb0224f0d71452b4f5,", - "stepper-item.font.context.md": "S:755519eba87a336180ceaa2605e11f468c4bfa2d,", - "stepper-item.font.context.lg": "S:a50a4612be56085023ef5aad149ba7b5ba7e4261,", - "stepper.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "stepper.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "stepper.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "slider-range.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "slider-range.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "slider-range.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "slider-range.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", - "slider-range.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", - "slider-range.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", - "slider-histogram-range.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "slider-histogram-range.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "slider-histogram-range.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "slider-histogram-range.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", - "slider-histogram-range.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", - "slider-histogram-range.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", - "slider-histogram.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "slider-histogram.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "slider-histogram.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "slider-histogram.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", - "slider-histogram.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", - "slider-histogram.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", - "slider.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "slider.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "slider.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "slider.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", - "slider.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", - "slider.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", - "segmented-control.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "segmented-control.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "segmented-control.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "pagination.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "pagination.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "pagination.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "popover.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "popover.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "popover.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "panel-header.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "panel-header.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "tooltip.font.standard": "S:d06a201e347559fb01fbd66261b7a3ab8b268fb0,", - "tip.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "tip.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "rating.chip.value-text.font.sm": "S:96101bf0744e53acc2166a2184aa7f8ae2c2b8c4,", - "rating.chip.value-text.font.md": "S:b10662274e31a3704323fc2cb94b1c233baaf571,", - "rating.chip.value-text.font.lg": "S:4ca681a4eda0db296fad332696a6ed2e8fbbb86e,", - "tabs.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "tabs.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "tabs.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "tab-title.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "tab-title.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "tab-title.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "radio.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "radio.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "radio.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "loader.font.text": "S:e693886a422add0f7bbb617ceba18a5ada5de0da,", - "loader.font.value-text.sm": "S:326d9abc426f0f215ba172af78bfe1fb9ac48bec,", - "loader.font.value-text.md": "S:8e937a8014060d3b991f96d6988982c4a6d5434d,", - "loader.font.value-text.lg": "S:14dd6559ad9eef407904de82098dafba431e98e2,", - "filter.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "filter.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "button.icon.neutral.transparent.light": "S:b3eb473ce8edf72285c36f6fb42680395ef7d7c1,", + "card.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "card.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "card.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "card.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "card.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "card.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "card.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", + "card.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", + "card.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", + "card.font.subtile.md": "S:2f7bbe92776fd17b2ab450464cfe7115ff9e2625,", + "card.font.subtitle.dark": "S:6355016a1a58da665def5e759c512e087504e510,", + "card.font.subtitle.light": "S:003a1a7519374d0278e2d39a05ccdece9494156b,", + "card.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", + "card.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", + "card.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", + "checkbox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "checkbox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "checkbox.background.selected.dark": "S:2395510a93b41923ce9358f2754a8fd8451f47d8,", + "checkbox.background.selected.light": "S:13d63ed31b4ad61a912dbd663332e89530a9ce64,", + "checkbox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "checkbox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "checkbox.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "checkbox.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "checkbox.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "checkbox.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "checkbox.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "checkbox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "checkbox.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "chip.background.solid.blue.dark": "S:efe9257d7ff25660d4f56ecb5f8eff1965836ed8,", + "chip.background.solid.blue.light": "S:4be84169ac345a5fe20beb467ba90e098af63ca6,", + "chip.background.solid.green.dark": "S:c241f69fd7fd9d471ab2156f4a683079ed39fc14,", + "chip.background.solid.green.light": "S:5e399aedb6838ff8ea03512163d75a41ab6994c3,", + "chip.background.solid.grey.dark": "S:b46a140ddd397a1f3bc89a9097ea67ac2cdf5eb5,", + "chip.background.solid.grey.light": "S:b53697b7f83ed2a1cb8401a03ceedd9858bdfa44,", + "chip.background.solid.red.dark": "S:9d0bc5f00f8f6775b890b749c4ab92a0e2936f82,", + "chip.background.solid.red.light": "S:c27419c0893c8639b4e38f21d1009ea61dd87644,", + "chip.background.solid.yellow.dark": "S:c0854e1751ab501aa79abffc7573b649a040fa87,", + "chip.background.solid.yellow.light": "S:2962dae5faa2ebdfdb41a236eb4fe2d6728e73c2,", + "chip.border.clear.blue.dark": "S:a4e5c73ecd06a6d15e1c0c5e06d0db710d159e40,", + "chip.border.clear.blue.light": "S:04657641675b69f642cbd457001d849c986bb902,", + "chip.border.clear.green.dark": "S:0f59e37a995fa88e6d805a2f6acdeb6c5b6b0d91,", + "chip.border.clear.green.light": "S:857bba35f26bbd88a44c03fc89fe80ebef65bb31,", + "chip.border.clear.grey.dark": "S:da12f587cccfb923ff5326f0820abd034885243c,", + "chip.border.clear.grey.light": "S:ba3709462c1adcc8247a4b551e49f82c3a5d52b5,", + "chip.border.clear.red.dark": "S:ca09bbb774ed71bab49b4768fda03cef7c127bec,", + "chip.border.clear.red.light": "S:df1e6343d454f39b6310ef4e88ed6067aea0f78d,", + "chip.border.clear.yellow.dark": "S:fd20cf70d56bd57879800426b23e0a1c40ef66ae,", + "chip.border.clear.yellow.light": "S:835f772647e8725e264c9de44c48f73b19b1dee1,", + "chip.closable-icon.dark": "S:571b293be9fa93c88d4c744e859ccaa9f0327396,", + "chip.closable-icon.light": "S:5864661006b1e772d3497a8fcda14e8c4c14ec59,", + "chip.font.clear.dark": "S:26f3b7443216233f279c7e7f7fd0131efcf2894a,", + "chip.font.clear.light": "S:3bceb92c16f9494f5df688ac26364dc9916d2f30,", + "chip.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "chip.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "chip.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "chip.font.solid.blue.dark": "S:ce2f48f7c48c85f1947ed4def67837b09682f392,", + "chip.font.solid.blue.light": "S:66e5eea50a4738310a610bf35defc79c2f68d268,", + "chip.font.solid.green.dark": "S:7d35770c490fbb1b9952d56ba8f64530b8ca2c20,", + "chip.font.solid.green.light": "S:3fba5d47fc5dc3890f9815e5588b1fae3955e2a4,", + "chip.font.solid.grey.dark": "S:bd62c223330d9bd183081da305c26e6d054b727f,", + "chip.font.solid.grey.light": "S:1c6e18ed37f0dd57da2b2fe7158f708f32ff10b9,", + "chip.font.solid.red.dark": "S:bfdc2378122e67bb9ca7c20e4616c910684ce386,", + "chip.font.solid.red.light": "S:4dd45363a1a8a7f69731c3087cd75501c569a9df,", + "chip.font.solid.yellow.dark": "S:bcf8ce210a5dcce132c602eb4aadaa7c49421f70,", + "chip.font.solid.yellow.light": "S:4a1dd23a0f565029e15822cc6b8b56957b4383d4,", + "chip.icon.clear.dark": "S:b9d89075c8ede720ed163c7db3ad8ae99f55a7a3,", + "chip.icon.clear.light": "S:a2d113d47d21d5652fbf97ba3c080ef75b8b86b5,", + "chip.icon.solid.blue.dark": "S:e96f458a9e09ce6fdfefc393072ce28766601907,", + "chip.icon.solid.blue.light": "S:3bedd59076e486afe8128a69e505c734b3934bc1,", + "chip.icon.solid.green.dark": "S:dbfbdd28233f829f94b29b3f609d62ecec873072,", + "chip.icon.solid.green.light": "S:20c657522b2e549263180c408042654c597852f2,", + "chip.icon.solid.grey.dark": "S:fe6895416c0213445a74a77a2da5191ee06266c2,", + "chip.icon.solid.grey.light": "S:b11bef71ea8faa8e4e469ce9080f40b4cabc2017,", + "chip.icon.solid.red.dark": "S:28265c9ca8729ceb5805b7842663c1162f073b12,", + "chip.icon.solid.red.light": "S:84c2a93cc8de0a128f5da1131cc1cc7a2b0f5686,", + "chip.icon.solid.yellow.dark": "S:0dcdf78002ec8d6c2d2d9f1526c769ac2e64ed62,", + "chip.icon.solid.yellow.light": "S:d3d415877af4342dfa5b2a522b995005f46a036f,", + "color-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "color-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "color-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "color-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "color-picker.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "color-picker.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "color-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "color-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "combobox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "combobox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "combobox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "combobox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "combobox.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "combobox.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "combobox.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "combobox.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "combobox.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "combobox.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "combobox.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "combobox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "combobox.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "core.box-shadow.0": "S:b15553f1884f62f3316a48a6e38b8c0e8f8e72d2,", + "core.box-shadow.1": "S:bf2ed3904ec79304842edb9a26b9f7493058ad06,", + "core.box-shadow.2": "S:405e9e5847d05b187655689838208704356b6e1b,", + "core.box-shadow.none": "S:bce4a69329ebfff685ce2a044bcfb3d09a8ad7ec,", + "core.color.neutral.blk-000": "S:a67e6b964c87a95c90d2051109e6235f971cfed6,", + "core.color.neutral.blk-005": "S:e007de0e5126b5656ab20a44ef5542ec38d3b1b7,", + "core.color.neutral.blk-010": "S:379de77e676e45964aa0d9fa8830a22c2ddb9cef,", + "core.color.neutral.blk-020": "S:9fc3b3acbeda4ebd6eaa9694a799615de38c8f53,", + "core.color.neutral.blk-030": "S:6e7010ebd7da11ef0c8677c7b3e138d0d6b6666b,", + "core.color.neutral.blk-040": "S:2c369ccc2bd9dbf119b1a447eb6f638012b7c193,", + "core.color.neutral.blk-050": "S:e71ce79ebfa1e5e47b70284bde8298e0f428d0af,", + "core.color.neutral.blk-060": "S:c48ae66b1205086fbe209ba6e1ec0ef224315646,", + "core.color.neutral.blk-070": "S:568e210e3abc4bac9c59fd6da505eca60c2906eb,", + "core.color.neutral.blk-080": "S:c2923315fc6b3128caec7736fdfda9db5bb2dc55,", + "core.color.neutral.blk-090": "S:6e336f0e932fe1694dbf4eedd383b3d287406fbb,", + "core.color.neutral.blk-100": "S:b8cb9ddaa17b8e52cc8baa461fdb88c5070770e8,", + "core.color.neutral.blk-110": "S:dfdbe4ae031086d3977fbfc3c6690eebbb539915,", + "core.color.neutral.blk-120": "S:d02ee52cc6cbb1f64e4d644a46775b5a09c681bc,", + "core.color.neutral.blk-130": "S:4bbb7914654196933c1da872015c7993e1fcfccc,", + "core.color.neutral.blk-140": "S:7ca7950c73120089cd71e7c82d252be795b3b62e,", + "core.color.neutral.blk-150": "S:3c918f8d749ef073ead2218c7efefbf14ba6dffb,", + "core.color.neutral.blk-160": "S:f792b9890c36f6ac70f1c1ee1c3a498ef9161808,", + "core.color.neutral.blk-170": "S:411d4fc1eac1ec98b04758e6aa28d5971a769297,", + "core.color.neutral.blk-180": "S:de8af9b59e8116339ed199ec765893f2bf77bdc3,", + "core.color.neutral.blk-190": "S:3689986e44266e08bee9f4ac1f89a65af7d277d9,", + "core.color.neutral.blk-200": "S:dfc3a1482e86e0d79479102515ae1640cfda7660,", + "core.color.neutral.blk-210": "S:4b85d05798bcf10f05e1001665a163eedad46a25,", + "core.color.neutral.blk-220": "S:d38ce197c2a81d738c3aa36fb428a48cf869e172,", + "core.color.neutral.blk-230": "S:bd064ee87818ec8a5e4600cc049237ef96898eaa,", + "core.color.neutral.blk-235": "S:9c64ecf6085cefb0f09181a4f78a9dc3276a43f6,", + "core.color.neutral.blk-240": "S:566e201f296c4048cfdee8da4654fa663916fb97,", + "core.color.palette.dark.blue.d-bb-410": "S:098d21075614d6c47f49f3c326099ab1b5934010,", + "core.color.palette.dark.blue.d-bb-420": "S:08f1dadd6b907fa2e4c5022c4dfba0973b892372,", + "core.color.palette.dark.blue.d-bb-430": "S:90e82be07ee6af71f6fb71a8bc1c964f18a2d396,", + "core.color.palette.dark.green.d-gg-410": "S:696963c67cccb3184f70df720c18499ba54372cc,", + "core.color.palette.dark.green.d-gg-420": "S:1d8b212500ead45da840547917f11b1750d24330,", + "core.color.palette.dark.green.d-gg-430": "S:6e32f21df7c3e9cccb516f157cbd0c73cfe090bd,", + "core.color.palette.dark.red.d-rr-410": "S:d1efd5a9b420f32748921b6ec6d718b6e1af465a,", + "core.color.palette.dark.red.d-rr-420": "S:e97c4e83c642e168f0bf9870c3caa3966dd9831e,", + "core.color.palette.dark.red.d-rr-430": "S:515edae396cbd56599053c86abb3d1b0eeda8070,", + "core.color.palette.dark.yellow.d-yy-410": "S:4906ceee1669c1ba45f248d40c9402fa223bc15e,", + "core.color.palette.dark.yellow.d-yy-420": "S:23b7ad4f5dc84a74b4025093726a20bdbd487a85,", + "core.color.palette.dark.yellow.d-yy-430": "S:3a9e706df7bfee778d832ebc36bb0bc67a9bc6e6,", + "core.color.palette.high-saturation.blue.h-bb-010": "S:a30ba21a5a769859a1a365443ec1a7ae1c0dbc4b,", + "core.color.palette.high-saturation.blue.h-bb-020": "S:f16fe042a5395dde509e4df0f4c400a080226b2b,", + "core.color.palette.high-saturation.blue.h-bb-030": "S:e3038d72f66ffc3f0b34a95b3489a19e0de9b294,", + "core.color.palette.high-saturation.blue.h-bb-040": "S:615c572713be17f77d4c24bf0643f1a29296240e,", + "core.color.palette.high-saturation.blue.h-bb-050": "S:381bfaa859daf1e49bb01f6a3c2e2ff6ae345f87,", + "core.color.palette.high-saturation.blue.h-bb-060": "S:29331b79a5d4ac10298a460dfba3786bdd9f5254,", + "core.color.palette.high-saturation.blue.h-bb-070": "S:2b5067dd954b317dc7703d6972506b7212b63311,", + "core.color.palette.high-saturation.blue.h-bb-080": "S:a4e84e53aafa35d7114425188e4bc2fa8ca8016d,", + "core.color.palette.high-saturation.blue.h-bb-090": "S:3646636061731a38d31d34ae2ba82e7226630c0b,", + "core.color.palette.high-saturation.blue.h-bb-100": "S:b137c82c753cee8690ad1bf580378f945e59413e,", + "core.color.palette.high-saturation.green-blue.h-gb-010": "S:86acdd47f813a3b6840e5be60646304724e8e694,", + "core.color.palette.high-saturation.green-blue.h-gb-020": "S:6a141dd9a788a88b35b66538cfce91fbefbd359b,", + "core.color.palette.high-saturation.green-blue.h-gb-030": "S:21271ba54272055068ddcc604f3ac1316c7a755c,", + "core.color.palette.high-saturation.green-blue.h-gb-040": "S:e036ed954eecd1cf1060b9e347f07257db1ac99c,", + "core.color.palette.high-saturation.green-blue.h-gb-050": "S:bbbd7b4a5478ce9d9a4f47979e3f2e6c3fbfa657,", + "core.color.palette.high-saturation.green-blue.h-gb-060": "S:7a22a2f99c80ae2bb0019677140ce920343271a9,", + "core.color.palette.high-saturation.green-blue.h-gb-070": "S:76a07fa6afbb24ffaebe9848da2d56584bca1139,", + "core.color.palette.high-saturation.green-blue.h-gb-080": "S:cfebc84ef66573b8762db2e67afa4e8707853f53,", + "core.color.palette.high-saturation.green-blue.h-gb-090": "S:f9cd0722f121b1e14620c509c50d8cc8a035af0d,", + "core.color.palette.high-saturation.green-blue.h-gb-100": "S:2b1ec16718e0780eb78c84fbc8a863132534b2db,", + "core.color.palette.high-saturation.green.h-gg-010": "S:430c8695a2cbf32dc936ec92d352440f6b8baa83,", + "core.color.palette.high-saturation.green.h-gg-020": "S:bcdae4d9ef10acd863a18e695fe4bbd8c42b124d,", + "core.color.palette.high-saturation.green.h-gg-030": "S:fa64724d0f31c0a4fd76055afff3965be2202599,", + "core.color.palette.high-saturation.green.h-gg-040": "S:5abb8c81a3309fb62ac92b87e3ce880df36f4050,", + "core.color.palette.high-saturation.green.h-gg-050": "S:bfcb47dc8a77c4cae92c5cfdaea6e6871c309405,", + "core.color.palette.high-saturation.green.h-gg-060": "S:d2e08acc23f2d375003d815977b639a57ae3c5d7,", + "core.color.palette.high-saturation.green.h-gg-070": "S:4a4ca908024da34195ae5e1f53dfca68ad8bfc16,", + "core.color.palette.high-saturation.green.h-gg-080": "S:9b853997dedc3bcbd9414437bd09ddac84b21322,", + "core.color.palette.high-saturation.green.h-gg-090": "S:96ff382489dfbf8f473d91b02e14164d3f18cb04,", + "core.color.palette.high-saturation.green.h-gg-100": "S:aefb6e4a31ab9d60b6ab5b724409c2e5bce732c0,", + "core.color.palette.high-saturation.orange-yellow.h-oy-010": "S:d6886cfda04ce1879187dace6439eca99196bd25,", + "core.color.palette.high-saturation.orange-yellow.h-oy-020": "S:36febea423bf21b8ffade26dfbdff1d1d86b16be,", + "core.color.palette.high-saturation.orange-yellow.h-oy-030": "S:c3584d602a0f67a3648d67ddaa13444d4334c301,", + "core.color.palette.high-saturation.orange-yellow.h-oy-040": "S:ab7f0583694d290842d460dd1393c8e3903dd257,", + "core.color.palette.high-saturation.orange-yellow.h-oy-050": "S:05fd025c8c0381fcf82d5e21e9fde71f5867bc48,", + "core.color.palette.high-saturation.orange-yellow.h-oy-060": "S:e451d7ee43ff8164e124b5a13004188b668c068e,", + "core.color.palette.high-saturation.orange-yellow.h-oy-070": "S:fdb4b6f58a600d604560d871399b3bf5c02a37a8,", + "core.color.palette.high-saturation.orange-yellow.h-oy-080": "S:82c5ecfe97d81153b8cf0df3bbdf4946e0941844,", + "core.color.palette.high-saturation.orange-yellow.h-oy-090": "S:6a0862425705cdce19f742977f3555b7b4e20b88,", + "core.color.palette.high-saturation.orange-yellow.h-oy-100": "S:23a580aae4798bcff45cff8bf23a29e5cbb587cd,", + "core.color.palette.high-saturation.orange.h-oo-010": "S:9dd0ce8fa68b2f403cd935dcb85865bdaf3c7c40,", + "core.color.palette.high-saturation.orange.h-oo-020": "S:f8335f88872810e2e490e4b60f82b916c4fabdb5,", + "core.color.palette.high-saturation.orange.h-oo-030": "S:30b22a97e608f144d24de0a31361b51ce0326e8c,", + "core.color.palette.high-saturation.orange.h-oo-040": "S:819bee7a96e0cbc320a63f1e202847e617cafa0f,", + "core.color.palette.high-saturation.orange.h-oo-050": "S:f565589dd9c7ecbe21fd6b16af88fec443a80757,", + "core.color.palette.high-saturation.orange.h-oo-060": "S:fc495462d9c23608df5d3a2f33dd6ca7c1e54ea6,", + "core.color.palette.high-saturation.orange.h-oo-070": "S:2821799e9639eccd07992e27c4e6694ae02bf6d0,", + "core.color.palette.high-saturation.orange.h-oo-080": "S:728bb41c33fd83583676baf7033dca60bdd741d6,", + "core.color.palette.high-saturation.orange.h-oo-090": "S:31b0367b23ffd087b0fd223313d735f05c36f7a6,", + "core.color.palette.high-saturation.orange.h-oo-100": "S:9997f139bbc6b8d1cf2c9ff289ff2311bfcc8c0f,", + "core.color.palette.high-saturation.pink.h-pk-010": "S:c027bd4128a5857b7cbedba5209e6c3aabc3de7a,", + "core.color.palette.high-saturation.pink.h-pk-020": "S:87bf40f484e94e4021da62d8b092c37d7edab62b,", + "core.color.palette.high-saturation.pink.h-pk-030": "S:91afaaa48482a5e2b7172933e8564fdba0469a12,", + "core.color.palette.high-saturation.pink.h-pk-040": "S:802fed85b89883a05fd3ea3174504d923a99ff29,", + "core.color.palette.high-saturation.pink.h-pk-050": "S:476e1afaadd97e03ec2eda43c296ba05d2a616f8,", + "core.color.palette.high-saturation.pink.h-pk-060": "S:eb4f19e47f82b5bdcb4455d330e63eb9f8ef1e06,", + "core.color.palette.high-saturation.pink.h-pk-070": "S:1cf5b4431ac55c0284ece0b3506136ca63e128cc,", + "core.color.palette.high-saturation.pink.h-pk-080": "S:b680dba4a6e7a534893958e1a09b45da536164f5,", + "core.color.palette.high-saturation.pink.h-pk-090": "S:9211d5dd09ee4a12c6f559870ecb4ca3273e7d38,", + "core.color.palette.high-saturation.pink.h-pk-100": "S:fea2af5d6af09bf9ca344cc8a8b59720ff57e043,", + "core.color.palette.high-saturation.red-orange.h-ro-010": "S:01ff093ba2e7b3dc3221f560f2448f25f34208ab,", + "core.color.palette.high-saturation.red-orange.h-ro-020": "S:723100344827d512b6a2cdd6c7fcae745c7aebd5,", + "core.color.palette.high-saturation.red-orange.h-ro-030": "S:7dffa36a03dbc41ebb16e38f018cb82a2094c275,", + "core.color.palette.high-saturation.red-orange.h-ro-040": "S:5e070803b21a2c5647a6e9fa17671aaae548d6d2,", + "core.color.palette.high-saturation.red-orange.h-ro-050": "S:5f3ba5da8df574574b3fd2b1ab6d2ebdc4c5fb19,", + "core.color.palette.high-saturation.red-orange.h-ro-060": "S:4a71ecd5bf9ed15033f518e68bcfab66d7fb960a,", + "core.color.palette.high-saturation.red-orange.h-ro-070": "S:6d7d6dc19cdd30aaabf0c11637edad931b5feb3e,", + "core.color.palette.high-saturation.red-orange.h-ro-080": "S:4d5899b3aa7be56bf41d2dbfa3b95e825c8e0114,", + "core.color.palette.high-saturation.red-orange.h-ro-090": "S:d3593a25f6453c441e3c2e3d517f7980f3428c60,", + "core.color.palette.high-saturation.red-orange.h-ro-100": "S:91a05bf108f4f03541653f686a2078fd2a5672ed,", + "core.color.palette.high-saturation.red.h-rr-010": "S:72bf4c6626a6aadaa819d25c4081562f06fa12a2,", + "core.color.palette.high-saturation.red.h-rr-020": "S:15ddbfa8e4581df9079cde86d7d0fdfe5eb34b1e,", + "core.color.palette.high-saturation.red.h-rr-030": "S:9e593aa8f214b38e98522453c863ba486475382e,", + "core.color.palette.high-saturation.red.h-rr-040": "S:cf51d25a58cb8bec4ef72b73d550c88ad41c41dc,", + "core.color.palette.high-saturation.red.h-rr-050": "S:0429df1a99a360307086093dca26f12feba95567,", + "core.color.palette.high-saturation.red.h-rr-060": "S:df92c84bbe47af0a506a11389ffa25980ddbf71d,", + "core.color.palette.high-saturation.red.h-rr-070": "S:3698204b2caa7d34f77be9ddba8fcc76321b2821,", + "core.color.palette.high-saturation.red.h-rr-080": "S:c77c87f684559adb69e175e12897529c3645ddf1,", + "core.color.palette.high-saturation.red.h-rr-090": "S:093ed2efb025d6d2f406dcdac508de589658437e,", + "core.color.palette.high-saturation.red.h-rr-100": "S:02824a1c296eabc6218cf6bb7daeb1dcde36fac4,", + "core.color.palette.high-saturation.violet-red.h-vr-010": "S:d9a5369ff6ac626201326882679bcd4663801de9,", + "core.color.palette.high-saturation.violet-red.h-vr-020": "S:e1f2e31077d7dc45b8543998d1b79fbd154cc441,", + "core.color.palette.high-saturation.violet-red.h-vr-030": "S:9e1a260e10913714d0d9bbcbdb6474da33d9ac49,", + "core.color.palette.high-saturation.violet-red.h-vr-040": "S:dbfa38e55babf7dda9961547f0eb16e67a8f0265,", + "core.color.palette.high-saturation.violet-red.h-vr-050": "S:32dae974bd24d671c83feb6465949a849294ab06,", + "core.color.palette.high-saturation.violet-red.h-vr-060": "S:afbb6f3f9dfece8273608c1f00c980150ba1c277,", + "core.color.palette.high-saturation.violet-red.h-vr-070": "S:8ed7669af254c3fe12310ab115f77b7227366a06,", + "core.color.palette.high-saturation.violet-red.h-vr-080": "S:f4451432a831473289c70f7e7282e6dbde9ccb0a,", + "core.color.palette.high-saturation.violet-red.h-vr-090": "S:7fd97dfa464285509bf40fc039af159d56f579bc,", + "core.color.palette.high-saturation.violet-red.h-vr-100": "S:90fd71cf8895dcb1cd034bd0580aa225950aca34,", + "core.color.palette.high-saturation.violet.h-vv-010": "S:a4fd8438ca3d2c0f65c436a971d30284c488fb58,", + "core.color.palette.high-saturation.violet.h-vv-020": "S:500d0566c62490d66a912c0def0642822ebbe276,", + "core.color.palette.high-saturation.violet.h-vv-030": "S:08f873b4f74a821fe521827382bed72817884c07,", + "core.color.palette.high-saturation.violet.h-vv-040": "S:8a4a73cdf4253aa6ad58d663e97a2999cfb0bd5b,", + "core.color.palette.high-saturation.violet.h-vv-050": "S:244f69540b20db975232e019cfe2e81e4fb82695,", + "core.color.palette.high-saturation.violet.h-vv-060": "S:b39c473f516e51267bca75819d192b6ea3f2f020,", + "core.color.palette.high-saturation.violet.h-vv-070": "S:c66eafbfef67edcfb9e898e636cd9ff49d29e20b,", + "core.color.palette.high-saturation.violet.h-vv-080": "S:3973dd0fe8d726ed4265989b0b8c8d206077a2d0,", + "core.color.palette.high-saturation.violet.h-vv-090": "S:1d48293e45fac39396eea9a16c52258d1b7447d5,", + "core.color.palette.high-saturation.violet.h-vv-100": "S:f2f832092ddc91fd4d4f417c4ca5c9d1fc1ba280,", + "core.color.palette.high-saturation.yellow-green.h-yg-010": "S:fb933c69a7eb66e3ace1dcc3018d8b72309b5494,", + "core.color.palette.high-saturation.yellow-green.h-yg-020": "S:d7441f89845f36a907304a2b8d134941df2faa55,", + "core.color.palette.high-saturation.yellow-green.h-yg-030": "S:99c2d767e05c9741f3a70061c3802f9a96ca7b92,", + "core.color.palette.high-saturation.yellow-green.h-yg-040": "S:5b721c955c1ad2f3350c4984f126debac5cfecce,", + "core.color.palette.high-saturation.yellow-green.h-yg-050": "S:c076b7e08ccc3cd2831039cd69140bf1ab1d718e,", + "core.color.palette.high-saturation.yellow-green.h-yg-060": "S:263daeecd3a70bbd9b3c1ef9050317d62809156d,", + "core.color.palette.high-saturation.yellow-green.h-yg-070": "S:d7b0744a407d03166754e72118d86c97eb5786dd,", + "core.color.palette.high-saturation.yellow-green.h-yg-080": "S:81bfa9f3dd5ac7b5f90cc6b7ba807fa5d3b7947e,", + "core.color.palette.high-saturation.yellow-green.h-yg-090": "S:1ad692e88dc7c0849892dd2f12fe1708e87fca1a,", + "core.color.palette.high-saturation.yellow-green.h-yg-100": "S:6f81213d26a0986b6c8b1807a4df5b0313a5609e,", + "core.color.palette.high-saturation.yellow.h-yy-010": "S:157f230fe60c3e396f37284470728605f8515c63,", + "core.color.palette.high-saturation.yellow.h-yy-020": "S:3a54f6277edbd4c92c83d72cf7eb8663f7b1867d,", + "core.color.palette.high-saturation.yellow.h-yy-030": "S:e3c57eefabd42b3d15e138b62ccf76f673d532c0,", + "core.color.palette.high-saturation.yellow.h-yy-040": "S:430d25da287d5fd16a8f398cb2fdf1e8a93e5db4,", + "core.color.palette.high-saturation.yellow.h-yy-050": "S:45c181165c8cf7dc9a75172b796f13ea5e6865e1,", + "core.color.palette.high-saturation.yellow.h-yy-060": "S:aaf6b1686716ba60e09e442bceace906c0c3c4bc,", + "core.color.palette.high-saturation.yellow.h-yy-070": "S:5490cdcefbff5b5e61fbb460e3210b71856ccd18,", + "core.color.palette.high-saturation.yellow.h-yy-080": "S:cb4adac94e31977c65f30ecdc3f162f47350a9a5,", + "core.color.palette.high-saturation.yellow.h-yy-090": "S:fe8696238f9f363040075ebad9eadcfdb5fc4070,", + "core.color.palette.high-saturation.yellow.h-yy-100": "S:a07d09607ed87f74630d11f30c9e403e6b682b30,", + "core.color.palette.vibrant.blue.v-bb-120": "S:1b912737566790521b736fc0cb5790e0d1758549,", + "core.color.palette.vibrant.blue.v-bb-140": "S:7d847def6e5074a8cdd43baf422978ac08d09741,", + "core.color.palette.vibrant.blue.v-bb-160": "S:ce4e4c4afaa37ac070a03dc8ea77b6e26f23f8a9,", + "core.color.palette.vibrant.blue.v-bb-180": "S:aeaa8f622e7673b47171d53cef6e5d305c52cdad,", + "core.color.palette.vibrant.green-blue.v-gb-120": "S:e545cc972786b8b866be0af383adac42b93490c0,", + "core.color.palette.vibrant.green-blue.v-gb-140": "S:24ef68b4113dd8865413e7b7fedbc975f73b1844,", + "core.color.palette.vibrant.green-blue.v-gb-160": "S:26257d454cefefa4b0e0392539b29967da80cd03,", + "core.color.palette.vibrant.green-blue.v-gb-180": "S:41faa42c025c8b0835b46833622ef8d566ac0ef8,", + "core.color.palette.vibrant.green.v-gg-120": "S:3c32e87b40218532cf223d4f25ddd8e585252178,", + "core.color.palette.vibrant.green.v-gg-140": "S:5c0a317d12ecd5afa4821a63bf48bfcff4b66908,", + "core.color.palette.vibrant.green.v-gg-160": "S:3c7e9cc671a86bcd48bba238963182d8fd5dec84,", + "core.color.palette.vibrant.green.v-gg-180": "S:d3e30b0e8fe8bb40a0bc3cdd3ac61c6d09603232,", + "core.color.palette.vibrant.orange-yellow.v-oy-120": "S:391020c0f092b5402febc0c2d0667d48de33d1ad,", + "core.color.palette.vibrant.orange-yellow.v-oy-140": "S:506b1d01e499bcba07730eb885aa9fef7b5c3cf3,", + "core.color.palette.vibrant.orange-yellow.v-oy-160": "S:f0b69b624b41a6645e8d23660b2a115d23d68d6c,", + "core.color.palette.vibrant.orange-yellow.v-oy-180": "S:beb78cc618755d86db5cca1545c79fce4931d70c,", + "core.color.palette.vibrant.pink.v-pk-120": "S:135ed546e2076187d3745c85a8da21a7e7c16d53,", + "core.color.palette.vibrant.pink.v-pk-140": "S:bad80534e3ba23d8230747873bc575b34a608067,", + "core.color.palette.vibrant.pink.v-pk-160": "S:a777eaeb101c5d8a3f518f06043d630a82ad4ef9,", + "core.color.palette.vibrant.pink.v-pk-180": "S:5ccaaf1a5b41cd71e837d43f9bd0f695691fe4c3,", + "core.color.palette.vibrant.red-orange.v-ro-120": "S:e2b928465273fe8d962655e71d78fb1f9f686490,", + "core.color.palette.vibrant.red-orange.v-ro-140": "S:980e62e80e8f3f9f09425a6d8b26b7302705716b,", + "core.color.palette.vibrant.red-orange.v-ro-160": "S:7403c860250af93694c42ca2464fdcd59d02ca28,", + "core.color.palette.vibrant.red-orange.v-ro-180": "S:e8e13ec2d4406a6683e5f91f9fa1cd664aaf28a1,", + "core.color.palette.vibrant.red.v-rr-120": "S:bcda3ca03b09b394fed9066f9c726fea24ddfe82,", + "core.color.palette.vibrant.red.v-rr-140": "S:b75af4155f1f5474e4032009d0d948a99184999a,", + "core.color.palette.vibrant.red.v-rr-160": "S:88cd4e4fc13847018e7936084c7314042cea5fdd,", + "core.color.palette.vibrant.red.v-rr-180": "S:74c93bbf5b2823acd54016fed51129bcd455703f,", + "core.color.palette.vibrant.violet-red.v-vr-120": "S:9155708e86a8fb667554b200f87c3fb462789caf,", + "core.color.palette.vibrant.violet-red.v-vr-140": "S:b4d6d11c17004435c313505d1c208a4b4258db38,", + "core.color.palette.vibrant.violet-red.v-vr-160": "S:c2609e360b146b6c6b7bc109099d50679f8e049b,", + "core.color.palette.vibrant.violet-red.v-vr-180": "S:5e1709c59c961c97c2d8876919128d145b9b2922,", + "core.color.palette.vibrant.violet.v-vv-120": "S:5962188393f63a4aacda8dbf97c8fee5d9d51624,", + "core.color.palette.vibrant.violet.v-vv-140": "S:12e4253328fc0297e55cd1dd6f47b5fb6921207d,", + "core.color.palette.vibrant.violet.v-vv-160": "S:8497c9ebd8d903caabcb33da8ef48c502beac564,", + "core.color.palette.vibrant.violet.v-vv-180": "S:94ceff7a97452d069c1c06d0b100d989a68b92f8,", + "core.color.palette.vibrant.yellow-green.v-yg-120": "S:4715ea79a577a93a3a6e99ce0142e742df6a5068,", + "core.color.palette.vibrant.yellow-green.v-yg-140": "S:101f1e34931f4dcd0fafe5fa2720fdc404e74885,", + "core.color.palette.vibrant.yellow-green.v-yg-160": "S:fe8e96fc343e65cd13c7741a9933cda392073117,", + "core.color.palette.vibrant.yellow-green.v-yg-180": "S:117baa81e4d628adcaea061e4c929c48a415edc8,", + "core.color.palette.vibrant.yellow.v-yy-120": "S:aa8ac761db055ea5816853564704bcc9063cec02,", + "core.color.palette.vibrant.yellow.v-yy-140": "S:22614e355bd4fb8c2b132207ec8dccb4e46e31f7,", + "core.color.palette.vibrant.yellow.v-yy-160": "S:3457eb204ca408d52ddbb80f84a111e911dea55d,", + "core.color.palette.vibrant.yellow.v-yy-180": "S:88d256ac4a6561ce88e2f7f256ad037d8ec3ff8b,", + "date-picker.background.date.active.dark": "S:00008689f4cd67914fac19beec1528a1ac41a4ea,", + "date-picker.background.date.active.light": "S:6796ec3ef28142c1660b3f7739c4c04ab1c75a04,", + "date-picker.background.date.range.dark": "S:ffc81c58606df60c717c94bfdad04a0c94909404,", + "date-picker.background.date.range.light": "S:d87a05addefd5d554795dd94b2acd577288521c2,", + "date-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "date-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "date-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "date-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "date-picker.date.active.border.dark": "S:1c7ebf7d8f4af02e7f83a46c3f52233e9ba35c31,", + "date-picker.date.active.border.light": "S:fd8fc2f890e9782d5c058c793be18797a5534932,", + "date-picker.font.active.date.dark": "S:c107a2ddcb3a1cbff0b2851c9a8ebfe8929f328d,", + "date-picker.font.active.date.light": "S:8fcb8da38c5f2fb6d0aa36167cc0f4ef2b160550,", + "date-picker.font.date.dark": "S:241f8779538cb4702201ed4066cd4340fa9f686f,", + "date-picker.font.date.lg": "S:7c6580521bcdbdfc7bb20f11d228412e30ed2745,", + "date-picker.font.date.light": "S:3671fe14f042965357c46b2615824a1c7efa70e4,", + "date-picker.font.date.md": "S:85386bc63729e94eb607ba5fb8b391b902092a3a,", + "date-picker.font.date.sm": "S:076aac1ce1f45e740d83d11ccf5c0372c63982fb,", + "date-picker.font.day.dark": "S:edf6e93f0880409de72951ab590e37223a5e7e22,", + "date-picker.font.day.lg": "S:7879c6c4aa4abbbf15e4970e729d60d5d5d9b0b6,", + "date-picker.font.day.light": "S:e1f8fe8a0d500900f3755214d6639efb6e5fafec,", + "date-picker.font.day.md": "S:bd28d711234c47f7a22638ab944067ca5fcb68d8,", + "date-picker.font.day.sm": "S:97c9f51cd9020c2183f12f022475331f59cf4afb,", + "date-picker.font.month.dark": "S:7a26a1b5050ac857298b1e427d93e512d4d57a65,", + "date-picker.font.month.lg": "S:5d9cea67d300b7cc734fe3340321199590d12bf9,", + "date-picker.font.month.light": "S:e7007a61645ae44b3abd80d52d8f984fc782206c,", + "date-picker.font.month.md": "S:115bcd0db12a861a644f053bf6dc97fa6ee0c4e4,", + "date-picker.font.month.sm": "S:d2815132a05319d69c3b303e10199eef70882454,", + "date-picker.font.range.date.dark": "S:2ceceff57cd77aa99ffc7d2f0b0517541f985766,", + "date-picker.font.range.date.light": "S:06a32d845847149d2cbeb96b36e43468f1a62789,", + "date-picker.font.selected.date.dark": "S:875fa73c614a95118c158cc6dc0ec80f074ccb0d,", + "date-picker.font.selected.date.light": "S:18248953f5c1f8ea47799a390f9956d4d622db11,", + "date-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "date-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "dropdown.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "dropdown.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "dropdown.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "dropdown.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "dropdown.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "dropdown.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "dropdown.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "dropdown.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "dropdown.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "dropdown.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "dropdown.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "dropdown.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "dropdown.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "fab.background.brand.dark": "S:f6e2deace9b6dd48b910a426a510fde31cc0db92,", + "fab.background.brand.light": "S:9ac99a92c95b9cfe1cdb3e34588b1f11efa19610,", + "fab.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", + "fab.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", + "fab.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", + "fab.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", + "fab.background.danger.dark": "S:8e1ee57c6f283567fb11d0ff3fe8dd5a75e83e6b,", + "fab.background.danger.light": "S:00ac2274658d2870de79c6619dc3e4d72300f87e,", + "fab.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", + "fab.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", + "fab.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", + "fab.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", + "fab.background.inverse.dark": "S:1c77b198189e9321cb9bbd232609708563fee263,", + "fab.background.inverse.light": "S:bab00cecb69ae753c9250a25568cf8dfa0a577be,", + "fab.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", + "fab.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", + "fab.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", + "fab.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", + "fab.background.neutral.dark": "S:c1b1717848f0b10f15e25cec75d82d8c78c38275,", + "fab.background.neutral.light": "S:71762a3ba06a95fcf1b11b376001d247582842f3,", + "fab.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", + "fab.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", + "fab.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", + "fab.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", + "fab.border.brand.dark": "S:ff9ccecf20101a5ec706984a6aef21c387289e1a,", + "fab.border.brand.light": "S:0a487125d5f58c91b426b23486b6c0aadf59541a,", + "fab.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", + "fab.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", + "fab.border.brand.solid.dark": "S:c675794954c819b4aa0f731b8a492dda370f1b1b,", + "fab.border.brand.solid.light": "S:bd7ea9269499e13add0ce3b7c573f0d5cf43477f,", + "fab.border.danger.dark": "S:05ecd2230432bfac13daa1732bb3d4f9af41b10f,", + "fab.border.danger.light": "S:08b70e12351771cbe47f05f9411640bba734f4a4,", + "fab.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", + "fab.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", + "fab.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d,", + "fab.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", + "fab.border.inverse.dark": "S:7cabf2db07e740256356e1a258f47f93f4de70ad,", + "fab.border.inverse.light": "S:bbc6d04a67d5af3d498fd848feeffddcd2aebeb1,", + "fab.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", + "fab.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", + "fab.border.inverse.solid.dark": "S:79d49b3abca4ba1459da9ebafe07d1efd4b01763,", + "fab.border.inverse.solid.light": "S:573938363514bd57d61b7938a8c2337aa45af89b,", + "fab.border.neutral.dark": "S:1edf76a1774c4e32e9ae091278d4b44c1e500595,", + "fab.border.neutral.light": "S:e6886e133cdff23972c5e15246ee37582150a756,", + "fab.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", + "fab.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", + "fab.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", + "fab.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", + "fab.font.brand.clear.dark": "S:76f49a66542c52b964e3ec9f9a7652e934e7a781,", + "fab.font.brand.clear.light": "S:1f3107c5a2f1daf1fcf03e492b2d6993789a3c3f,", + "fab.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", + "fab.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", + "fab.font.brand.outline.dark": "S:1e8852afd9ea094755d09382eded30d2e2bbe130,", + "fab.font.brand.outline.light": "S:f0adeadd0e0e0f4a1f3fee86558666b817037268,", + "fab.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", + "fab.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", + "fab.font.brand.transparent.dark": "S:d4356a1762c850343f02a3c9777f23ebfa4d41f3,", + "fab.font.brand.transparent.light": "S:06df2efafe1c1cafe563f76e771347a69d04a7a1,", + "fab.font.danger.clear.dark": "S:eda93904fa4476dfa692f041d1ae43558bb8cf8f,", + "fab.font.danger.clear.light": "S:432cc47f645578d52058b0a32e71dcceb2c27550,", + "fab.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", + "fab.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", + "fab.font.danger.outline.dark": "S:c24691323d8d5644e4f839a94279632eef9e3d27,", + "fab.font.danger.outline.light": "S:8741a29d39368c4806c94ee4e10696e7d2d7b52f,", + "fab.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", + "fab.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", + "fab.font.danger.transparent.dark": "S:5a1cb81061b8ad3b5d15bdadafaa96bd269f5be5,", + "fab.font.danger.transparent.light": "S:ae81a8c9ff5a24316bcbd766c7aa4069a960d5f6,", + "fab.font.inverse.clear.dark": "S:6b6b568e5b20a35af73db4ea211ed735480fde1a,", + "fab.font.inverse.clear.light": "S:4e0126885705a695441471685e9c6fe53df73560,", + "fab.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", + "fab.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", + "fab.font.inverse.outline.dark": "S:bd96e308b8742f172fd160a9f16cee7139edef42,", + "fab.font.inverse.outline.light": "S:043470cf705695bc573e8be8d0f1ca5cd43f235c,", + "fab.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", + "fab.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", + "fab.font.inverse.transparent.dark": "S:fcff24f62b0f0ba8c776732e6f5470fb0a1dbf69,", + "fab.font.inverse.transparent.light": "S:bb5130f5070b15d7cb2aa427df1f2daf170c9ef4,", + "fab.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "fab.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "fab.font.neutral.clear.dark": "S:55cccdc027e56fef0edd16c7ac5aa7eb2013db7e,", + "fab.font.neutral.clear.light": "S:1e82fef827484f0bf26f77727d1b1613b4c3aba4,", + "fab.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", + "fab.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", + "fab.font.neutral.outline.dark": "S:c5d513baa7dd50fa7187946b6439f13a0c20b1ab,", + "fab.font.neutral.outline.light": "S:4e2bfb0fb3cf8178c5f92b14ed9e07a9c081b8d1,", + "fab.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", + "fab.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", + "fab.font.neutral.transparent.dark": "S:a8c25d727dd4b2107098c344a191fda0f0d5cacc,", + "fab.font.neutral.transparent.light": "S:65f4164ddf1746ca302a6893fa48b90d95fabf26,", + "fab.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "fab.icon.brand.clear.dark": "S:0209e34abf08a3748f1c017de6ca04407d1f24ec,", + "fab.icon.brand.clear.light": "S:7b41c424d6d43439158e852afca3ecc4879c68c3,", + "fab.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", + "fab.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", + "fab.icon.brand.outline.dark": "S:943336f4351cd0578403d1ac7a4d2eb049e58038,", + "fab.icon.brand.outline.light": "S:9725df33208dd26ef970c6ec407e9549ae3e27b5,", + "fab.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", + "fab.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", + "fab.icon.brand.transparent.dark": "S:f6962099346882882e98104ff08ebe0ba1374f08,", + "fab.icon.brand.transparent.light": "S:0d69f2196d70b057296fb229c7d31607298fdfd0,", + "fab.icon.danger.clear.dark": "S:83f59a42749045bc176c76eff33bae3d78d57760,", + "fab.icon.danger.clear.light": "S:c24a2b5bfa9655777cc888f9706e28ff9b424ac6,", + "fab.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", + "fab.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", + "fab.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", + "fab.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", + "fab.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", + "fab.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", + "fab.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", + "fab.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", + "fab.icon.inverse.clear.dark": "S:8f4d3756bcfa4276a98d6b5a61e8d3f97a12eeca,", + "fab.icon.inverse.clear.light": "S:91c1f1ef69bd21f34f9c72b24233b868e5ffa432,", + "fab.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", + "fab.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", + "fab.icon.inverse.outline.dark": "S:6b26325108a1a6da51a0c561034d54eb68f02e6f,", + "fab.icon.inverse.outline.light": "S:21803c6456f48209cbde4a98b58f1d2f69bdae6c,", + "fab.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", + "fab.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", + "fab.icon.inverse.transparent.dark": "S:02b13cc89af23516f4ee3f12ab93fb3121ae984d,", + "fab.icon.inverse.transparent.light": "S:1293e84a59bcf4653f65d196ad8f646cc22120c4,", + "fab.icon.neutral.clear.dark": "S:f4965e149db9d7921bcb72c1962d64e7d6c83350,", + "fab.icon.neutral.clear.light": "S:181c0465edf07b98f6cf4324052bbdef3266f9b8,", + "fab.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", + "fab.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", + "fab.icon.neutral.outline.dark": "S:9eb2b2d7d7e57478b5b0d705029a38f2a99814dd,", + "fab.icon.neutral.outline.light": "S:d08cebd573da8fefff690d3fe3e89f6d22ace3ff,", + "fab.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", + "fab.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", + "fab.icon.neutral.transparent.dark": "S:350afeb494cb53e50dd315e8dcc0328877d7932e,", + "fab.icon.neutral.transparent.light": "S:a9ee00a0ff35a5f8588c4b53addbae5de8575b62,", + "filter.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "filter.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "filter.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "filter.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "filter.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", "filter.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "link.font.regular": "S:c408c9ff827ad4b2f4e934f2cd6a143455780c5f,", - "label.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "label.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "label.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "textarea.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "textarea.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "textarea.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "textarea.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "textarea.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "textarea.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "textarea.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "textarea.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "textarea.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "textarea.font.chat-limit.sm": "S:715a88be81f03c0539a4573a8095ea899279e87a,", - "textarea.font.chat-limit.md": "S:a6aafccb6ad4bfb6e67f2503e562666d7024adf4,", - "textarea.font.chat-limit.lg": "S:e5da8e77c6e39ed414fbd9ae5620564fd78ab3bf,", - "notice.font.title.sm": "S:3ce9291673796d12312501274a38efcf55f6b482,", - "notice.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", - "notice.font.title.lg": "S:051bc74df8ad468b012d4a69124462a7bd88ac16,", - "notice.font.message.sm": "S:62cbe66d7a194cf143b483c76e81b3ef7faec7e4,", - "notice.font.message.md": "S:914616baac8f924bb3068d03da85a3d7598a4eed,", - "notice.font.message.lg": "S:09c48ee987903ee44f92b7fd85f5e4dea0ead949,", - "modal.font.header.sm": "S:a4b9d004ad1b17fd1f98b1f2d5bf20d46e265ca1,", - "modal.font.header.md": "S:09bf67955036c958a09976e5162d4423b30b6a93,", - "modal.font.header.lg": "S:82b11c9411411513150be795953c302451b0092e,", - "modal.font.content.sm": "S:f2e10a30773ad893d3104d4c612c5a6bde6f5c58,", - "modal.font.content.md": "S:b2c1bb5f4c41d1d2af5feb08ce085d132682c3e3,", - "modal.font.content.lg": "S:5da5d0c2e707f47a5cba3740883f9b09066cba67,", - "input-week.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-week.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-week.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-week.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-week.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-week.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-week.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-week.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-week.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-week.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-week.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-week.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-text.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-text.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-text.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-text.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-text.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "filter.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "filter.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "filter.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "filter.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "filter.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-date-picker.background.arrow.dark": "S:d0eb9c0117c69137d5ce76e05b7ac929335e7bc9,", + "input-date-picker.background.arrow.light": "S:1c8e76ed08d85a1f5f4b21e363c5bf31b5f41910,", + "input-date-picker.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-date-picker.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-date-picker.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-date-picker.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-date-picker.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "input-date-picker.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "input-date-picker.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-date-picker.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-date-picker.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-date-picker.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-date-picker.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-date-picker.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-date-picker.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-date-picker.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-date-picker.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-date-picker.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-date-picker.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-date-picker.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-date-picker.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-date-picker.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-date-picker.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-datetime-local.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-datetime-local.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-datetime-local.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-datetime-local.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-datetime-local.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-datetime-local.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-datetime-local.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-datetime-local.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-datetime-local.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-datetime-local.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-datetime-local.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-datetime-local.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-datetime-local.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-datetime-local.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-datetime-local.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-datetime-local.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-datetime-local.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-datetime-local.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-datetime-local.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-datetime-local.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-datetime-local.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-datetime-local.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-datetime-local.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-datetime-local.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-datetime-local.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-datetime-local.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-datetime-local.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-email.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-email.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-email.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-email.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-email.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-email.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-email.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-email.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-email.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-email.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-email.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-email.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-email.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-email.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-email.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-email.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-email.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-email.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-email.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-email.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-email.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-email.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-email.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-email.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-email.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-email.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-email.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-email.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-email.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-email.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-file.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-file.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-file.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-file.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-file.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-file.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-file.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-file.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-file.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-file.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-file.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-file.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-file.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-file.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-file.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-file.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-file.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-file.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-file.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-file.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-file.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-file.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-file.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-file.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-file.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-file.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-file.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-file.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-file.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-file.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-message.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "input-message.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "input-message.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "input-message.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "input-message.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "input-message.icon.idle.dark": "S:37f89d2bdd848ec033c26905f5cf5dcd8fd5c642,", + "input-message.icon.idle.light": "S:f02d0fb7bba5b12f80f94cba50e49649f3d2ddd8,", + "input-message.icon.invalid.dark": "S:0f281ff3e987e7f74de0148d27a4e95c2a79b096,", + "input-message.icon.invalid.light": "S:82bdf7ab1c1e59e540a14b82f13e36170a401d00,", + "input-message.icon.valid.dark": "S:e723fefacb42d17262ce1549ae853cfe60f546ac,", + "input-message.icon.valid.light": "S:32d6ffe05ebc11b5c0e9c41a089941b6f827ee64,", + "input-month.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-month.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-month.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-month.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-month.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-month.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-month.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-month.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-month.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-month.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-month.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-month.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-month.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-month.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-month.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-month.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-month.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-month.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-month.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-month.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-month.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-month.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-month.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-month.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-month.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-month.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-month.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-month.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-month.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-month.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-number.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-number.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-number.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-number.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-number.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-number.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-number.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-number.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-number.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-number.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-number.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-number.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-number.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-number.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-number.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-number.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-number.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-number.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-number.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-number.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-number.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-number.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-number.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-number.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-number.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-number.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-number.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-number.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-number.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-number.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-password.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-password.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-password.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-password.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-password.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-password.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-password.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-password.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-password.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-password.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-password.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-password.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-password.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-password.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-password.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-password.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-password.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-password.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-password.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-password.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-password.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-password.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-password.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-password.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-password.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-password.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-password.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-password.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-password.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-password.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-search.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-search.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-search.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-search.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-search.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-search.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-search.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-search.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-search.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-search.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-search.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-search.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-search.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-search.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-search.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-search.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-search.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-search.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-search.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-search.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-search.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-search.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-search.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-search.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-search.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-search.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-search.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-search.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-search.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-search.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-telephone.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-telephone.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-telephone.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-telephone.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-telephone.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-telephone.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-telephone.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-telephone.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-telephone.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-telephone.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-telephone.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-telephone.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-telephone.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-telephone.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-telephone.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-telephone.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-telephone.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-telephone.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-telephone.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-telephone.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-telephone.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-telephone.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-telephone.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-telephone.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-telephone.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-telephone.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-telephone.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-telephone.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-telephone.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-telephone.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-text.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-text.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-text.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-text.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-text.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-text.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-text.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-text.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-text.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-text.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-text.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", "input-text.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-text.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-text.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-text.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-text.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-text.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-text.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-text.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-text.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-text.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-text.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-text.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", "input-text.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-text.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-text.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-text.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-text.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-text.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", "input-text.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-message.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "input-message.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "input-message.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "input-telephone.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-telephone.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-telephone.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-telephone.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-telephone.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-telephone.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-telephone.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-telephone.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-telephone.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-telephone.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-telephone.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-telephone.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-search.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-search.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-search.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-search.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-search.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-search.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-search.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-search.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-search.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-search.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-search.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-search.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-password.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-password.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-password.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-password.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-password.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-password.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-password.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-password.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-password.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-password.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-password.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-password.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-number.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-number.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-number.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-number.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-number.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-number.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-number.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-number.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-number.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-number.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-number.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-number.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-month.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-month.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-month.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-month.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-month.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-month.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-month.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-month.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-month.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-month.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-month.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-month.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-file.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-file.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-file.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-file.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-file.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-file.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-file.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-file.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-file.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-file.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-file.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-file.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-email.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-email.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-email.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-email.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-email.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-email.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-email.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-email.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-email.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-email.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-email.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-email.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "input-datetime-local.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-datetime-local.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-datetime-local.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-datetime-local.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-datetime-local.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-datetime-local.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-datetime-local.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", - "input-datetime-local.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", - "input-datetime-local.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", - "input-date-picker.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", - "input-date-picker.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", - "input-date-picker.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", - "input-date-picker.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", - "input-date-picker.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", - "input-date-picker.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", - "input-date-picker.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", - "input-date-picker.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", - "input-date-picker.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", - "date-picker.font.date.sm": "S:076aac1ce1f45e740d83d11ccf5c0372c63982fb,", - "date-picker.font.date.md": "S:85386bc63729e94eb607ba5fb8b391b902092a3a,", - "date-picker.font.date.lg": "S:7c6580521bcdbdfc7bb20f11d228412e30ed2745,", - "date-picker.font.day.sm": "S:97c9f51cd9020c2183f12f022475331f59cf4afb,", - "date-picker.font.day.md": "S:bd28d711234c47f7a22638ab944067ca5fcb68d8,", - "date-picker.font.day.lg": "S:7879c6c4aa4abbbf15e4970e729d60d5d5d9b0b6,", - "date-picker.font.month.sm": "S:d2815132a05319d69c3b303e10199eef70882454,", - "date-picker.font.month.md": "S:115bcd0db12a861a644f053bf6dc97fa6ee0c4e4,", - "date-picker.font.month.lg": "S:5d9cea67d300b7cc734fe3340321199590d12bf9,", - "combobox.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "combobox.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "combobox.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "card.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", - "card.font.subtile.md": "S:2f7bbe92776fd17b2ab450464cfe7115ff9e2625,", - "card.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "block-section.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "block.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "block.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "block.font.content.md": "S:b2c1bb5f4c41d1d2af5feb08ce085d132682c3e3,", - "avatar.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "avatar.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "avatar.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "alert.font.title.sm": "S:3ce9291673796d12312501274a38efcf55f6b482,", - "alert.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", - "alert.font.title.lg": "S:051bc74df8ad468b012d4a69124462a7bd88ac16,", - "alert.font.message.sm": "S:62cbe66d7a194cf143b483c76e81b3ef7faec7e4,", - "alert.font.message.md": "S:914616baac8f924bb3068d03da85a3d7598a4eed,", - "alert.font.message.lg": "S:09c48ee987903ee44f92b7fd85f5e4dea0ead949,", - "dropdown.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "dropdown.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "dropdown.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "chip.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "chip.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "chip.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "checkbox.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "checkbox.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "checkbox.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "fab.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "fab.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "fab.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "button.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "action.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "action.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "action.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "accordion-item.font.heading.sm": "S:22cd3c704f1ff153a930b1de5482c90d06b68463,", - "accordion-item.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "accordion-item.font.heading.lg": "S:26e38b824652312797550c4393b9af9201d16410,", - "accordion-item.font.descrition.sm": "S:f228bade32be994f29a47ae05d541bc1f127b991,", - "accordion-item.font.descrition.md": "S:74815d27fbc39d0e8e0221d98771575763398a36,", - "accordion-item.font.descrition.lg": "S:f248373f8c30765addca512c0a58e0471cdbbd92,", - "popover.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", - "popover.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", - "popover.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", - "notice.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", - "notice.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", + "input-text.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-text.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-text.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-text.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "input-week.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "input-week.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "input-week.background.prefix-suffix.dark": "S:e5099fb9e0fd98d685462aa5da6bf698da1c020d,", + "input-week.background.prefix-suffix.light": "S:b030575f9199f908c3743a30647ee7e89ddf2337,", + "input-week.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "input-week.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "input-week.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "input-week.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "input-week.border.invalid.dark": "S:a8adfab249387b32b9df0f5c3242fec9fc8fdbe2,", + "input-week.border.invalid.light": "S:0ddfb544e007231f7cdf4575bd1e0819e1693043,", + "input-week.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "input-week.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "input-week.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "input-week.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "input-week.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "input-week.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "input-week.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "input-week.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "input-week.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "input-week.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "input-week.font.prefix-suffix.dark": "S:4d2a372d83ad583678d32af9c4796c68f225965e,", + "input-week.font.prefix-suffix.lg": "S:e0a7a396286f1992398c279d909067267e8db0cd,", + "input-week.font.prefix-suffix.light": "S:e2959eb04e2696a5375ae08884ba255f0fc66059,", + "input-week.font.prefix-suffix.md": "S:95c940152f69d63b7ea3609a9c41a550ee6ae768,", + "input-week.font.prefix-suffix.sm": "S:672ad7662fa9d29d12561d98e15ce4d893880f8c,", + "input-week.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "input-week.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "input-week.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "input-week.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "input-week.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "label.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "label.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "label.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "label.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "label.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "link.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "link.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "link.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "link.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "link.font.regular": "S:c408c9ff827ad4b2f4e934f2cd6a143455780c5f,", + "link.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "link.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "loader.default.foreground.dark": "S:304a629ada6a7ef5519a7806204eeb4d7f01d954,", + "loader.default.foreground.light": "S:b98314fedea7c3e5e832bff9d4e44474ce7265a1,", + "loader.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "loader.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "loader.font.text": "S:e693886a422add0f7bbb617ceba18a5ada5de0da,", + "loader.font.value-text.lg": "S:14dd6559ad9eef407904de82098dafba431e98e2,", + "loader.font.value-text.md": "S:8e937a8014060d3b991f96d6988982c4a6d5434d,", + "loader.font.value-text.sm": "S:326d9abc426f0f215ba172af78bfe1fb9ac48bec,", + "loader.inline.foreground.determinate.dark": "S:dc561e94c526f6e3c0a23ce9ec67da08b6656413,", + "loader.inline.foreground.determinate.light": "S:691f6850302be0203c2298e598ab895cf8fc4fe9,", + "loader.inline.foreground.indeterminate.dark": "S:4280761ef8e8f569b4352ad45aa52609ff23e128,", + "loader.inline.foreground.indeterminate.light": "S:da04095cbdaf7cf5f98eeec697078fc7264d32ba,", + "modal.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "modal.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "modal.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "modal.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "modal.border.top.brand.dark": "S:b05703110c9b8ce6024303d8afed3ba60fa3104b,", + "modal.border.top.brand.light": "S:a9b4989bb9daad33b84c52206527ff7e76479865,", + "modal.border.top.danger.dark": "S:fb0dd7e07d149d3086385646a21160771e492be7,", + "modal.border.top.danger.light": "S:07a123da04a78be0ca0734de98940cf63a2c2d61,", + "modal.border.top.info.dark": "S:d6ae78b081b805c48d50806240c949cc2b9d0fec,", + "modal.border.top.info.light": "S:c3d1c7b192199d8fd537011e94f4289ab0ab1631,", + "modal.border.top.success.dark": "S:a4b10bfb518b25fbd87598ada78821a3b8c307e3,", + "modal.border.top.success.light": "S:0b8304d2a78248a6fe28da6b96560351b1c33f47,", + "modal.border.top.warning.dark": "S:78a2de515a0dcadf8f2b49cae9bd8be150243908,", + "modal.border.top.warning.light": "S:ed7d8c003631a5e8be2f0631574bd70db885e44f,", + "modal.font.content.dark": "S:5bf1d0dbbd8f49618514192dbfcaf7057cd6f72a,", + "modal.font.content.lg": "S:5da5d0c2e707f47a5cba3740883f9b09066cba67,", + "modal.font.content.light": "S:c46be83f52216f16ced44f463fcedcf82d3ee870,", + "modal.font.content.md": "S:b2c1bb5f4c41d1d2af5feb08ce085d132682c3e3,", + "modal.font.content.sm": "S:f2e10a30773ad893d3104d4c612c5a6bde6f5c58,", + "modal.font.header.dark": "S:a3fd15b7d470afc805b072dbf848d57469bb681c,", + "modal.font.header.lg": "S:82b11c9411411513150be795953c302451b0092e,", + "modal.font.header.light": "S:bb81170665255fe206e85bde8105d7d0e49230e8,", + "modal.font.header.md": "S:09bf67955036c958a09976e5162d4423b30b6a93,", + "modal.font.header.sm": "S:a4b9d004ad1b17fd1f98b1f2d5bf20d46e265ca1,", + "modal.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "modal.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "notice.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "notice.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "notice.font.message.dark": "S:7815f7fb82fdc4c4c26e1623790dffe9e187a466,", + "notice.font.message.lg": "S:09c48ee987903ee44f92b7fd85f5e4dea0ead949,", + "notice.font.message.light": "S:6cf383eac5cca5700a959ab59f20a865a46decd5,", + "notice.font.message.md": "S:914616baac8f924bb3068d03da85a3d7598a4eed,", + "notice.font.message.sm": "S:62cbe66d7a194cf143b483c76e81b3ef7faec7e4,", + "notice.font.title.dark": "S:a0ac87895a271a4c9bfda2ccc0254549ccbf2896,", + "notice.font.title.lg": "S:051bc74df8ad468b012d4a69124462a7bd88ac16,", + "notice.font.title.light": "S:d274bba017fa590088dca04c9015131da09237de,", + "notice.font.title.md": "S:bb08857b89d59fa3d1473495b191094ae721da80,", + "notice.font.title.sm": "S:3ce9291673796d12312501274a38efcf55f6b482,", + "notice.highlight.brand.dark": "S:238edd866a0fb63465a1a1a3dd99d48708e2e316,", + "notice.highlight.brand.light": "S:ff24217a653ee3bef7ad198f70f6fb26257629cd,", + "notice.highlight.danger.dark": "S:0e46e2198e037bc44bbb6337a3c3ae78af39b0b0,", + "notice.highlight.danger.light": "S:f9bf35d17558127d31e7aff5fa320f4a088093da,", + "notice.highlight.info.dark": "S:38d81b30b34e16721fe36b6df97e1fbaf12f73e3,", + "notice.highlight.info.light": "S:73e5b57b4b678a4b853265e33050f7fae69dc0b4,", + "notice.highlight.success.dark": "S:478c949da4555301573feaba90dc2dcee7a720a1,", + "notice.highlight.success.light": "S:88529531c4701433647c40e594e0b654e9014ba3,", + "notice.highlight.warning.dark": "S:721ebfc1b5023d7516126855b4e94e83bce6230c,", + "notice.highlight.warning.light": "S:66f48a97f5bf1594dd2cc055de30fa2cb471a1c8,", + "notice.icon.brand.dark": "S:a76eb181aefeef694685113d7815fe90b15aea69,", + "notice.icon.brand.light": "S:eedb21b228f1b8f494c9f162140a63406414686a,", + "notice.icon.danger.dark": "S:7d85d8810f8eb5b037e710a082cad64cfc5e1683,", + "notice.icon.danger.light": "S:cf8d2ab3ca68b0f621b36d3b2ca6f691b9506ac3,", + "notice.icon.info.dark": "S:4f96af66fb23e050160b1662d3c2655ea138f899,", + "notice.icon.info.light": "S:98207d369d594d10f790fc9bea415e4ea3e45335,", + "notice.icon.success.dark": "S:7d3d6b3d230ecb9151d3b878d06a91bb15672455,", + "notice.icon.success.light": "S:99de94ded284f960aa2039ad2d96df78a0c880c1,", + "notice.icon.warning.dark": "S:571c79bd43fa8f6ade105342cc4805ecdaa77c50,", + "notice.icon.warning.light": "S:81ea08fd5391ccfaa22bd5bcfbe0811ce14f314f,", "notice.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", - "alert.shadow": "S:da1daed980d1d213e4a1bef7afcb9221ee263cde,", - "action-pad-grid.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", - "action-pad-grid.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", - "action-pad-grid.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", - "action-pad.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", - "action-pad.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", - "action-pad.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", - "fab.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", - "fab.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", - "fab.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", - "fab.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", - "fab.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", - "fab.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", - "fab.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", - "fab.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", - "fab.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", - "fab.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", - "fab.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", - "fab.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", - "fab.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", - "fab.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", - "fab.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", - "fab.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", - "fab.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", - "fab.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", - "fab.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", - "fab.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", - "fab.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", - "fab.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", - "fab.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", - "fab.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", - "fab.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", - "fab.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", - "fab.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", - "fab.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", - "fab.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", - "fab.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", - "fab.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", - "fab.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", - "fab.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", - "fab.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", - "fab.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", - "fab.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", - "fab.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", - "fab.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", - "fab.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", - "fab.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", - "split-button.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", - "split-button.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", - "split-button.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", - "split-button.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", - "split-button.font.brand.outline.light": "S:a929ca685859c1fc5e7faf543728b2edf3b5f243,", - "split-button.font.brand.outline.dark": "S:7beb60e35440fb45e91d24d8acc14db5b1533bb4,", - "split-button.font.brand.transparent.light": "S:74cfdb55361a2fcfdf0e79657b1aa9b3e6cffb8c,", - "split-button.font.brand.transparent.dark": "S:8d19dd77778ab4642015721ce060bd7ec15f240d,", - "split-button.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", - "split-button.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", - "split-button.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", - "split-button.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", - "split-button.font.inverse.outline.light": "S:625d9574b0882315179cfc86548ed6471b4d016a,", - "split-button.font.inverse.outline.dark": "S:a58a68dd030763cd3b979f3c9c8b53d55cb9904b,", - "split-button.font.inverse.transparent.light": "S:57697b05e86e28fec3897f4cd70e8d71cd10ca9b,", - "split-button.font.inverse.transparent.dark": "S:c22b36e585444176b35d2985759be4ab13f7912f,", - "split-button.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", - "split-button.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", - "split-button.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", - "split-button.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", - "split-button.font.neutral.outline.light": "S:8f1c1a86e08810a6cc0ce7394e4c8ddf6cf7cb4d,", - "split-button.font.neutral.outline.dark": "S:c7418479a6a19078629d08ff0d250434dd7aa6d8,", - "split-button.font.neutral.transparent.light": "S:3d2e4e2536be873c087f6b6181332bf2ce825c42,", - "split-button.font.neutral.transparent.dark": "S:1a2ab9b9fdc12ddf69da58e4784f878a6c75fc66,", - "split-button.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", - "split-button.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", - "split-button.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", - "split-button.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", - "split-button.font.danger.outline.light": "S:9cfd1204a77cb867927a91597db7211a001d3a04,", - "split-button.font.danger.outline.dark": "S:9d611a3ad95a4e7c417d38dcf707aa9dfd4b1da8,", - "split-button.font.danger.transparent.light": "S:6399b4fb7079f55df8a107aa677eacad644890c9,", - "split-button.font.danger.transparent.dark": "S:957fbc6785acc68533d73f89c39099f0da9feaf9,", - "split-button.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", - "split-button.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", - "split-button.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", - "split-button.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", - "split-button.icon.brand.outline.light": "S:96930a17711f286e1a97b8b7ca57a1c37431a621,", - "split-button.icon.brand.outline.dark": "S:6a8c3b2e8887bf20eab6a4f1e3ae0ed577ec662b,", - "split-button.icon.brand.transparent.light": "S:e76ac2dd6b78f85c7892ae2f30e58e8325587168,", - "split-button.icon.brand.transparent.dark": "S:33667181ea79a9be22a25c217678cd18dd0018a4,", - "split-button.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", - "split-button.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", - "split-button.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", - "split-button.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", - "split-button.icon.inverse.outline.light": "S:80c8d7dcc226ba8c08f306b5c6729d81de95efb6,", - "split-button.icon.inverse.outline.dark": "S:9137cbda0b1d79a7a6daff11f72580e2a6fda301,", - "split-button.icon.inverse.transparent.light": "S:1d9ed9e6c0eca660882d7c5705d97d7eb4455e72,", - "split-button.icon.inverse.transparent.dark": "S:8a8366de3e4b5f5ac023b2c703cc641c21a4453b,", - "split-button.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", - "split-button.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", - "split-button.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", - "split-button.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", - "split-button.icon.neutral.outline.light": "S:933927902689b45a97c31f92ab03e1dabfa62bdb,", - "split-button.icon.neutral.outline.dark": "S:1d09040ccbfbdc3f8f89047c3eaab5dc24b7463c,", - "split-button.icon.neutral.transparent.light": "S:b3eb473ce8edf72285c36f6fb42680395ef7d7c1,", - "split-button.icon.neutral.transparent.dark": "S:060673768cd2545a55330e2a6c2c67e82627bbf2,", - "split-button.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", - "split-button.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", - "split-button.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", - "split-button.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", - "split-button.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", - "split-button.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", - "split-button.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", - "split-button.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", - "split-button.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", + "notice.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", + "notice.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", + "pagination.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "pagination.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "pagination.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "pagination.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "pagination.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "pagination.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "pagination.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "pagination.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "pagination.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "pagination.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "pagination.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "pagination.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "pagination.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "panel-header.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "panel-header.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "panel-header.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "panel-header.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "panel-header.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "panel-header.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", + "panel-header.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "panel-header.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "panel-header.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "panel-header.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "popover.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "popover.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "popover.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "popover.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "popover.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "popover.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "popover.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "popover.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "popover.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "popover.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "popover.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "popover.shadow.lg": "S:ca2d6acae938d750c3ebd78a6713350177c6c0c5,", + "popover.shadow.md": "S:d2c3cde852cf462e84414acac0b6f2c1f9e1003f,", + "popover.shadow.sm": "S:857dcbb04d49470c09751d4f20741e87985fecec,", + "radio.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "radio.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "radio.border.checked.dark": "S:3d7742ae7dae69c0768ae5d08d439cbaa2a7b078,", + "radio.border.checked.light": "S:f19b95f1c4240eb67ccce31f43a4a2b909fc9808,", + "radio.border.unchecked.dark": "S:318cf4c8f427f70be43a816f7091db13238a9282,", + "radio.border.unchecked.light": "S:d3f814c271446438e13819ae171d5ab92f739b18,", + "radio.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "radio.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "radio.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "radio.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "radio.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "rating.chip.count.font.dark": "S:57d5b0c18c9fb6fa98c8a2e627bb4355395289e2,", + "rating.chip.count.font.light": "S:9db37e98cba760e02da719f6c1f8e94a79ce6f47,", + "rating.chip.foreground.dark": "S:2c5f57a9414dade7ecd6d59f5d53e0cc2f811316,", + "rating.chip.foreground.light": "S:2a7ae900c56bdaed64830a000ab5f147e9a1871d,", + "rating.chip.value-text.font.dark": "S:0ab47c728381761f98384403f12dae2820e3227f,", + "rating.chip.value-text.font.lg": "S:4ca681a4eda0db296fad332696a6ed2e8fbbb86e,", + "rating.chip.value-text.font.light": "S:11423cc98fa9e43a0b42365d5ea5891e31085b0d,", + "rating.chip.value-text.font.md": "S:b10662274e31a3704323fc2cb94b1c233baaf571,", + "rating.chip.value-text.font.sm": "S:96101bf0744e53acc2166a2184aa7f8ae2c2b8c4,", + "rating.star.background.active.dark": "S:3f4cee2f66b1636cc5f5498324e084ba7fcfb60c,", + "rating.star.background.active.light": "S:9a8727139d8e167a07a102ceab10b6eb28d9a642,", + "rating.star.background.average.dark": "S:2b295f1ae1097dd5aa7d56c9401d7b054cadc945,", + "rating.star.background.average.light": "S:d1ada06fc9c905264006c3ce38ece1b10157bf48,", + "rating.star.background.default.dark": "S:2c69735b85675262be35962ab8d72d564660a8dc,", + "rating.star.background.default.light": "S:710775754e463031894aa2fcc269e8080b46a711,", + "scrim.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "scrim.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "segmented-control.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "segmented-control.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "segmented-control.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "segmented-control.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "segmented-control.font.checked.dark": "S:1b340cfe17153ee654d067cf22fbf1e890af9726,", + "segmented-control.font.checked.light": "S:40c18363bec74ce07c70ac651afcd442f0046da8,", + "segmented-control.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", + "segmented-control.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "segmented-control.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "segmented-control.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "segmented-control.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "segmented-control.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "segmented-control.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "semantic.font.bold.-1h": "S:afc0290f0e8fb7baf9ad9bff726fec5b8be566d9,", + "semantic.font.bold.-2h": "S:54987de2a104c16ec008edd20032edb6d16adfaf,", + "semantic.font.bold.-3h": "S:74e1fe3ed21e71c916dbef607e29b886cf764108,", + "semantic.font.bold.0h": "S:13ff638c61c8b19b2913899cf5b61e7e1282faaa,", + "semantic.font.bold.1h": "S:6ad42ea7d0e6098a9674409001eb003650d3896d,", + "semantic.font.bold.2h": "S:57de50a0932460e5ace3d04c7072d596f17d559f,", + "semantic.font.bold.3h": "S:79fb2dc506f1ab1d9a4953375ced8b8f19dfe781,", + "semantic.font.bold.4h": "S:dd24c176b4caa6cb3e89a040ba2602bf2fb98c90,", + "semantic.font.bold.5h": "S:b7529dcc211980b8569fb8a0b1c46a31706ee992,", + "semantic.font.bold.6h": "S:785975d1d0be4835b1cc9822775ab759871c7f36,", + "semantic.font.bold.7h": "S:4e8855d72d4c4ac54302dec14cf0ba54b5b4538b,", + "semantic.font.bold.8h": "S:90ba13a0083643ff299c27d4c1d54c505f3e0eff,", + "semantic.font.default.bold.-1h": "S:17b20c9348892cad57a5264d833eff914389be66,", + "semantic.font.default.bold.-2h": "S:542864c12a09091cd711ee99382dfb670da75d56,", + "semantic.font.default.bold.-3h": "S:f9691e3bc28d14127e0937c5709a6adac1abb1b1,", + "semantic.font.default.bold.0h": "S:36cc6065d5108adcd6fd5ae0a2dd7aae3ac9b7ab,", + "semantic.font.default.bold.1h": "S:7f20641af4349763385cccaa4c922507d0509bbb,", + "semantic.font.default.bold.2h": "S:7ffe88bbc64eb05102b59d71d053a9eec4e193a0,", + "semantic.font.default.bold.3h": "S:cd6d4da5cbd8097ce2998db554909e0d69681d29,", + "semantic.font.default.bold.4h": "S:6294f9009b4ca52cd74b62fc93429e5270c2e1e7,", + "semantic.font.default.bold.5h": "S:542a6d26a8c5de3ef75e36d3be6e4c77e3e47d47,", + "semantic.font.default.bold.6h": "S:fe0f1febd1e9d6d281b8598a68ed8491c4afc6d6,", + "semantic.font.default.bold.7h": "S:e44d20e160df29f5b8bb28d38b69ea93faf3b424,", + "semantic.font.default.bold.8h": "S:4b05ff3e5710321f82cf95d7e57335bc6ca4f1cb,", + "semantic.font.default.light.-1h": "S:d97c48634357f806ef3d1480c9656ef66fab7289,", + "semantic.font.default.light.-2h": "S:6d4d0ce7635f3287bc32b08ba7b014de59921559,", + "semantic.font.default.light.-3h": "S:448b8eef6afc320529c1511a5d210297c4b712da,", + "semantic.font.default.light.0h": "S:33d15e08a02cd7e1bdf1011762f6b9adfae79b27,", + "semantic.font.default.light.1h": "S:d1ffb1864e795d393f0095a4235916dc58a8259e,", + "semantic.font.default.light.2h": "S:0952400b4b67b69f03816c2f9c925db27c7d801f,", + "semantic.font.default.light.3h": "S:4ea96f94c15953429909c2b2dc15c3bb0b2815bf,", + "semantic.font.default.light.4h": "S:d64e93a9f77b74fa9349db68933422df14e8fb10,", + "semantic.font.default.light.5h": "S:0be059d62f7cfd1b86c5eb059707982ff5e32b23,", + "semantic.font.default.light.6h": "S:0fa03ed4d3b9f4473d72982137b02379de784218,", + "semantic.font.default.light.7h": "S:df73e52a2cdf830d1cee6bbc8c28905ca60a8dcb,", + "semantic.font.default.light.8h": "S:bbf4a7b49b5e20bfd25da69a7a1e081b3922727c,", + "semantic.font.default.medium.-1h": "S:06e0d4a94b16fa9a0c903e1b57f53d101fc775f2,", + "semantic.font.default.medium.-2h": "S:8a9b402b814f835cbc6842d324c047ea41ac92a8,", + "semantic.font.default.medium.-3h": "S:a68637f330054d193a760d2f79d0a8e643e9ec31,", + "semantic.font.default.medium.0h": "S:5ea926036783771ab1655f2b2ceb56250968522b,", + "semantic.font.default.medium.1h": "S:d540a3df6537a70aa5846a51abf53d8648ab1082,", + "semantic.font.default.medium.2h": "S:1472f2ed1508242eb3ec85d507371921258b2bbf,", + "semantic.font.default.medium.3h": "S:98c7c2afadd9444f79f3a87629fc6be454982068,", + "semantic.font.default.medium.4h": "S:371251870d9e73733636f040c0c06062eaeda112,", + "semantic.font.default.medium.5h": "S:4d391a8697373fd0fd8dac6cec59936e7c1598bd,", + "semantic.font.default.medium.6h": "S:5b77ac013b402efcd145ccf0d0719a9299958808,", + "semantic.font.default.medium.7h": "S:67029b6225ab20096df8da8ca9de08de43491255,", + "semantic.font.default.medium.8h": "S:b9869105637e6d3b5e4e789b9adab73c9b0b8723,", + "semantic.font.default.regular.-1h": "S:d226510a3405bab79fb709f0894da8ffe83f0f49,", + "semantic.font.default.regular.-2h": "S:c2ce2e62c26dd7e48297ebb52dd530aa12efe109,", + "semantic.font.default.regular.-3h": "S:e539f06b6ef0f93743d99f050c67d6496056799c,", + "semantic.font.default.regular.0h": "S:901d996f7d9fdb561034d4ec0e8e74ab5de106d8,", + "semantic.font.default.regular.1h": "S:c48245c10d68383746909343a54fdf5a920ae81c,", + "semantic.font.default.regular.2h": "S:9c34f9ed2b0abde711f5f65c08633627314a491b,", + "semantic.font.default.regular.3h": "S:f8ff4a752cb1cc3baeb4c4186543b98a592f6ac7,", + "semantic.font.default.regular.4h": "S:6a50b1b7c5a005593fd4fa8eec8230f8f783ef44,", + "semantic.font.default.regular.5h": "S:34db3a1662fbcf2c075d6e5b607b6bbb27a50948,", + "semantic.font.default.regular.6h": "S:e3f9d7e0f4439e711883b04d94c827dbfff20a8d,", + "semantic.font.default.regular.7h": "S:6683a70fc5ca1dd68eef7ba2656ba179376fe239,", + "semantic.font.default.regular.8h": "S:f33bdcf5723f8bd3ff9fbe33b6d07d1c18525ffd,", + "semantic.font.display-1-test": "S:b0d4d7bc167363796cc22131b7506da0005d7863,", + "semantic.font.display-1": "S:3908ae460ad228228b32977728619d2f97410f17,", + "semantic.font.display-2": "S:c72b65d3f49e7c447d079db3fc5ef9275048408e,", + "semantic.font.heading-1": "S:3ac8500f5c2ea4a2f581ef9830b9f14ab9a412a5,", + "semantic.font.hierarchy.body-1": "S:505abbdd354c8ea55e27b9a500e86276988eb9cf,", + "semantic.font.hierarchy.body-2": "S:c4d02b7fec5d9014e79420d18a7dcc4ad9ce4477,", + "semantic.font.hierarchy.caption": "S:b951134acc837c9c2e0fde5059666306d644a89e,", + "semantic.font.hierarchy.display-1": "S:594de2ae8f95a4557f94948efb92e719c44d8dc3,", + "semantic.font.hierarchy.display-2": "S:345ca489008fa931564b0874bd1e23c4e9d48aea,", + "semantic.font.hierarchy.heading-1": "S:94ccd91356c618934977da98b51a717b141c2b45,", + "semantic.font.hierarchy.heading-2": "S:d5452773dc8e3ac66d43ae15d64cdccb0e8a875e,", + "semantic.font.hierarchy.heading-3": "S:5a462c2c5c170b662f9be6536d6034c222ce5d64,", + "semantic.font.hierarchy.heading-4": "S:2fdd27077600a7745a2573719630a2818c9768be,", + "semantic.font.hierarchy.heading-5": "S:51757e80503233faa7a0102da2d6f7770d620f83,", + "semantic.font.hierarchy.heading-6": "S:b603d2e8c9cf762c51996f290b7e930bef26a327,", + "semantic.font.hierarchy.overline": "S:8c5923b6a044203bd88b4829f85ff177c9950004,", + "semantic.font.light.-1h": "S:41a42c10664cac8552b2ff92159cb94da1a15f17,", + "semantic.font.light.-2h": "S:7d9d98ca61e5ff92c4824f444d9e36566a110622,", + "semantic.font.light.-3h": "S:d917a24a859a39090dae167dcf139522ab4c00fe,", + "semantic.font.light.0h": "S:48f2a99a9ad071f1b74ff133854726c9c8f1ad20,", + "semantic.font.light.1h": "S:5ac4e421506815328561f54c775c5a47dc76e957,", + "semantic.font.light.2h": "S:7b41d3d15560c760dee773fe3694f398bb89d191,", + "semantic.font.light.3h": "S:c119256e31b846cbc8b8dfb0e40317681188a2aa,", + "semantic.font.light.4h": "S:6ea40e0a368ba6610af7cc697273299af4b6fa27,", + "semantic.font.light.5h": "S:120f2155e39a4868d99dd0b42dd0df4d25d45366,", + "semantic.font.light.6h": "S:29c477dbdecd38c9bd317dc4010f0f77b8e0abfe,", + "semantic.font.light.7h": "S:fa5595562700215efdfe5c7ec9e315e8ea7e0140,", + "semantic.font.light.8h": "S:93fddf863f558a7cbeb9544054758c91fcd9aeb8,", + "semantic.font.medium.-1h": "S:9c279a62473f5d6e7f332262770e86dd19ab9b78,", + "semantic.font.medium.-2h": "S:70149187f04293dcccbee57c2d9d67575682457b,", + "semantic.font.medium.-3h": "S:ae80a5f4726c4493ff4280767268f893973b3ad8,", + "semantic.font.medium.0h": "S:98376e7182cb61649fc4f31951a69f833c02dc72,", + "semantic.font.medium.1h": "S:6fa0a683940f133a73fef27114d53448874365e9,", + "semantic.font.medium.2h": "S:a2a9f75bb36072cca3417fdb4b33a9969dabccc1,", + "semantic.font.medium.3h": "S:5d8b4e59cbf1d93b48d93d84f5bdf96968471be4,", + "semantic.font.medium.4h": "S:0d9e7471d514f2f5c2612dcc1355a210b5743adb,", + "semantic.font.medium.5h": "S:38f1156392700dc1c05971a6f6109e14ae87581f,", + "semantic.font.medium.6h": "S:75a405bf79c648fcfdf865b536adac2b5a62b9b2,", + "semantic.font.medium.7h": "S:75ec0d2fbf3d3978849b50681b17521ee88ce3f9,", + "semantic.font.medium.8h": "S:2bb1e99b37056ff104b8a02f9feb339456162e3d,", + "semantic.font.regular.-1h": "S:1879faddf0d482e897938fc7d4f444c2e59449bc,", + "semantic.font.regular.-2h": "S:ece77df10a6171a84d85f019fc5a8b4ff8bacd81,", + "semantic.font.regular.-3h": "S:d8e9f7d48bf1c4c8ef34fec0c01e80861ec7b2e7,", + "semantic.font.regular.0h": "S:ffaf51da4055f171e094916e848d56e6ab362814,", + "semantic.font.regular.1h": "S:9038c74d0453e1386cddc4ff1936cbfe952cd45a,", + "semantic.font.regular.2h": "S:1e6361cfe1340a1803d911a2328558ab872e5939,", + "semantic.font.regular.3h": "S:b2830a45308bf76c337c849bb0cc20913c85a32b,", + "semantic.font.regular.4h": "S:b3d2a3f1202b88df4093c0d6122929e1b2b041f0,", + "semantic.font.regular.5h": "S:e0ea81ff2ed51c7a0cb0eca3ed77b2301f4de674,", + "semantic.font.regular.6h": "S:cd0a859b4e621d87ee62fe531235add537d77f80,", + "semantic.font.regular.7h": "S:c04ef88fd6999578353fcfba43ef70c7e4777aaa,", + "semantic.font.regular.8h": "S:f1d8e0979f4d155347b3c46efa83cdfa854008fb,", + "semantic.font.wrap.bold.-1": "S:c5860e8f1206a3d343390c9a915a8f3f58a0b336,", + "semantic.font.wrap.bold.-2": "S:7f2ba398b489c12db90e5045bb6f7027780a9b3b,", + "semantic.font.wrap.bold.-3": "S:4bca865601ab87f1d77f48d3e1de83d3dbac85a8,", + "semantic.font.wrap.bold.0": "S:ad11f6639ca0cd3d85cf993fbc95e7c9ad9ca269,", + "semantic.font.wrap.bold.1": "S:9313a06be8f7070400e6cfd7f7ff27939d6c6ed2,", + "semantic.font.wrap.bold.2": "S:abfb6349c8c060ad0abdb9ce2f363e08233be443,", + "semantic.font.wrap.bold.3": "S:6a08218bc036ca8a46513197790957e3bb9ca105,", + "semantic.font.wrap.bold.4": "S:4aaaf75ae7f4623fd87f62e8891a36efec7b371d,", + "semantic.font.wrap.bold.5": "S:f7fa8ece8ccab4931cfb0c5e19e970140da9576b,", + "semantic.font.wrap.bold.6": "S:122c69ab69b84f7f77c19a7d4500d945e434f81b,", + "semantic.font.wrap.bold.7": "S:2712dec933d765f4c2e0d201dbcb1fba43b266f3,", + "semantic.font.wrap.bold.8": "S:38b78db6105317957d23ba1adeb83432e7831f5c,", + "semantic.font.wrap.light.-1": "S:7841c5bab1ad63e397e9ac884b8ede26130fe2d8,", + "semantic.font.wrap.light.-2": "S:0575d1464658f6f8233739cd82ec2561a46e8199,", + "semantic.font.wrap.light.-3": "S:ec76af7e237bca56ab3b0eeece5616fc4c66893b,", + "semantic.font.wrap.light.0": "S:ad0064efc4ce82398d0acddf75cbd5e41f06f13d,", + "semantic.font.wrap.light.1": "S:fae87e50783ad1979337a90ab0271f6fd5a150b4,", + "semantic.font.wrap.light.2": "S:3bde43f8548be65880bce5d5c2ccb60a59afe03d,", + "semantic.font.wrap.light.3": "S:75de41b5080babbb13afaca2d11073e996b3b0ea,", + "semantic.font.wrap.light.4": "S:b9d229876f3242705efff7bfe110ca6baaf00f71,", + "semantic.font.wrap.light.5": "S:83e915d79c195eda8a98454dca5868f0225e1bd5,", + "semantic.font.wrap.light.6": "S:6e448d218245dbac9f250f5d6cac088005d5e3fd,", + "semantic.font.wrap.light.7": "S:2e650a9572119390bf68afb9cf7ac1ef2ff16aaa,", + "semantic.font.wrap.light.8": "S:bd6df56d4f7f06585fa5eb1c840507647377470d,", + "semantic.font.wrap.medium.-1": "S:4c6ca23bf1bd7002f101a347c3d9ad21ccbee0e1,", + "semantic.font.wrap.medium.-2": "S:526517080d04515a9580785dddc87f680a179488,", + "semantic.font.wrap.medium.-3": "S:018ce57cb92b0652178256efa6f21989100cf8b0,", + "semantic.font.wrap.medium.0": "S:8746d1c9ca0cd1cdd592df79ab2d61ee859b8071,", + "semantic.font.wrap.medium.1": "S:bfb563f71a916453ce2de93c6cad2fd3738cff6a,", + "semantic.font.wrap.medium.2": "S:7a2f4cdb73d54deed52c6b690c6863d76dbe55b2,", + "semantic.font.wrap.medium.3": "S:178f16dbb959a506aed5aff27b4f64ab33e204d3,", + "semantic.font.wrap.medium.4": "S:0100d6fb52cf898cd004a8752d03f5dfab4d7216,", + "semantic.font.wrap.medium.5": "S:9f7368f9e7cb233d4585c25f6e7b7b6ac9f1e857,", + "semantic.font.wrap.medium.6": "S:1ad763f1dc801bceed5a8c2027fa2a357c1fcf55,", + "semantic.font.wrap.medium.7": "S:1e0e5b711985bce690c3e32dd663eae62fe99dcb,", + "semantic.font.wrap.medium.8": "S:ad7eb3080e7540ca64cb61b2b599c73a73da2e9b,", + "semantic.font.wrap.regular.-1": "S:8cfb200ba516a6a75a81538c8d9a5273692f7b91,", + "semantic.font.wrap.regular.-2": "S:79bfcbc46d7482725a02f917f86341342900cc4c,", + "semantic.font.wrap.regular.-3": "S:791af7d01240411e1aada55cc97dd03f9e9a447a,", + "semantic.font.wrap.regular.0": "S:66b886195444d65889657f414927f31bcf090174,", + "semantic.font.wrap.regular.1": "S:34fdc8e0ee010877423e5f7bad26f54e5f4c1ec4,", + "semantic.font.wrap.regular.2": "S:2e82a159ce76ed0c68d7a20f72c38807a69ad104,", + "semantic.font.wrap.regular.3": "S:9e278573c267b7f30f5719e73b1d21105edf49a9,", + "semantic.font.wrap.regular.4": "S:f52208a0d4984cff2d733adce9803ea89a41cc55,", + "semantic.font.wrap.regular.5": "S:a5d4a2bfedfd60bcc6d076cb87053eb396109863,", + "semantic.font.wrap.regular.6": "S:a7a9d92ab31a81a26ff26d3f8193670dabe1cfdf,", + "semantic.font.wrap.regular.7": "S:879ab6791a3c5b321e06c04b83ca30528264ff54,", + "semantic.font.wrap.regular.8": "S:a9f87e2be6eaf5de030dfa0f406f14f6d26369b2,", + "semantic.font.wrapping.bold.-1": "S:34834145994f92bec7a333b947d8b9eaa7eed441,", + "semantic.font.wrapping.bold.-1h": "S:096d9eb81f8e805709076fb461775a16bf13252d,", + "semantic.font.wrapping.bold.-2": "S:fccaf371d4a50fab1cf59e36c9324d2b70ebc768,", + "semantic.font.wrapping.bold.-2h": "S:9893c9a54f3f499a7dfaae4b5160a0410cfe201f,", + "semantic.font.wrapping.bold.-3": "S:38e29095e52427292becf2a07133494088ca419b,", + "semantic.font.wrapping.bold.-3h": "S:d850a3285afd70187933dcefde351826a2ab4421,", + "semantic.font.wrapping.bold.0": "S:917c7a64033126eccc69db8bd968cd0dd498d939,", + "semantic.font.wrapping.bold.0h": "S:29a9492ae0534a958fae5dee6e8ebbc31da4dbc4,", + "semantic.font.wrapping.bold.1": "S:d4eee929079375e0064e846e5870015589d518ca,", + "semantic.font.wrapping.bold.1h": "S:ab40b80067ee6a60ebc8885ea72e9de35d61af94,", + "semantic.font.wrapping.bold.2": "S:af8a51d8ba41c70e1c3b1697b60e921d88689711,", + "semantic.font.wrapping.bold.2h": "S:3c5efcb6933c025c0e1cf01165d62041164fcd40,", + "semantic.font.wrapping.bold.3": "S:b4852b0be0981ec1787c5d722adbbfc6d5c266b3,", + "semantic.font.wrapping.bold.3h": "S:06447d383a003f3c88cadd7c9f250fb214736e98,", + "semantic.font.wrapping.bold.4": "S:f08bdc520fd89c87742b0b1b4e4e442092f86012,", + "semantic.font.wrapping.bold.4h": "S:b4a780b011a33d002948112bb416b714f7b123c8,", + "semantic.font.wrapping.bold.5": "S:a1405c36d478386dc67d3a6b73d29c3be503ef93,", + "semantic.font.wrapping.bold.5h": "S:8fa5f15bd1fb010f583f3fb12b906e0d9285413c,", + "semantic.font.wrapping.bold.6": "S:a99e517e6bb191dc09dbfbbce437b9324651d7e9,", + "semantic.font.wrapping.bold.6h": "S:41d232ec184e91d46ad683ade599479502bd5181,", + "semantic.font.wrapping.bold.7": "S:86472102db19e2c62177988f56cf744939df48e2,", + "semantic.font.wrapping.bold.7h": "S:bab15397ed5452670a6f43ff9a5210fc916322c5,", + "semantic.font.wrapping.bold.8": "S:a21b6e042f01932b77253d57f4b55aff27ed3b63,", + "semantic.font.wrapping.bold.8h": "S:48bd2701339b08ee740c49cd2580a3fb1cd10d66,", + "semantic.font.wrapping.light.-1": "S:f946e6758a0b51022d945e7be04a98b0c97270aa,", + "semantic.font.wrapping.light.-1h": "S:7d5607ce2f79b191231ea47515b838f93ddf9388,", + "semantic.font.wrapping.light.-2": "S:08e0a34c1836c454034a0ebcf5ec086f5b8aa98d,", + "semantic.font.wrapping.light.-3": "S:e416e183b73c084e64000363006ae8e638a4cda6,", + "semantic.font.wrapping.light.0": "S:113f831b8d4eac459cfb910c10d41f364a7650be,", + "semantic.font.wrapping.light.0h": "S:64cb9b370ec3140288917788fef523db4b846891,", + "semantic.font.wrapping.light.1": "S:756607e0d76385140aec36f60e8e4d6fddb1c294,", + "semantic.font.wrapping.light.1h": "S:22669e14596dd9e73f2520b84daa1aca2fd2ffef,", + "semantic.font.wrapping.light.2": "S:d03d8531bddad250b454fc8901a8ee1614143a9a,", + "semantic.font.wrapping.light.2h": "S:b5fbfb0f54913882667342e8c941e22f0bfe3df8,", + "semantic.font.wrapping.light.3": "S:60eb6812611bf886d71d6c0da79d5d7295b55b2b,", + "semantic.font.wrapping.light.3h": "S:6d2bd2e26741c6deee50e21596e235dc1c5d51d7,", + "semantic.font.wrapping.light.4": "S:3647f0fbad20b1446d9292740c1222fc3ddeb3a6,", + "semantic.font.wrapping.light.4h": "S:cc3b324e2dbbf72a3b37973d9e25b6317cfaf211,", + "semantic.font.wrapping.light.5": "S:c537b1cdf454812c9042151ad3ab4fc0457e1271,", + "semantic.font.wrapping.light.5h": "S:efac4ecfb07343b1702ab2bbb53c606a68a1e419,", + "semantic.font.wrapping.light.6": "S:3b0d909906ece8612086fb8adac9d3f648835dd0,", + "semantic.font.wrapping.light.6h": "S:41b47b0d3b3922bfb0ac880cbdb71eb11be525d3,", + "semantic.font.wrapping.light.7": "S:b2c4b4a3047ce3df1c6e5b19c3ed7e4552330a80,", + "semantic.font.wrapping.light.7h": "S:bf49b73700a5295469458598fa90b002b3da6c9f,", + "semantic.font.wrapping.light.8": "S:9c92241cf0731a766c3940579c515f6ab3b268a6,", + "semantic.font.wrapping.light.8h": "S:8dbb8043d1e6858c83ef34f427669565b3c3d3be,", + "semantic.font.wrapping.light.n2": "S:cf4c89f57c59a408e3e688f08e8dfe7083017a40,", + "semantic.font.wrapping.light.n3": "S:5665474cab8abc84be2705aa2d69e8302fe677fa,", + "semantic.font.wrapping.medium.-1": "S:3a3bd94c35c16515f2a0359b652d42b5dd2cbbf8,", + "semantic.font.wrapping.medium.-1h": "S:a411144833698582d3d667404dff1c51d2ed725c,", + "semantic.font.wrapping.medium.-2": "S:2a7a56dc8b354813beaf12f604f16a26b6814771,", + "semantic.font.wrapping.medium.-2h": "S:fb800221a3cc1ad6c0e9b14b379ce58e167da83f,", + "semantic.font.wrapping.medium.-3": "S:c9a84529355c15890d2864307005bcb3d4847467,", + "semantic.font.wrapping.medium.-3h": "S:ec4e52ddea42eec376994a43052c4f9c16a7cbfa,", + "semantic.font.wrapping.medium.0": "S:532ef8eccd614a5963a4aa27009d31fb4fe8a35e,", + "semantic.font.wrapping.medium.0h": "S:d6ae2776b675b0f9eb564b44e99fc247c45f20cc,", + "semantic.font.wrapping.medium.1": "S:952134daee976a592dc6f6f7843abc2a14613517,", + "semantic.font.wrapping.medium.1h": "S:10ed6f259577740921f0226a151f4e2379a15cc0,", + "semantic.font.wrapping.medium.2": "S:dbf32e14f8e1af618fa6ed7b89832d0199cdbbe7,", + "semantic.font.wrapping.medium.2h": "S:bc9fd61e570cc6bc9aaafe718bf78db6ee3862b7,", + "semantic.font.wrapping.medium.3": "S:74b153aa2274761787a00f8d597e177c0c8ae156,", + "semantic.font.wrapping.medium.3h": "S:099644cf284e0306b20d6bea591e7db75381d127,", + "semantic.font.wrapping.medium.4": "S:5754b750f761f362d909ece08b2a1989c189c79a,", + "semantic.font.wrapping.medium.4h": "S:4765244dfd91378cbd3a47104ed37dd9bf139848,", + "semantic.font.wrapping.medium.5": "S:adeb5a4879deea63d3b39115982fddeb96695995,", + "semantic.font.wrapping.medium.5h": "S:1f5783b0aa42c6c0235127937321cc341fdab1e4,", + "semantic.font.wrapping.medium.6": "S:5c0cc86a0e71da11b32e78b20ef5d232c62d71c9,", + "semantic.font.wrapping.medium.6h": "S:892f02f91c67b2dcd3f586d4c180fe3d9a870688,", + "semantic.font.wrapping.medium.7": "S:7e74e5fa71c9d7721911109403acacadfd5d1886,", + "semantic.font.wrapping.medium.7h": "S:832105a39b64eb3926a02b769557f720b54938e1,", + "semantic.font.wrapping.medium.8": "S:af3218e4f407567b02c85f23478def7e0d13ee06,", + "semantic.font.wrapping.medium.8h": "S:7b5043b79a37059a778abd119382fdd5b309d2e7,", + "semantic.font.wrapping.regular.-1": "S:44f275922a5f812dd35a1b5c9661be216858d0cd,", + "semantic.font.wrapping.regular.-1h": "S:2e196f5c5e7c32d117284ded47f7f45273793bfd,", + "semantic.font.wrapping.regular.-2": "S:86e370f21e78dfffe4e9f27ffde18362d80690b5,", + "semantic.font.wrapping.regular.-2h": "S:4963b538987c7b13e56c0b9c07057100cdae43c2,", + "semantic.font.wrapping.regular.-3": "S:2c6201ae8e5129bb584c9ebf6fef2c41aa86151a,", + "semantic.font.wrapping.regular.-3h": "S:95bd0ec306fc4ecb06beb9e3f8ef1b70ec4ab3ce,", + "semantic.font.wrapping.regular.0": "S:5f3490d2050259d369305982098622c44c2dab06,", + "semantic.font.wrapping.regular.0h": "S:fbf67c0034046d7bac320ee08ea5885f1482650d,", + "semantic.font.wrapping.regular.1": "S:df8c76e1fd0be66a6287ea3f66f7bec91fc1825e,", + "semantic.font.wrapping.regular.1h": "S:1c59f0bdd16fe7eabc3050d6c2060d9e4db16013,", + "semantic.font.wrapping.regular.2": "S:c07cbd78844e0bb1528865d0452cf8893949b636,", + "semantic.font.wrapping.regular.2h": "S:8a14bc83f10446d8e33596b4d1d426e8166ace29,", + "semantic.font.wrapping.regular.3": "S:ae027baf13e3d1c3660d2d83818279f97a4e3ac9,", + "semantic.font.wrapping.regular.3h": "S:9026e0ed6c84daf72eaa6e51d531ec90ae7d9d35,", + "semantic.font.wrapping.regular.4": "S:ce40c187eed0a936b401c929a482f7d975847db8,", + "semantic.font.wrapping.regular.4h": "S:24867b4f3e3261525bd1267252770636ccc9dded,", + "semantic.font.wrapping.regular.5": "S:86951b5e8e7111c7d62495daaf005500db7c11d0,", + "semantic.font.wrapping.regular.5h": "S:6e0d53181badbc5fe14a38a6bac8a59b88de31c2,", + "semantic.font.wrapping.regular.6": "S:ac54e3ad5795302455b5d1823cc7c975e497c6c1,", + "semantic.font.wrapping.regular.6h": "S:57d397ef4a04b69770d84a5fc824ca8352c307cc,", + "semantic.font.wrapping.regular.7": "S:9a862e09d1b46c2ac4a6d7c089e8a321cc415c35,", + "semantic.font.wrapping.regular.7h": "S:e0795eb7972feaa6fd068085a3ef8e133f2f6bf2,", + "semantic.font.wrapping.regular.8": "S:014f151c0c3493e989c00fc90ee397929c0d1077,", + "semantic.font.wrapping.regular.8h": "S:1e83ab4937424408e5b20600c16dcd643a929ef2,", + "semantic.ui.color.background.dark": "S:25ddbb665ba99d050fcfd4a1eca4307eac11f69b,", + "semantic.ui.color.background.light": "S:306f58c70f1ef21336c630a511f67008734c7695,", + "semantic.ui.color.border.1.dark": "S:de10c926746cf058e312d25bbe1293923913ea3a,", + "semantic.ui.color.border.1.light": "S:a96ee43d9f87e727e1d163dae97e943aa9748f52,", + "semantic.ui.color.border.2.dark": "S:d5b02aa93adc37c2cb7f7ad09e2c9936fef1af79,", + "semantic.ui.color.border.2.light": "S:c34ac7fe01960d487e1340a413d05bbbce372b8c,", + "semantic.ui.color.border.3.dark": "S:72dc2b15e848a591fce54e9a782b31cfd35f69ea,", + "semantic.ui.color.border.3.light": "S:99c548dfdede861e5b4ca80c8e0e27a8ffd970b2,", + "semantic.ui.color.border.input.dark": "S:9b2d20bd17e3afe23b7555baba0542ed04718efa,", + "semantic.ui.color.border.input.light": "S:05a96982b292c82f827ed448b7d1b1b73112f0ff,", + "semantic.ui.color.brand.default.dark": "S:ff86eaace467ba24e95a7f0d1ca36e2e3dc13c36,", + "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", + "semantic.ui.color.brand.hover.dark": "S:5e594584b58499f6ff3a7585e6f5cfac871c883a,", + "semantic.ui.color.brand.hover.light": "S:875002e4989b5f6f33ba973f006d3047f2b75ec8,", + "semantic.ui.color.brand.press.dark": "S:913695f5e3dcf642406582f6968dd8d79ec5d4e3,", + "semantic.ui.color.brand.press.light": "S:1cdfc0334a4e2836371c621c8bbe1b3eae058378,", + "semantic.ui.color.danger.default.dark": "S:bcd9526377574c8aa55265c56efe052ee58106e5,", + "semantic.ui.color.danger.default.light": "S:d9e760f9671a60e78405554f0d6136d5d8da409a,", + "semantic.ui.color.danger.hover.dark": "S:3bc83d4c69f16109138ff03bd2c9305f9ca12b55,", + "semantic.ui.color.danger.hover.light": "S:3248a4c66f727779f4aa07e18ad426c7700efe27,", + "semantic.ui.color.danger.press.dark": "S:c7a0d083475a2dbaa3b2c5cee77b93b306523975,", + "semantic.ui.color.danger.press.light": "S:0317416c5e7ce3abeaf8c10beef54611785cedd1,", + "semantic.ui.color.foreground.1.dark": "S:ce0f83b6569b348b76c4640824e2d0a656e6275c,", + "semantic.ui.color.foreground.1.light": "S:9dd422cbb46d827a6a16c08ceec1c4b521f43d1a,", + "semantic.ui.color.foreground.2.dark": "S:f260c383d532520db9d12e649a880b2cfb7b8e24,", + "semantic.ui.color.foreground.2.light": "S:a31002f2b1a51bd4fedafbf593735a26461b3a7d,", + "semantic.ui.color.foreground.3.dark": "S:b6288fc1b16cd947843f0b1d5b1fc659c3d5e4ad,", + "semantic.ui.color.foreground.3.light": "S:a9d51394e6365799ec9946a3f10d571337ad925a,", + "semantic.ui.color.foreground.current.dark": "S:7843aa25183f4168e7e37abc38238f90178fbe20,", + "semantic.ui.color.foreground.current.light": "S:6f322dcea6ed2d12012f28be4a31b05432ece061,", + "semantic.ui.color.info.default.dark": "S:8941782f2e8868518a8fba39df6bc1cea8fd42d6,", + "semantic.ui.color.info.default.light": "S:bc35ccb3f80820fad15134da4de9ca7ca618e760,", + "semantic.ui.color.info.hover.dark": "S:23f26a31cedad39725a8c7549d93d5d427a3298e,", + "semantic.ui.color.info.hover.light": "S:1e1db2e409ab5142882dcca056f99a725da762e1,", + "semantic.ui.color.info.press.dark": "S:27a9a23a009acf6a0e1491af580f2483da196ae4,", + "semantic.ui.color.info.press.light": "S:1532ddb6aa0fc5804f9c7abe7a09f5bb3171e400,", + "semantic.ui.color.inverse.dark": "S:a32fdc05568e2e4282b4836265cb5687e2521e91,", + "semantic.ui.color.inverse.light": "S:5b474932a5a9f9d8b7c02009b7a5100290ee961c,", + "semantic.ui.color.success.default.dark": "S:a4377176e8858a49ec7bb8466e663377b9bbe1c0,", + "semantic.ui.color.success.default.light": "S:c7736e420c97f32c40c2aff9ba2dc3f35cfc4692,", + "semantic.ui.color.success.hover.dark": "S:370f35e29a3a78b921a889a3b667ee01f0500cca,", + "semantic.ui.color.success.hover.light": "S:aadf659591f998182a22a593a71e4b8b2647ee00,", + "semantic.ui.color.success.press.dark": "S:c11d3d9223c0c3ffe3e32bedd5d6e04f56b6befd,", + "semantic.ui.color.success.press.light": "S:65bb5e488168506c092284ea9943854bee4d8f60,", + "semantic.ui.color.text.1.dark": "S:e21a0c3c8d5a685ab9c217f711d86e4e0d7c14b2,", + "semantic.ui.color.text.1.light": "S:8c8054c9d1acdad360937d1e87b39868b4a30cdb,", + "semantic.ui.color.text.2.dark": "S:a7860d0a07d9c233bc07a62703bf53a65a12accf,", + "semantic.ui.color.text.2.light": "S:5a28ed5672ec6dd9950a05742f3be134c44c2d51,", + "semantic.ui.color.text.3.dark": "S:3783278595fbf16ede70a66d09553f69b13b53a5,", + "semantic.ui.color.text.3.light": "S:ff1caa6a3822f4a34a62a44f8f98f63a1940fd73,", + "semantic.ui.color.text.inverse.dark": "S:73a7f9d57384b11dc91f8bacd71aa73ee3768a17,", + "semantic.ui.color.text.inverse.light": "S:f1e9b8d6929f1e925d6fa3f1c0964ab856d616d3,", + "semantic.ui.color.text.link.dark": "S:a5f800dd18722eff9d0f9bec0656826fedee956b,", + "semantic.ui.color.text.link.light": "S:325ed178e00c12b2ed52ba1a50938d96244776ee,", + "semantic.ui.color.warning.default.dark": "S:de4aea1e80c12dbbacaf32f2839123028a90ccb4,", + "semantic.ui.color.warning.default.light": "S:a5f527c61c655c43a0032fe9357db48396daa2ac,", + "semantic.ui.color.warning.hover.dark": "S:c004e1251a7e8ab8dda7d53acd286eea6b8da229,", + "semantic.ui.color.warning.hover.light": "S:b6f88f4f688d7ba49a0ffe93f8a3476b930f05c3,", + "semantic.ui.color.warning.press.dark": "S:463b75a567d4495c2cb746fdc8292f0b9f661548,", + "semantic.ui.color.warning.press.light": "S:864044c19214493bb045462f0fead60fe6c064aa,", + "slider-histogram-range.area.active.background.dark": "S:91077d887efcf9f4b14ad27f16be3585dc657cdf,", + "slider-histogram-range.area.active.background.light": "S:c89c4d11164ed977c2c0e97abe8f82386ac87c7f,", + "slider-histogram-range.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "slider-histogram-range.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "slider-histogram-range.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "slider-histogram-range.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "slider-histogram-range.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "slider-histogram-range.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "slider-histogram-range.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "slider-histogram-range.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "slider-histogram-range.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "slider-histogram-range.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", + "slider-histogram-range.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", + "slider-histogram-range.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", + "slider-histogram-range.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", + "slider-histogram-range.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", + "slider-histogram-range.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", + "slider-histogram-range.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", + "slider-histogram-range.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", + "slider-histogram-range.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", + "slider-histogram-range.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", + "slider-histogram-range.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", + "slider-histogram-range.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", + "slider-histogram-range.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", + "slider-histogram-range.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", + "slider-histogram-range.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", + "slider-histogram-range.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", + "slider-histogram-range.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", + "slider-histogram.active-end.background.dark": "S:42a2ced53672247a20f98edb87562a99a5aca41d,", + "slider-histogram.active-end.background.light": "S:8d8d3af5d1021f90b1327dc018d5dd21e6c43693,", + "slider-histogram.area.active.background.dark": "S:91077d887efcf9f4b14ad27f16be3585dc657cdf,", + "slider-histogram.area.active.background.light": "S:c89c4d11164ed977c2c0e97abe8f82386ac87c7f,", + "slider-histogram.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "slider-histogram.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "slider-histogram.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "slider-histogram.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "slider-histogram.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "slider-histogram.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "slider-histogram.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "slider-histogram.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "slider-histogram.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "slider-histogram.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", + "slider-histogram.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", + "slider-histogram.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", + "slider-histogram.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", + "slider-histogram.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", + "slider-histogram.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", + "slider-histogram.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", + "slider-histogram.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", + "slider-histogram.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", + "slider-histogram.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", + "slider-histogram.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", + "slider-histogram.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", + "slider-histogram.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", + "slider-histogram.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", + "slider-histogram.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", + "slider-histogram.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", + "slider-histogram.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", + "slider-range.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "slider-range.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "slider-range.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "slider-range.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "slider-range.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "slider-range.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "slider-range.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "slider-range.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "slider-range.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "slider-range.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", + "slider-range.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", + "slider-range.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", + "slider-range.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", + "slider-range.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", + "slider-range.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", + "slider-range.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", + "slider-range.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", + "slider-range.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", + "slider-range.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", + "slider-range.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", + "slider-range.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", + "slider-range.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", + "slider-range.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", + "slider-range.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", + "slider-range.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", + "slider-range.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", + "slider.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "slider.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "slider.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "slider.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "slider.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "slider.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "slider.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "slider.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "slider.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "slider.font.tick-label.dark": "S:b91db31036b50c78584bddf19f36ab31a2867a37,", + "slider.font.tick-label.lg": "S:75881336da46200a6fe2fb621be4114f82e4af64,", + "slider.font.tick-label.light": "S:70c1eab41ae51d36b9a4f1139cca4a5e8ffda7ee,", + "slider.font.tick-label.md": "S:321b3921a87236af39a5eab697791ce58540a2d3,", + "slider.font.tick-label.sm": "S:b45e1eb5227a0c01f4ef32c5bb9fb4a897280c93,", + "slider.handle.background.dark": "S:8986d2d861230b1d089a1f78acf689f32ca4adf8,", + "slider.handle.background.light": "S:e6e2e5b15dd33811956ce50738845177a358c190,", + "slider.handle.border.dark": "S:608332e50040d3a5e11a5442b64d2490009407da,", + "slider.handle.border.light": "S:a364bef85b39bd118cabfb5a30f1b5d5ab99933b,", + "slider.tick.active.background.dark": "S:3ca4d5d91b0827f03e490af079643013549b1c26,", + "slider.tick.active.background.light": "S:902b50699d209d3f66203ab521c49b188a937c9e,", + "slider.tick.active.border.dark": "S:793c02b992a588b7257ad4f2e5174860ce6aa273,", + "slider.tick.active.border.light": "S:bf31a3b3002f7aa2a614bb80616b397e817917c3,", + "slider.tick.default.background.dark": "S:3163d4f685ffaf66ba7312108f7c3f5ebcd6abe4,", + "slider.tick.default.background.light": "S:95b44713d590b4da728346454dda8b0f0044d39c,", + "slider.tick.default.border.dark": "S:ca8cad0b4caa27cc39c26f95d48812469bb38b78,", + "slider.tick.default.border.light": "S:0b443dc8447adf96b6a42f5b49413fd2049e6471,", + "split-button.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", + "split-button.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", + "split-button.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", + "split-button.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", + "split-button.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", + "split-button.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", + "split-button.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", + "split-button.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", + "split-button.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", + "split-button.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", + "split-button.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", + "split-button.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", + "split-button.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", + "split-button.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", + "split-button.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", + "split-button.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", "split-button.border.brand.outline-fill.dark": "S:8cf9a289bd0941513d5c87b9f56f08dca0e706d5,", - "split-button.border.brand.outline.light": "S:5942ca53e46c9c4d7505a40a90b90a8ae3c87afa,", + "split-button.border.brand.outline-fill.light": "S:62c0774ad6ce9511677ac96bc26b27aa20c0f764,", "split-button.border.brand.outline.dark": "S:1206b15553941f23d821e3ac2e2356e86733333c,", - "split-button.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", + "split-button.border.brand.outline.light": "S:5942ca53e46c9c4d7505a40a90b90a8ae3c87afa,", + "split-button.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", + "split-button.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", + "split-button.border.danger.outline.dark": "S:34e2d7edfe99cdb6833425e7d33f7269e801bd35,", + "split-button.border.danger.outline.light": "S:dac592a30b402672ee19c38cee360264a7823546,", "split-button.border.inverse.outline-fill.dark": "S:4884ebb6c0dee956a73b02ede0064c95fb82aa2e,", - "split-button.border.inverse.outline.light": "S:75364b4f0c001e011435396de3da6507780ce7d2,", + "split-button.border.inverse.outline-fill.light": "S:7bbc07ccb6c8f25e37398a0da56cc813e98fc1be,", "split-button.border.inverse.outline.dark": "S:0f0f21f139a36b68f9c46a82a4f3a0d871225328,", - "split-button.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", + "split-button.border.inverse.outline.light": "S:75364b4f0c001e011435396de3da6507780ce7d2,", "split-button.border.neutral.outline-fill.dark": "S:23b1a1778fd5e6e9781957e4482f70aa15e5882a,", - "split-button.border.neutral.outline.light": "S:17b18a49ebbd56a80e8d4f01b445d0e3203788a6,", + "split-button.border.neutral.outline-fill.light": "S:497264411bb2a951c9800e7c97d3f075243ef249,", "split-button.border.neutral.outline.dark": "S:e31fa7bb3960cdf35f11e1a4f512773f5504100b,", - "split-button.border.danger.outline-fill.light": "S:98f004dc58d8984e13da424d8533268a6a76bfbe,", - "split-button.border.danger.outline-fill.dark": "S:877a5834cefc4549d1e853b6cdb36fa19e4cd8df,", - "split-button.border.danger.outline.light": "S:dac592a30b402672ee19c38cee360264a7823546,", - "split-button.border.danger.outline.dark": "S:34e2d7edfe99cdb6833425e7d33f7269e801bd35,", - "split-button.background.brand.solid.light": "S:dd9bb7dad71d92ee3c7cc2026d03ab89f2a9691b,", - "split-button.background.brand.solid.dark": "S:c4f155329acd3fa825039e112cd4ea09fb3ea4a3,", - "split-button.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", - "split-button.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", - "split-button.background.inverse.solid.light": "S:ff4c2b0cfc2189392cf61c2a7b3a8c11cd22731a,", - "split-button.background.inverse.solid.dark": "S:ab5f338c53c3aeffa576ca66a6bc96e6f829e8c3,", - "split-button.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", - "split-button.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", - "split-button.background.neutral.solid.light": "S:ac255c63a366d9fbb483dc43240b43953c87fdbd,", - "split-button.background.neutral.solid.dark": "S:5179f1ca6dd4eef2586d0fd1010dd65b5f144bdb,", - "split-button.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", - "split-button.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", - "split-button.background.danger.solid.light": "S:13047564e6421aa299765a9d27307c185f65f175,", - "split-button.background.danger.solid.dark": "S:e27adfeb093144a23d471200ac2cffce91ab700c,", - "split-button.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", - "split-button.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", - "split-button.divider.brand.solid.light": "S:f3907b1e2011db5bc8ba8b32d7c7754fe6a0cf12,", - "split-button.divider.brand.solid.dark": "S:040643b017550540295e39af834ce0727e36f417,", - "split-button.divider.brand.outline-fill.light": "S:09abf747e710b5189b9d5af8efdb236965e6d2b0,", + "split-button.border.neutral.outline.light": "S:17b18a49ebbd56a80e8d4f01b445d0e3203788a6,", "split-button.divider.brand.outline-fill.dark": "S:e0361488773a28bde3a43e62be9c915182875306,", - "split-button.divider.brand.outline.light": "S:ae414b1b2e1500191e28a3a35a78a0b2d5021c90,", + "split-button.divider.brand.outline-fill.light": "S:09abf747e710b5189b9d5af8efdb236965e6d2b0,", "split-button.divider.brand.outline.dark": "S:7ca95385d3cd6c3ca0d7b3ccc310c85278d604ed,", - "split-button.divider.brand.transparent.light": "S:004ebd42468b602354cd292b48a24f09a1018c12,", + "split-button.divider.brand.outline.light": "S:ae414b1b2e1500191e28a3a35a78a0b2d5021c90,", + "split-button.divider.brand.solid.dark": "S:040643b017550540295e39af834ce0727e36f417,", + "split-button.divider.brand.solid.light": "S:f3907b1e2011db5bc8ba8b32d7c7754fe6a0cf12,", "split-button.divider.brand.transparent.dark": "S:011a75726685c59fbf16ae6fd2892432fca29be7,", - "split-button.divider.inverse.solid.light": "S:faf949f46b9e98d76d764c162c84e7bf3c805a87,", - "split-button.divider.inverse.solid.dark": "S:f9e5f06c0f90df05499ff6434746b6d0526dea76,", - "split-button.divider.inverse.outline-fill.light": "S:68d0d54f9077da4ed71eea134ad69991c5aaadc4,", - "split-button.divider.inverse.outline-fill.dark": "S:9688a5c1b2ad5999da192aaec45a351b0f61f39a,", - "split-button.divider.inverse.outline.light": "S:7d2abc11aa11557bcad0b7159a3b985bf7404c7a,", - "split-button.divider.inverse.outline.dark": "S:e29086325428f3768ae9b3d8032ed138b540678b,", - "split-button.divider.inverse.transparent.light": "S:0494750a4ce6c87ba5342bda04dfe3e1b2386731,", - "split-button.divider.inverse.transparent.dark": "S:73e30ccc276621b7c5cbeee15af9059ef6493b3f,", - "split-button.divider.neutral.solid.light": "S:d5d34078e8f8dce2d1074fe937570512618640e2,", - "split-button.divider.neutral.solid.dark": "S:868fd537733d832e99361df22c7105babc381c74,", - "split-button.divider.neutral.outline-fill.light": "S:9064dd0f28564e0d1f06da3fcf24064d1367330e,", - "split-button.divider.neutral.outline-fill.dark": "S:5dcceed203792587cd24998549207702559d0aea,", - "split-button.divider.neutral.outline.light": "S:361671e08751c062c80ff7acd1a9662961d7c2b6,", - "split-button.divider.neutral.outline.dark": "S:005eb1c4d9a870d9fa7325a7717b83b8aab81cd2,", - "split-button.divider.neutral.transparent.light": "S:f071a60687f9e060f9c0b71d3a6e0efe789a630e,", - "split-button.divider.neutral.transparent.dark": "S:edc8287cffd2b3249f8fdf66b3426058c2eb464c,", - "split-button.divider.danger.solid.light": "S:7326ee571ba5b45ef2f5341103dcc6ca4f55f20d,", - "split-button.divider.danger.solid.dark": "S:4e3d4364749947d861d81914749b1d3b4c14903e,", - "split-button.divider.danger.outline-fill.light": "S:6a586971d32ff0064f4a35b7145b308f567111f6,", + "split-button.divider.brand.transparent.light": "S:004ebd42468b602354cd292b48a24f09a1018c12,", "split-button.divider.danger.outline-fill.dark": "S:657b2c4cce0fef37165e77b114c0b08409ade3d1,", - "split-button.divider.danger.outline.light": "S:8e4cf698f01e40e81435f2e61670627c40ad385e,", + "split-button.divider.danger.outline-fill.light": "S:6a586971d32ff0064f4a35b7145b308f567111f6,", "split-button.divider.danger.outline.dark": "S:b880746cb4e5cf8e14c98770516cf322933ea0a1,", - "split-button.divider.danger.transparent.light": "S:d0590600df31d1b53d4b0e989dc49efd1920ad1e,", + "split-button.divider.danger.outline.light": "S:8e4cf698f01e40e81435f2e61670627c40ad385e,", + "split-button.divider.danger.solid.dark": "S:4e3d4364749947d861d81914749b1d3b4c14903e,", + "split-button.divider.danger.solid.light": "S:7326ee571ba5b45ef2f5341103dcc6ca4f55f20d,", "split-button.divider.danger.transparent.dark": "S:e94b635ad1bbf73c275ab9de227839fb290871a0,", - "button.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", - "button.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", - "button.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", - "button.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", - "button.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", - "button.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", - "button.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", - "button.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", - "button.background.brand.outline-fill.light": "S:356e6d14763585871bd53c4cc2ec99d47b6b1bd1,", - "button.background.brand.outline-fill.dark": "S:8678a0fbc3f714e32748570133a83196b950ed2f,", - "button.background.inverse.outline-fill.light": "S:df3c70fb6bfc73acd17ab2112b9274c4cbb507f1,", - "button.background.inverse.outline-fill.dark": "S:6a767312e3fd02e644b2c0ae16e3b21b7745d499,", - "button.background.neutral.outline-fill.light": "S:a5f704a03dc74e1d0850303d7c0f7ab3c61c1137,", - "button.background.neutral.outline-fill.dark": "S:5e6ef27842035bb11d8d51a3ef3690aa65e061d7,", - "button.background.danger.outline-fill.light": "S:8535b8d82c005d8f58aba23f89947bce3df1802a,", - "button.background.danger.outline-fill.dark": "S:f51cf28d983ce6ce1fb55283c8f6b4128453aadd,", - "split-button.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "split-button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "split-button.divider.danger.transparent.light": "S:d0590600df31d1b53d4b0e989dc49efd1920ad1e,", + "split-button.divider.inverse.outline-fill.dark": "S:9688a5c1b2ad5999da192aaec45a351b0f61f39a,", + "split-button.divider.inverse.outline-fill.light": "S:68d0d54f9077da4ed71eea134ad69991c5aaadc4,", + "split-button.divider.inverse.outline.dark": "S:e29086325428f3768ae9b3d8032ed138b540678b,", + "split-button.divider.inverse.outline.light": "S:7d2abc11aa11557bcad0b7159a3b985bf7404c7a,", + "split-button.divider.inverse.solid.dark": "S:f9e5f06c0f90df05499ff6434746b6d0526dea76,", + "split-button.divider.inverse.solid.light": "S:faf949f46b9e98d76d764c162c84e7bf3c805a87,", + "split-button.divider.inverse.transparent.dark": "S:73e30ccc276621b7c5cbeee15af9059ef6493b3f,", + "split-button.divider.inverse.transparent.light": "S:0494750a4ce6c87ba5342bda04dfe3e1b2386731,", + "split-button.divider.neutral.outline-fill.dark": "S:5dcceed203792587cd24998549207702559d0aea,", + "split-button.divider.neutral.outline-fill.light": "S:9064dd0f28564e0d1f06da3fcf24064d1367330e,", + "split-button.divider.neutral.outline.dark": "S:005eb1c4d9a870d9fa7325a7717b83b8aab81cd2,", + "split-button.divider.neutral.outline.light": "S:361671e08751c062c80ff7acd1a9662961d7c2b6,", + "split-button.divider.neutral.solid.dark": "S:868fd537733d832e99361df22c7105babc381c74,", + "split-button.divider.neutral.solid.light": "S:d5d34078e8f8dce2d1074fe937570512618640e2,", + "split-button.divider.neutral.transparent.dark": "S:edc8287cffd2b3249f8fdf66b3426058c2eb464c,", + "split-button.divider.neutral.transparent.light": "S:f071a60687f9e060f9c0b71d3a6e0efe789a630e,", + "split-button.font.brand.outline-fill.dark": "S:bd21ca35dd933333ff1195ce9261c8e9b937dfb6,", + "split-button.font.brand.outline-fill.light": "S:1ac84c8153029c94ad049b3b0a9234752e7be855,", + "split-button.font.brand.outline.dark": "S:7beb60e35440fb45e91d24d8acc14db5b1533bb4,", + "split-button.font.brand.outline.light": "S:a929ca685859c1fc5e7faf543728b2edf3b5f243,", + "split-button.font.brand.solid.dark": "S:a7d2d81dd38360910fafa4f7d85e7f9ccff2854e,", + "split-button.font.brand.solid.light": "S:cc4ae5ba632fc1f1f626de4003c05f1475c97d27,", + "split-button.font.brand.transparent.dark": "S:8d19dd77778ab4642015721ce060bd7ec15f240d,", + "split-button.font.brand.transparent.light": "S:74cfdb55361a2fcfdf0e79657b1aa9b3e6cffb8c,", + "split-button.font.danger.outline-fill.dark": "S:291f34d6da9c98d93b53e6faf6903ba6254d6ead,", + "split-button.font.danger.outline-fill.light": "S:d1bb8ed5b65f5526859bba88478a173fb9b929a1,", + "split-button.font.danger.outline.dark": "S:9d611a3ad95a4e7c417d38dcf707aa9dfd4b1da8,", + "split-button.font.danger.outline.light": "S:9cfd1204a77cb867927a91597db7211a001d3a04,", + "split-button.font.danger.solid.dark": "S:af37ecd8e0d2d65aadb14bd7f27474bbee270090,", + "split-button.font.danger.solid.light": "S:a74731efcc3b80aa28448ab0cc896555bb5946b8,", + "split-button.font.danger.transparent.dark": "S:957fbc6785acc68533d73f89c39099f0da9feaf9,", + "split-button.font.danger.transparent.light": "S:6399b4fb7079f55df8a107aa677eacad644890c9,", + "split-button.font.inverse.outline-fill.dark": "S:2ecfcc01e33580567c857f84b7d7880c9c41858e,", + "split-button.font.inverse.outline-fill.light": "S:946d988291e67a18d0114e09820ab2bbaad35053,", + "split-button.font.inverse.outline.dark": "S:a58a68dd030763cd3b979f3c9c8b53d55cb9904b,", + "split-button.font.inverse.outline.light": "S:625d9574b0882315179cfc86548ed6471b4d016a,", + "split-button.font.inverse.solid.dark": "S:85c8df8e3095d7b2e3e114ed3637c5b567be8e74,", + "split-button.font.inverse.solid.light": "S:e023d71593c86f4ce2c05402cd3d40fc88a24d8f,", + "split-button.font.inverse.transparent.dark": "S:c22b36e585444176b35d2985759be4ab13f7912f,", + "split-button.font.inverse.transparent.light": "S:57697b05e86e28fec3897f4cd70e8d71cd10ca9b,", "split-button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "fab.border.brand.solid.light": "S:bd7ea9269499e13add0ce3b7c573f0d5cf43477f,", - "fab.border.brand.solid.dark": "S:c675794954c819b4aa0f731b8a492dda370f1b1b,", - "fab.border.inverse.solid.light": "S:573938363514bd57d61b7938a8c2337aa45af89b,", - "fab.border.inverse.solid.dark": "S:79d49b3abca4ba1459da9ebafe07d1efd4b01763,", - "fab.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", - "fab.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", - "fab.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", - "fab.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d," + "split-button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "split-button.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", + "split-button.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", + "split-button.font.neutral.outline.dark": "S:c7418479a6a19078629d08ff0d250434dd7aa6d8,", + "split-button.font.neutral.outline.light": "S:8f1c1a86e08810a6cc0ce7394e4c8ddf6cf7cb4d,", + "split-button.font.neutral.solid.dark": "S:ab0615f4be9ee2817309ead97d443aadf7f272a2,", + "split-button.font.neutral.solid.light": "S:a0df0d493da446b8af65957433ff02c707e549ad,", + "split-button.font.neutral.transparent.dark": "S:1a2ab9b9fdc12ddf69da58e4784f878a6c75fc66,", + "split-button.font.neutral.transparent.light": "S:3d2e4e2536be873c087f6b6181332bf2ce825c42,", + "split-button.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "split-button.icon.brand.outline-fill.dark": "S:083dd5348633198897381a0fc0ba1224dce419d0,", + "split-button.icon.brand.outline-fill.light": "S:e713b7f99bff9042ca39f672fabc26a7305a886a,", + "split-button.icon.brand.outline.dark": "S:6a8c3b2e8887bf20eab6a4f1e3ae0ed577ec662b,", + "split-button.icon.brand.outline.light": "S:96930a17711f286e1a97b8b7ca57a1c37431a621,", + "split-button.icon.brand.solid.dark": "S:4e7221865a6c6c3bd38f20c5ef2a5a54d866d4e8,", + "split-button.icon.brand.solid.light": "S:9e6ac3dff1682871052485faa0369d63529bf5b1,", + "split-button.icon.brand.transparent.dark": "S:33667181ea79a9be22a25c217678cd18dd0018a4,", + "split-button.icon.brand.transparent.light": "S:e76ac2dd6b78f85c7892ae2f30e58e8325587168,", + "split-button.icon.danger.outline-fill.dark": "S:0d52275009dd4db5be4f0ab8e588c913ab512b49,", + "split-button.icon.danger.outline-fill.light": "S:ab4adf7e0da06544e523a77dfd7382f1ce4d0390,", + "split-button.icon.danger.outline.dark": "S:e76fe1930c8f4046e6b691e8bee286135c167bbc,", + "split-button.icon.danger.outline.light": "S:e8741315e65ba8b3a3a3dfbbb0fc675149171992,", + "split-button.icon.danger.solid.dark": "S:634aa3447ca9018eafa7cb64a09fc740574a7327,", + "split-button.icon.danger.solid.light": "S:554b1ff05e7638a78dade8ba02c2a6e3aa01a697,", + "split-button.icon.danger.transparent.dark": "S:8d62de7a5843dff0cce34c04ac0d780811c1de38,", + "split-button.icon.danger.transparent.light": "S:45534e3054c040a8419218ea56621ad13724ac0d,", + "split-button.icon.inverse.outline-fill.dark": "S:59c9c9e7e1e34467cb8b027c2ba1476dc2ef694d,", + "split-button.icon.inverse.outline-fill.light": "S:dba61c40f9ca399bb1993489375549f236b1615f,", + "split-button.icon.inverse.outline.dark": "S:9137cbda0b1d79a7a6daff11f72580e2a6fda301,", + "split-button.icon.inverse.outline.light": "S:80c8d7dcc226ba8c08f306b5c6729d81de95efb6,", + "split-button.icon.inverse.solid.dark": "S:68fd5cc58df6a5869e4990bcc1340d822cac6196,", + "split-button.icon.inverse.solid.light": "S:e2bc9bd86895330c7839da20e5fec7753ede75b1,", + "split-button.icon.inverse.transparent.dark": "S:8a8366de3e4b5f5ac023b2c703cc641c21a4453b,", + "split-button.icon.inverse.transparent.light": "S:1d9ed9e6c0eca660882d7c5705d97d7eb4455e72,", + "split-button.icon.neutral.outline-fill.dark": "S:7cd5f2e7d3b4064efe22c2a4afbee7a3f66513d1,", + "split-button.icon.neutral.outline-fill.light": "S:e811450c86cf9bbd8e96efad1b6950b0aea24a90,", + "split-button.icon.neutral.outline.dark": "S:1d09040ccbfbdc3f8f89047c3eaab5dc24b7463c,", + "split-button.icon.neutral.outline.light": "S:933927902689b45a97c31f92ab03e1dabfa62bdb,", + "split-button.icon.neutral.solid.dark": "S:24b1e95691f8479f2e9981237c73eff12274680a,", + "split-button.icon.neutral.solid.light": "S:ce7f077ff90a2013df5b1f72fef68b183ded1f2e,", + "split-button.icon.neutral.transparent.dark": "S:060673768cd2545a55330e2a6c2c67e82627bbf2,", + "split-button.icon.neutral.transparent.light": "S:b3eb473ce8edf72285c36f6fb42680395ef7d7c1,", + "stepper-item.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "stepper-item.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "stepper-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "stepper-item.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "stepper-item.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "stepper-item.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "stepper-item.border.error.dark": "S:7020352ed69885c054a137ec55107272685b832e,", + "stepper-item.border.error.light": "S:334ffb7849b067fc4e31f80ff89b89961d87dd94,", + "stepper-item.font.context.active.dark": "S:24c588d01dfda605f594684ea3090e1493db2b25,", + "stepper-item.font.context.active.light": "S:46ab1687c1369c4a0c9a40e46f104648bea60a9c,", + "stepper-item.font.context.complete.dark": "S:3a1c4f0a7c7946f28090a8055d680bba4bfa988f,", + "stepper-item.font.context.complete.light": "S:332da58af9bff487a26ccbbdbde4a5c5ee0d4bba,", + "stepper-item.font.context.default.dark": "S:c90b39576e968cfa065778663f73a8c6bd853c74,", + "stepper-item.font.context.default.light": "S:24b28ebd7d47f0e14e3ae7de6441cf47da4e56ed,", + "stepper-item.font.context.error.dark": "S:dd3d49dadf6070de590566ee4913755255d80318,", + "stepper-item.font.context.error.light": "S:a7b82b3be10e9cdc737078f5f28470aa8e220e5c,", + "stepper-item.font.context.lg": "S:a50a4612be56085023ef5aad149ba7b5ba7e4261,", + "stepper-item.font.context.md": "S:755519eba87a336180ceaa2605e11f468c4bfa2d,", + "stepper-item.font.context.sm": "S:da64e75edca6fca30de3e1bb0224f0d71452b4f5,", + "stepper-item.font.description.active.dark": "S:5a4965dc35cdba19cefa3f4e22052abe89ea8722,", + "stepper-item.font.description.active.light": "S:b440a2640643ed554d42000d15fba7521000d877,", + "stepper-item.font.description.complete.dark": "S:98f30ea8b9e815dd36681cf18acdd8a474a44272,", + "stepper-item.font.description.complete.light": "S:a013ceeaefe60b844168f6a523ac006fddf265d4,", + "stepper-item.font.description.default.dark": "S:bb68feb462ab14a8d979d6916bc8f61c7776c153,", + "stepper-item.font.description.default.light": "S:c1f37b5b087232d3d69b2d2343154a494bebf829,", + "stepper-item.font.description.error.dark": "S:321c552c4829bd9ab0ab5412e5dc6723031f3017,", + "stepper-item.font.description.error.light": "S:c02eca656fda2efc2f18e0fa10141e8d804f4bca,", + "stepper-item.font.description.lg": "S:23af9aa67ad9cf7d3bbdec0a84a3a9decaa099a2,", + "stepper-item.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", + "stepper-item.font.description.sm": "S:e4ebff926d9e4d2f4b9b20ef895b87979b82bacc,", + "stepper-item.font.heading.active.dark": "S:219c33d16e6f3f2ab8844186171482269d81164d,", + "stepper-item.font.heading.active.light": "S:7599968187e637add83c21f7864eebb5893ee6e7,", + "stepper-item.font.heading.complete.dark": "S:1ee0e61d48ee69dbec6d6fcb04514893febf3b52,", + "stepper-item.font.heading.complete.light": "S:fb92dd236702e411cb7037b3434c8fbe560bf92d,", + "stepper-item.font.heading.default.dark": "S:f175c2a3fe052c485d5ecfee58101ec273441d59,", + "stepper-item.font.heading.default.light": "S:40ce528e19b100251c7b871858873db10af26b9b,", + "stepper-item.font.heading.error.dark": "S:6a23496900d852a45c92ae33a23d16ee193ceb06,", + "stepper-item.font.heading.error.light": "S:437eb6f82fe8c92b38c7bc86c4e5df0612120737,", + "stepper-item.font.heading.lg": "S:26e38b824652312797550c4393b9af9201d16410,", + "stepper-item.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "stepper-item.font.heading.sm": "S:22cd3c704f1ff153a930b1de5482c90d06b68463,", + "stepper-item.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "stepper-item.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "stepper-item.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", + "stepper-item.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", + "stepper-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "stepper-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "stepper-item.icon.error.dark": "S:e156fd5ba38f1d8b86af0cc31e7c7a7845942e16,", + "stepper-item.icon.error.light": "S:4870f6f31a7bd5c16b5c7f457d0652ce44a45c29,", + "stepper.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "stepper.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "stepper.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "stepper.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "stepper.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "stepper.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "stepper.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "stepper.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "stepper.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "stepper.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "stepper.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "stepper.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "stepper.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "switch.background.checked.dark": "S:cbe1f3df2b63dfcfec9daa27715cd5021382308e,", + "switch.background.checked.light": "S:0ab45ed9bff22a94a58242207f07e8511f3a81f1,", + "switch.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "switch.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "switch.border.checked.dark": "S:3d7742ae7dae69c0768ae5d08d439cbaa2a7b078,", + "switch.border.checked.light": "S:f19b95f1c4240eb67ccce31f43a4a2b909fc9808,", + "switch.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "switch.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "switch.handle.background.checked.dark": "S:0589e976bec8b67f097ba545e5d07e22e765adcb,", + "switch.handle.background.checked.light": "S:cd22cdbfb2b7d5bd9d470aa561e6be2bc2c38dff,", + "switch.handle.background.default.dark": "S:86c4b5b13f25bf62f7d22b82eb3e777cc4949016,", + "switch.handle.background.default.light": "S:746d55ebf4063086d8b02ca467e617f06f2215a0,", + "switch.handle.border.checked.dark": "S:53dd1b99e591b0427a5766fe42f5cdacfe9e3e50,", + "switch.handle.border.checked.light": "S:c436707d0a2bc0922d42ae2b9a5fa6b9d7f3841a,", + "switch.handle.border.default.dark": "S:44c909d394bca66186f97c7b4ff700cdda1b2a21,", + "switch.handle.border.default.light": "S:da3a5b3202820a53a539eecf457e7df62c9ebc9d,", + "tab-title.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "tab-title.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "tab-title.bordered.background.default.dark": "S:13121a0d01e4fb62e4f35a04239e9cfe749cbb07,", + "tab-title.bordered.background.default.light": "S:f6acc31e97b24210b6a778b3972d713a5620aa86,", + "tab-title.bordered.border.dark": "S:0d48699e13a0a4526295bfd5705597f25df40902,", + "tab-title.bordered.border.light": "S:bd54d03400f3a9f97d97d9656f88c7bf5f46dd02,", + "tab-title.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", + "tab-title.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", + "tab-title.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", + "tab-title.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "tab-title.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "tab-title.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "tab-title.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "tab-title.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", + "tab-title.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", + "tab-title.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "tab-title.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "tabs.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "tabs.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "tabs.bordered.background.default.dark": "S:13121a0d01e4fb62e4f35a04239e9cfe749cbb07,", + "tabs.bordered.background.default.light": "S:f6acc31e97b24210b6a778b3972d713a5620aa86,", + "tabs.bordered.border.dark": "S:0d48699e13a0a4526295bfd5705597f25df40902,", + "tabs.bordered.border.light": "S:bd54d03400f3a9f97d97d9656f88c7bf5f46dd02,", + "tabs.font.active.dark": "S:110f5ed1169157e68633b551cddec014c8311332,", + "tabs.font.active.light": "S:0be948a90930d88d5fa41366c5dfd0eb55b5b7a0,", + "tabs.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", + "tabs.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "tabs.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", + "tabs.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "tabs.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "tabs.icon.active.dark": "S:2743e683afb346b7f2f568b5545adac658b3be2d,", + "tabs.icon.active.light": "S:2b1f2a21fe90450dae8cf2345ca8dbc1a13abe06,", + "tabs.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "tabs.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "textarea.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "textarea.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "textarea.background.read-only.dark": "S:0000c43edf4cc15f5e1f4f6d7e13a66150411756,", + "textarea.background.read-only.light": "S:243c8697974d0126fc07b83667cd3bbaa77e18ec,", + "textarea.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "textarea.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "textarea.font.chat-limit.dark": "S:14ac320a893a6133618f2c147881beb7caf1d565,", + "textarea.font.chat-limit.lg": "S:e5da8e77c6e39ed414fbd9ae5620564fd78ab3bf,", + "textarea.font.chat-limit.light": "S:d036a96c3e40b11a613c327a3a0a7cae0b72fcde,", + "textarea.font.chat-limit.md": "S:a6aafccb6ad4bfb6e67f2503e562666d7024adf4,", + "textarea.font.chat-limit.sm": "S:715a88be81f03c0539a4573a8095ea899279e87a,", + "textarea.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "textarea.font.label.lg": "S:5b9cb169a215cc4f378b39bace9bdfe8172c795b,", + "textarea.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "textarea.font.label.md": "S:a243382a253419e32748f2b521ad3b7dc4c92ee9,", + "textarea.font.label.sm": "S:4277138046bc343d9af4eabeb92e979503fddf5a,", + "textarea.font.placeholder-value.dark": "S:00a56443927048dbf61889e2f444a3be8a7dcca8,", + "textarea.font.placeholder-value.lg": "S:d800ab2945d081d97d8ba97d55637b124016c7a8,", + "textarea.font.placeholder-value.light": "S:7581a9df2b32af5cc8520f0ece33aa591b44b133,", + "textarea.font.placeholder-value.md": "S:7d126691c11634f99647bd189efaf77f3afc3ae1,", + "textarea.font.placeholder-value.sm": "S:ce53ca3f40efa58a3361dae9f6d9e3954f59e01f,", + "textarea.font.read-only.lg": "S:9fd7fbc717e4ef24212b4771d793b8e0748e7d1a,", + "textarea.font.read-only.md": "S:af5f5bd329b1dd923e0b98ffeb2460d0bd74da6b,", + "textarea.font.read-only.sm": "S:066c55b1022c43cf815c9ed1870a67f183498b71,", + "textarea.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "textarea.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "tip.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", + "tip.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "tip.border.default.dark": "S:4f84e66e8fe4024edb7dfcb97b37e3373e330637,", + "tip.border.default.light": "S:33e373944fd6a0f9808f8d611bad5bca8cd0aec4,", + "tip.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", + "tip.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", + "tip.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", + "tip.font.heading.dark": "S:4f4e2f3704149243cbc51de2195d62dc933e78d0,", + "tip.font.heading.light": "S:aefd98949c7fdb4df9c74643ca4b9ff1fb7677a1,", + "tip.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", + "tip.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", + "tip.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", + "tooltip.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "tooltip.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "tooltip.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", + "tooltip.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", + "tooltip.font.standard": "S:d06a201e347559fb01fbd66261b7a3ab8b268fb0,", + "tooltip.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", + "tooltip.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", + "tree-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "tree-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "tree-item.font.children-selected.dark": "S:b607abfaf491569cb3a94468e43250d5eae4d270,", + "tree-item.font.children-selected.light": "S:dfd1a09df6ad5d51d017fb59ebcc0b4ae6396ac3,", + "tree-item.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", + "tree-item.font.default.lg": "S:94893ba1668f2671af99cbef2e35361cd7d3d60b,", + "tree-item.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", + "tree-item.font.default.md": "S:dfd9085fe214c3c65b4140511eb8fa5ae2b7d7c6,", + "tree-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", + "tree-item.font.selected.dark": "S:b4e880155c844b1765726290556b2d29d0f08f33,", + "tree-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", + "tree-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", + "tree-item.font.selected.md": "S:744e56dc530590684c79e51206e6047cc86acbeb,", + "tree-item.font.selected.sm": "S:688d88aa531f806ed7f5472dbd94cb111b282e9a,", + "tree-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", + "tree-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", + "tree-item.icon.selected.dark": "S:5adbcfb229680d6c9c5722e501a6202edd952b19,", + "tree-item.icon.selected.light": "S:ece20359c4d66506c3bbc5619ee5f4f305878423," } } ] diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index c0ec5510b03..f3cc5122d3a 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -6,6 +6,7 @@ import { Theme } from './getThemes.js'; import { formatJS } from './format/javascript.js'; import { formatCSS } from './format/css.js'; import { nameCamelCase } from './transform/nameCamelCase.js'; +import { nameKebabCase } from './transform/nameKebabCase.js'; import { parseName } from './utils/parseName.js'; const matchExclusions = /(backup|\[|\])(?=\.\w+$)/ @@ -25,8 +26,8 @@ export const run = async ( enabled: theme.enabled, source: theme.source, disabled: theme.disabled, - outputReferences: true, - sourceReferencesOnly: true, + outputReferences: false, + sourceReferencesOnly: false, }; await registerTransforms(StyleDictionary, { expand: false }); @@ -46,6 +47,17 @@ export const run = async ( transformer: nameCamelCase }) + StyleDictionary.registerTransform({ + name: 'name/calcite/kebab', + type: 'name', + transformer: nameKebabCase + }) + + StyleDictionary.registerFilter({ + name: 'filterSource', + matcher: (token) => token.isSource + }) + const _sd = StyleDictionary.extend({ source, include, @@ -66,8 +78,9 @@ export const run = async ( buildPath: `${buildPath}/js/`, files: [{ destination: `${fileName}.js`, - format: "calcite/js", - options, + format: "javascript/es6", + filter: /headless/gi.test(fileName) ? null : 'filterSource', + options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options, }] }, css: { @@ -82,13 +95,14 @@ export const run = async ( 'ts/size/css/letterspacing', 'ts/color/css/hexrgba', 'ts/color/modifiers', - 'name/cti/kebab', + 'name/calcite/kebab', ], buildPath: `${buildPath}/css/`, files: [{ destination: `${fileName}.css`, - format: "calcite/css", - options, + format: "css/variables", + filter: /headless/gi.test(fileName) ? null : 'filterSource', + options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options, }] } }, diff --git a/tools/token-transformer/transform/nameCamelCase.ts b/tools/token-transformer/transform/nameCamelCase.ts index a009d2cc61f..43fa6ed7ade 100644 --- a/tools/token-transformer/transform/nameCamelCase.ts +++ b/tools/token-transformer/transform/nameCamelCase.ts @@ -1,5 +1,6 @@ import { camelCase } from 'change-case'; +import { parseTokenPath } from '../utils/parseTokenPath'; export function nameCamelCase(token, options) { - return camelCase( [options.prefix].concat(token.path).join(' ') ); + return camelCase( [options.prefix].concat(parseTokenPath(token.path)).join(' ') ); } diff --git a/tools/token-transformer/transform/nameKebabCase.ts b/tools/token-transformer/transform/nameKebabCase.ts new file mode 100644 index 00000000000..0076f5f3b0a --- /dev/null +++ b/tools/token-transformer/transform/nameKebabCase.ts @@ -0,0 +1,6 @@ +import { paramCase } from 'change-case'; +import { parseTokenPath } from '../utils/parseTokenPath'; + +export function nameKebabCase(token, options) { + return paramCase( [options.prefix].concat(parseTokenPath(token.path)).join(' ') ); +} diff --git a/tools/token-transformer/utils/parseTokenPath.ts b/tools/token-transformer/utils/parseTokenPath.ts new file mode 100644 index 00000000000..5653e7bfa48 --- /dev/null +++ b/tools/token-transformer/utils/parseTokenPath.ts @@ -0,0 +1,11 @@ +export const parseTokenPath = (path) => path.reduce((acc, p, idx) => { + if (idx === 0 && p === 'color') { + acc.push('ui'); + } else if (p === 'default') { + return acc; + } else { + acc.push(p); + } + + return acc; +}, []); diff --git a/tsconfig.prod.json b/tsconfig.prod.json new file mode 100644 index 00000000000..237f0677774 --- /dev/null +++ b/tsconfig.prod.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig", + "compilerOptions": { + "target": "ES2018", + "outDir": "./tools/dist", + "sourceMap": true + }, + "exclude": ["**/*.test.*"] +} From 37c7ef8db56a1928680aabdf716a544c74fba7a2 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Sat, 29 Apr 2023 01:57:24 +0200 Subject: [PATCH 594/696] Updates --- tokens/$themes.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 4542fd58ebf..732c6036aa2 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -52,7 +52,9 @@ "component/split-button": "source", "component/dropdown-item": "source", "component/combobox-item": "source", - "component/flow-header": "source" + "component/flow-header": "source", + "component/notice": "source", + "component/alert": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -146,7 +148,9 @@ "component/split-button": "source", "component/dropdown-item": "source", "component/combobox-item": "source", - "component/flow-header": "source" + "component/flow-header": "source", + "component/notice": "source", + "component/alert": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", From 904026eb145e701a1ab0a925ecb9c917cb7f4dc5 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 1 May 2023 12:45:35 +0200 Subject: [PATCH 595/696] Updates --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/component/combobox.json | 10 +- tokens/component/list-item.json | 362 ++++++++++++++++++++++++++++++++ 4 files changed, 375 insertions(+), 13 deletions(-) create mode 100644 tokens/component/list-item.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 0063f70596f..c6cf79e9464 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -23,6 +23,7 @@ "component/card", "component/combobox", "component/combobox-item", + "component/list-item", "component/date-picker", "component/color-picker", "component/input-date-picker", diff --git a/tokens/$themes.json b/tokens/$themes.json index 732c6036aa2..0d70b7fb12e 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/list-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/list-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -54,7 +56,8 @@ "component/combobox-item": "source", "component/flow-header": "source", "component/notice": "source", - "component/alert": "source" + "component/alert": "source", + "component/list-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -150,7 +153,8 @@ "component/combobox-item": "source", "component/flow-header": "source", "component/notice": "source", - "component/alert": "source" + "component/alert": "source", + "component/list-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -285,7 +289,8 @@ "component/split-button": "enabled", "component/dropdown-item": "enabled", "component/combobox-item": "enabled", - "component/flow-header": "enabled" + "component/flow-header": "enabled", + "component/list-item": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index d8cc502302c..79cf72d5f0b 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -24,14 +24,8 @@ "type": "typography" }, "value": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } + "light": "[object Object]", + "dark": "[object Object]" }, "type": "other" }, diff --git a/tokens/component/list-item.json b/tokens/component/list-item.json new file mode 100644 index 00000000000..f402ae36ddc --- /dev/null +++ b/tokens/component/list-item.json @@ -0,0 +1,362 @@ +{ + "list-item": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "selected": { + "sm": { + "value": "$semantic.font.default.medium.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.medium.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.medium.0h", + "type": "typography" + }, + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + }, + "group-label": { + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "selected": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.1", + "type": "spacing" + } + }, + "space-around": { + "container": { + "level-1": { + "left": { + "default": { + "sm": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.13", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.16", + "type": "spacing" + } + }, + "selected": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + }, + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "level-2": { + "left": { + "default": { + "sm": { + "value": "$core.spacing.13", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3 * 6.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.18", + "type": "spacing" + } + }, + "selected": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + }, + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "level-3": { + "left": { + "default": { + "sm": { + "value": "$core.spacing.15", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.17", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3 * 11", + "type": "spacing" + } + }, + "selected": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + }, + "right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + } + }, + "group-label": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + } + }, + "background": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + } + } + } +} \ No newline at end of file From 45a3762568c7249dcb064eabe3faacab250ce1b4 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 1 May 2023 12:47:05 +0200 Subject: [PATCH 596/696] Updates --- tokens/$themes.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 0d70b7fb12e..635d5c7a7ed 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/list-item": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/list-item": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, From 557b1d2c93b3580acee73d1db20254038d67964d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 07:47:12 -0700 Subject: [PATCH 597/696] fix(tokens): removing duplicates --- tokens/component/accordion.json | 2 +- tokens/component/action.json | 8 -------- tokens/component/tabs.json | 16 +--------------- 3 files changed, 2 insertions(+), 24 deletions(-) diff --git a/tokens/component/accordion.json b/tokens/component/accordion.json index 044f000b7c8..29370b6401f 100644 --- a/tokens/component/accordion.json +++ b/tokens/component/accordion.json @@ -189,4 +189,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action.json b/tokens/component/action.json index 59b04a09b57..1903170631b 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -1,14 +1,6 @@ { "action": { "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, "sm": { "value": "$semantic.font.default.regular.-2h", "type": "typography" diff --git a/tokens/component/tabs.json b/tokens/component/tabs.json index 461acf06414..29efecc555e 100644 --- a/tokens/component/tabs.json +++ b/tokens/component/tabs.json @@ -180,20 +180,6 @@ "type": "sizing" } }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" - } - }, "default": { "space-around": { "left-right": { @@ -278,4 +264,4 @@ } } } -} \ No newline at end of file +} From bb07d2a335f49f1e21b2bc0c6dfa9a137dd4da5a Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Mon, 1 May 2023 16:57:39 +0200 Subject: [PATCH 598/696] Updates --- tokens/component/list-item.json | 66 ++++++++++----------------------- 1 file changed, 19 insertions(+), 47 deletions(-) diff --git a/tokens/component/list-item.json b/tokens/component/list-item.json index f402ae36ddc..0485f3f9dac 100644 --- a/tokens/component/list-item.json +++ b/tokens/component/list-item.json @@ -1,51 +1,27 @@ { "list-item": { "font": { - "default": { + "label": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" } }, - "selected": { - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - }, + "description": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.text.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.3.dark", "type": "color" } }, - "group-title": { + "group-heading": { "light": { "value": "$semantic.ui.color.text.2.light", "type": "color" @@ -53,9 +29,7 @@ "dark": { "value": "$semantic.ui.color.text.2.dark", "type": "color" - } - }, - "group-label": { + }, "sm": { "value": "$semantic.font.default.bold.-2h", "type": "typography" @@ -68,27 +42,25 @@ "value": "$semantic.font.default.bold.0h", "type": "typography" } + }, + "list-item-label": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "list-item-description": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" } }, "icon": { - "default": { + "dropdown": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" - }, - "selected": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } } }, "select": { From 9828e9c60cae98bfdb2d365dd40096026b235107 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 08:04:47 -0700 Subject: [PATCH 599/696] fix(tokens): remove duplicate references --- tokens/calcite/dark.json | 2 +- tokens/calcite/light.json | 2 +- tokens/component/action.json | 14 +------------- 3 files changed, 3 insertions(+), 15 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 6b0b687b7c2..cf628c1d1a4 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -1197,7 +1197,7 @@ "type": "color" }, "font": { - "value": "$action.font.dark", + "value": "$action.font.default.dark", "type": "color" }, "icon": { diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 145eb21d66b..1bc1b66841e 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -1229,7 +1229,7 @@ }, "action": { "font": { - "value": "$action.font.light", + "value": "$action.font.default.light", "type": "color" }, "icon": { diff --git a/tokens/component/action.json b/tokens/component/action.json index 1903170631b..110583d586e 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -1,18 +1,6 @@ { "action": { "font": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - }, "default": { "light": { "value": "$semantic.ui.color.text.3.light", @@ -180,4 +168,4 @@ } } } -} \ No newline at end of file +} From 5f4ae0d886c7a4dd45a58fc5bf28de3e1140fe2f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 09:02:51 -0700 Subject: [PATCH 600/696] refactor: token transformer code cleanup responding to PR comments --- tools/token-transformer/format/css.ts | 2 +- tools/token-transformer/getThemes.ts | 2 - .../parse/expandComposites.ts | 134 +++--------------- .../parse/handleFigmaTokens.ts | 10 +- tools/token-transformer/sd-run.ts | 44 +++--- .../utils/compositeTokens.ts | 80 +++++++++++ .../convertTokenToStyleDictionaryFormat.ts | 13 ++ .../utils/getSortedTokens.ts | 9 +- tools/token-transformer/utils/parseName.ts | 5 +- tools/token-transformer/utils/regex.ts | 3 + tools/token-transformer/utils/reverse.ts | 34 ----- tsconfig.json | 4 +- 12 files changed, 153 insertions(+), 187 deletions(-) create mode 100644 tools/token-transformer/utils/compositeTokens.ts create mode 100644 tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts create mode 100644 tools/token-transformer/utils/regex.ts delete mode 100644 tools/token-transformer/utils/reverse.ts diff --git a/tools/token-transformer/format/css.ts b/tools/token-transformer/format/css.ts index 8749d4971f7..152b5eed2ef 100644 --- a/tools/token-transformer/format/css.ts +++ b/tools/token-transformer/format/css.ts @@ -18,7 +18,7 @@ export function customFormattedVariables(varInfo) { format, formatting, })) - .map((token) => token.replaceAll('"', '')) + .map((token) => token.replace(/\"/g, '')) .filter((strVal) => { return !!strVal }) .join(lineSeparator); } diff --git a/tools/token-transformer/getThemes.ts b/tools/token-transformer/getThemes.ts index d539267521f..4e7c40005e8 100644 --- a/tools/token-transformer/getThemes.ts +++ b/tools/token-transformer/getThemes.ts @@ -11,7 +11,6 @@ export interface ThemeFileInterface { export type Theme = { name: string; - fileName: string; enabled: string[]; disabled: string[]; source: string[]; @@ -32,7 +31,6 @@ export async function getThemes( themeFile: string ): Promise { return { name, - fileName: parseName(name), id, enabled, disabled, diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index 9bbde88f9fc..674b5e095a9 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -1,102 +1,26 @@ import { DeepKeyTokenMap, SingleToken } from '@tokens-studio/types'; import { - ExpandFilter, TransformOptions, Expandables, ExpandablesAsStrings, expandablesAsStringsArr, } from '../TransformOptions.js'; - -const typeMaps = { - boxShadow: { - x: 'dimension', - y: 'dimension', - blur: 'dimension', - spread: 'dimension', - type: 'other', - }, - border: { - width: 'borderWidth', - style: 'other', - }, - composition: { - typography: 'fontSizes', - fontWeight: 'fontWeights', - }, - typography: { - fontFamily: 'fontFamilies', - fontWeight: 'fontWeights', - lineHeight: 'lineHeights', - fontSize: 'fontSizes', - letterSpacing: 'spacing', - paragraphSpacing: 'spacing', - textDecoration: 'fontStyle', - textCase: 'textCase', - }, -}; - -const matchingGroup = new RegExp(/\$[.\w-]+/, 'g'); -function updateFigmaTokenForSD(value: string | number) { - let newValue = `${value}`; - const matchesArr = [...newValue.matchAll(matchingGroup)]; - if (matchesArr.length > 0) { - matchesArr.forEach((match) => { - const figmaVariable = match[0]; - newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); - }); - } - return newValue; -} - -const matchPlaceholderElement = new RegExp(/[\[\]]/, 'g'); -export function expandToken(compToken: SingleToken, isShadow = false) { - const expandedObj = {} as SingleToken; - const getType = (key: string) => typeMaps[compToken.type][key] ?? key; - - if (isShadow && Array.isArray(compToken.value)) { - compToken.value.forEach((shadow, index) => { - expandedObj[index + 1] = {}; - Object.entries(shadow).forEach(([key, value]) => { - if (matchPlaceholderElement.test(`${value}`)) { - return; - } - expandedObj[index + 1][key] = { - value: `${updateFigmaTokenForSD(value)}`, - type: getType(key), - }; - }); - }); - } else { - Object.entries(compToken.value).forEach(([key, value]) => { - if (matchPlaceholderElement.test(`${value}`)) { - return; - } - expandedObj[key] = { - value: `${updateFigmaTokenForSD(value)}`, - type: getType(key), - }; - }); - } - - return expandedObj; -} - -function shouldExpand( - token: T, - condition: boolean | ExpandFilter, - filePath: string, -): boolean { - if (typeof condition === 'function') { - return condition(token, filePath); - } - return condition; -} - -function recurse( - slice: DeepKeyTokenMap, +import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from '../utils/regex.js' +import { shouldExpand, expandToken } from '../utils/compositeTokens.js'; +import { convertTokenToStyleDictionaryFormat } from '../utils/convertTokenToStyleDictionaryFormat.js'; +/** + * + * @param dictionary the raw JSON object in the token files. We will assume this is a token object generated by Figma Token Studio and may require composite tokens to be expanded. + * @param filePath the absolute file path to the JSON token file. + * @param transformOpts the options passed in from the Style Dictionary config and runner + * @returns a token object where any Figma Token Studio composite tokens now match the Style Dictionary token format + */ +export function expandComposites( + dictionary: DeepKeyTokenMap, filePath: string, transformOpts: TransformOptions = {}, ): DeepKeyTokenMap { + const opts = { ...transformOpts, expand: { @@ -104,15 +28,14 @@ function recurse( typography: false, border: false, shadow: false, - ...(transformOpts.expand || {}), + ...transformOpts.expand, }, }; - const returnSlice: DeepKeyTokenMap = {}; - - const newToken = Object.entries(slice).reduce((acc, [key, token]) => { + const handleTokenStudioVariables = convertTokenToStyleDictionaryFormat(tokenStudioCustomVariableIndicator) + const newDictionary = Object.entries(dictionary).reduce((acc, [key, token]) => { const { type } = token; - if (matchPlaceholderElement.test(`${key}`) || (typeof matchPlaceholderElement.test(`${token.value}`)) === 'string' && matchPlaceholderElement.test(`${token.value}`)) { + if (matchPlaceholderElement.test(`${key}`) || matchPlaceholderElement.test(`${token.value}`)) { return acc; } @@ -125,33 +48,18 @@ function recurse( filePath, ); if (expand) { - if (filePath.includes('semantic')) { - debugger; - } - const expandedToken = expandToken(token as SingleToken, expandType === 'shadow'); + const expandedToken = expandToken(token as SingleToken, expandType === 'shadow', handleTokenStudioVariables); acc[key] = expandedToken; } } else { - token['value'] = updateFigmaTokenForSD(token.value as string); + token.value = handleTokenStudioVariables(token.value as string); acc[key] = token; } } else if (typeof token === 'object') { - // TODO: figure out why we have to hack this typecast, if a value doesn't have a value & type, - // it is definitely a nested DeepKeyTokenMap and not a SingleToken, but TS seems to think it must be - // a SingleToken after this if statement - acc[key] = recurse(token as unknown as DeepKeyTokenMap, filePath, transformOpts); + acc[key] = expandComposites(token as unknown as DeepKeyTokenMap, filePath, transformOpts); } return acc; }, returnSlice); - return newToken; -} - -export function expandComposites( - dictionary: DeepKeyTokenMap, - filePath: string, - transformOpts?: TransformOptions, -): DeepKeyTokenMap { - const copy = recurse({ ...dictionary }, filePath, transformOpts); - return copy; + return newDictionary; } diff --git a/tools/token-transformer/parse/handleFigmaTokens.ts b/tools/token-transformer/parse/handleFigmaTokens.ts index 97946b601c7..e37d492a8f5 100644 --- a/tools/token-transformer/parse/handleFigmaTokens.ts +++ b/tools/token-transformer/parse/handleFigmaTokens.ts @@ -6,12 +6,10 @@ export function handleFigmaTokens(key: string, value: any): DesignToken { if (typeof newValue === 'string') { const matches = [...newValue.matchAll(matchingGroup)]; - if (matches.length > 0) { - matches.forEach((match) => { - const figmaVariable = match[0]; - newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); - }); - } + matches.forEach((match) => { + const figmaVariable = match[0]; + newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); + }); } return newValue; diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index f3cc5122d3a..dc4020cdbe6 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -1,10 +1,7 @@ -// import { registerTransforms } from '@tokens-studio/sd-transforms'; import StyleDictionary from 'style-dictionary'; import { registerTransforms } from '@tokens-studio/sd-transforms'; import { expandComposites } from './parse/expandComposites.js'; import { Theme } from './getThemes.js'; -import { formatJS } from './format/javascript.js'; -import { formatCSS } from './format/css.js'; import { nameCamelCase } from './transform/nameCamelCase.js'; import { nameKebabCase } from './transform/nameKebabCase.js'; import { parseName } from './utils/parseName.js'; @@ -14,14 +11,25 @@ const matchFiles = (filePath: string, matchList: string[]) => { return matchList.some((value) => filePath.includes(value) && !matchExclusions.test(filePath)); } +/** + * Style Dictionary runner configuration overrides. + * + * @param tokenDir the directory containing design token files + * @param buildPath the directory to write generated assets to + * @param theme + * @param theme.name the name of the theme. This will be used as the basis for the generated asset file names. + * @param theme.enabled an array of partial file names matching the token files which should be included in the output + * @param theme.disabled an array of partial file names matching the token files which should explicitly not be included in the output + * @param theme.source an array of partial file names matching the token files which should not always be included in the output but who's values should be used for variables references in the "enabled" files + */ export const run = async ( tokenDir: string = 'tokens', buildPath: string = 'build', - theme: Theme + theme: Pick ) => { const fileName = parseName(theme.name); - const include = theme.source.map(tokenFile => `tokens/${tokenFile}.json`); - const source = theme.enabled.map(tokenFile => `tokens/${tokenFile}.json`); + const include = theme.source.map(tokenFile => `${tokenDir}/${tokenFile}.json`); + const source = theme.enabled.map(tokenFile => `${tokenDir}/${tokenFile}.json`); const options = { enabled: theme.enabled, source: theme.source, @@ -30,17 +38,13 @@ export const run = async ( sourceReferencesOnly: false, }; + // Here we are registering the Transforms provided by Token Studio however, + // we need to pass "expand: false" so that we can use our own custom JSON file parser. + // any references to "ts/..." below are references to these Token Studio transformers + // https://github.com/tokens-studio/sd-transforms await registerTransforms(StyleDictionary, { expand: false }); - StyleDictionary.registerFormat({ - name: 'calcite/js', - formatter: formatJS - }); - StyleDictionary.registerFormat({ - name: 'calcite/css', - formatter: formatCSS - }) - + // Registering Style Dictionary transformers https://amzn.github.io/style-dictionary/#/transforms?id=defining-custom-transforms StyleDictionary.registerTransform({ name: 'name/calcite/camel', type: 'name', @@ -58,7 +62,7 @@ export const run = async ( matcher: (token) => token.isSource }) - const _sd = StyleDictionary.extend({ + const sd = StyleDictionary.extend({ source, include, platforms: { @@ -114,16 +118,16 @@ export const run = async ( const expanded = expandComposites(obj, file.filePath); return expanded; - } else { - return {}; } + + return {}; } }] }); try { - _sd.cleanAllPlatforms(); - _sd.buildAllPlatforms(); + sd.cleanAllPlatforms(); + sd.buildAllPlatforms(); } catch (error) { console.error(error) } diff --git a/tools/token-transformer/utils/compositeTokens.ts b/tools/token-transformer/utils/compositeTokens.ts new file mode 100644 index 00000000000..69cae3615cb --- /dev/null +++ b/tools/token-transformer/utils/compositeTokens.ts @@ -0,0 +1,80 @@ +import { DeepKeyTokenMap, SingleToken } from '@tokens-studio/types'; +import { + ExpandFilter, + TransformOptions, + Expandables, + ExpandablesAsStrings, + expandablesAsStringsArr, +} from '../TransformOptions.js'; +import { matchPlaceholderElement } from './regex.js'; + +const typeMaps = { + boxShadow: { + x: 'dimension', + y: 'dimension', + blur: 'dimension', + spread: 'dimension', + type: 'other', + }, + border: { + width: 'borderWidth', + style: 'other', + }, + composition: { + typography: 'fontSizes', + fontWeight: 'fontWeights', + }, + typography: { + fontFamily: 'fontFamilies', + fontWeight: 'fontWeights', + lineHeight: 'lineHeights', + fontSize: 'fontSizes', + letterSpacing: 'spacing', + paragraphSpacing: 'spacing', + textDecoration: 'fontStyle', + textCase: 'textCase', + }, +}; + +export function expandToken(compositeToken: SingleToken, isShadow = false, handleValue = (v) => v) { + const expandedObj = {} as SingleToken; + const getType = (key: string) => typeMaps[compositeToken.type][key] ?? key; + + if (isShadow && Array.isArray(compositeToken.value)) { + compositeToken.value.forEach((shadow, index) => { + expandedObj[index + 1] = {}; + Object.entries(shadow).forEach(([key, value]) => { + if (matchPlaceholderElement.test(`${value}`)) { + return; + } + expandedObj[index + 1][key] = { + value: `${handleValue(value)}`, + type: getType(key), + }; + }); + }); + } else { + Object.entries(compositeToken.value).forEach(([key, value]) => { + if (matchPlaceholderElement.test(`${value}`)) { + return; + } + expandedObj[key] = { + value: `${handleValue(value)}`, + type: getType(key), + }; + }); + } + + return expandedObj; +} + +export function shouldExpand( + token: T, + condition: boolean | ExpandFilter, + filePath: string, +): boolean { + if (typeof condition === 'function') { + return condition(token, filePath); + } + return condition; +} diff --git a/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts b/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts new file mode 100644 index 00000000000..239cecf66dc --- /dev/null +++ b/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts @@ -0,0 +1,13 @@ +export function convertTokenToStyleDictionaryFormat(customReferenceTokenIndicator: RegExp) { + return (value: string | number) => { + let newValue = `${value}`; + const matchesArr = [...newValue.matchAll(customReferenceTokenIndicator)]; + if (matchesArr.length > 0) { + matchesArr.forEach((match) => { + const figmaVariable = match[0]; + newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); + }); + } + return newValue; + } +} diff --git a/tools/token-transformer/utils/getSortedTokens.ts b/tools/token-transformer/utils/getSortedTokens.ts index 4a54e050543..e82c8cb5f5c 100644 --- a/tools/token-transformer/utils/getSortedTokens.ts +++ b/tools/token-transformer/utils/getSortedTokens.ts @@ -1,5 +1,4 @@ import sd, { Dictionary, File, Platform, Options, TransformedTokens, TransformedToken } from "style-dictionary"; -import { reverse } from "./reverse.js"; function includeReferenceTokens(token: TransformedToken, dictionary: Dictionary, tokenSets: TransformedTokens[], pointer: number) { let value = JSON.stringify(token.value); @@ -27,17 +26,15 @@ function includeReferenceTokens(token: TransformedToken, dictionary: Dictionary, export function getSortedTokens(dictionary: Dictionary, options: Options, includedTokenSets: TransformedTokens[] = []): TransformedTokens[] { return dictionary.allTokens.reduce((acc, token, idx) => { - if(!!options.sourceReferencesOnly && token.isSource) { - acc = includeReferenceTokens(token, dictionary, acc, 0) - } else if (!options.sourceReferencesOnly) { + if((!!options.sourceReferencesOnly && token.isSource) || !options.sourceReferencesOnly) { acc = includeReferenceTokens(token, dictionary, acc, 0) } - return idx === dictionary.allTokens.length - 1 ? reverse(acc) : acc; + return idx === dictionary.allTokens.length - 1 ? acc.reverse() : acc; }, includedTokenSets).reduce((acc, tokenSet) => { Object.values(tokenSet).forEach((token) => { acc.push(token) }) return [...acc]; -}, []);; +}, []); } diff --git a/tools/token-transformer/utils/parseName.ts b/tools/token-transformer/utils/parseName.ts index 371ca2fd251..cef8cbd1973 100644 --- a/tools/token-transformer/utils/parseName.ts +++ b/tools/token-transformer/utils/parseName.ts @@ -3,11 +3,10 @@ export function parseName(name: string, prefix?: string) { function createNewWord (acc: string, word: string, idx: number) { let newWord = ''; - if(idx === 0) { + if (idx === 0) { if (prefix) { const firstLetter = word.charAt(0).toUpperCase(); - const ord = word.slice(1).toLowerCase(); - newWord = prefix + firstLetter + ord; + newWord = prefix + firstLetter + word.slice(1).toLowerCase(); } else { newWord = word.toLocaleLowerCase(); } diff --git a/tools/token-transformer/utils/regex.ts b/tools/token-transformer/utils/regex.ts new file mode 100644 index 00000000000..0aa48f5b854 --- /dev/null +++ b/tools/token-transformer/utils/regex.ts @@ -0,0 +1,3 @@ +export const matchPlaceholderElement = new RegExp(/[\[\]]/, 'g'); + +export const tokenStudioCustomVariableIndicator = new RegExp(/\$[.\w-]+/, 'g'); diff --git a/tools/token-transformer/utils/reverse.ts b/tools/token-transformer/utils/reverse.ts deleted file mode 100644 index cfd612101a8..00000000000 --- a/tools/token-transformer/utils/reverse.ts +++ /dev/null @@ -1,34 +0,0 @@ -/* credit to LoDash https://lodash.com/docs/4.17.15#reverse */ - -/** Used for built-in method references. */ -const arrayProto = Array.prototype; - -/* Built-in method references for those with the same name as other `lodash` methods. */ -const nativeReverse = arrayProto.reverse; - -/** - * Reverses `array` so that the first element becomes the last, the second - * element becomes the second to last, and so on. - * - * **Note:** This method mutates `array` and is based on - * [`Array#reverse`](https://mdn.io/Array/reverse). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to modify. - * @returns {Array} Returns `array`. - * @example - * - * var array = [1, 2, 3]; - * - * _.reverse(array); - * // => [3, 2, 1] - * - * console.log(array); - * // => [3, 2, 1] - */ -export const reverse = (array) => { - return array == null ? array : nativeReverse.call(array); -} diff --git a/tsconfig.json b/tsconfig.json index 362fb7c796d..3ffb0e296e7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,13 +7,13 @@ "declaration": false, "esModuleInterop": true, "experimentalDecorators": true, - "lib": ["dom", "dom.iterable", "es2021"], + "lib": ["dom", "dom.iterable", "ES2018"], "module": "esnext", "moduleResolution": "node", "noUnusedLocals": false, "noUnusedParameters": false, "resolveJsonModule": true, - "target": "es2020" + "target": "ES2018" }, "exclude": ["node_modules", "tokens", "build"] } From b2f59c94cfb466291f51a03852fac76ff81f650b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 09:58:54 -0700 Subject: [PATCH 601/696] docs: add JSDocs and comments also removes unused files and pulls matchList out of sd-run --- tools/token-transformer/TransformOptions.ts | 20 ++++-- tools/token-transformer/format/css.ts | 33 ---------- tools/token-transformer/format/javascript.ts | 14 ---- tools/token-transformer/getThemes.ts | 13 ++-- tools/token-transformer/index.ts | 10 ++- .../parse/expandComposites.ts | 3 + .../parse/handleFigmaTokens.ts | 16 ----- tools/token-transformer/sd-run.ts | 13 ++-- .../transform/nameCamelCase.ts | 6 ++ .../transform/nameKebabCase.ts | 6 ++ .../utils/compositeTokens.ts | 66 +++++++++++++++++-- .../convertTokenToStyleDictionaryFormat.ts | 17 +++-- .../utils/getSortedTokens.ts | 40 ----------- tools/token-transformer/utils/matchList.ts | 9 +++ tools/token-transformer/utils/parseName.ts | 6 ++ .../token-transformer/utils/parseTokenPath.ts | 9 ++- tools/token-transformer/utils/regex.ts | 6 ++ 17 files changed, 150 insertions(+), 137 deletions(-) delete mode 100644 tools/token-transformer/format/css.ts delete mode 100644 tools/token-transformer/format/javascript.ts delete mode 100644 tools/token-transformer/parse/handleFigmaTokens.ts delete mode 100644 tools/token-transformer/utils/getSortedTokens.ts create mode 100644 tools/token-transformer/utils/matchList.ts diff --git a/tools/token-transformer/TransformOptions.ts b/tools/token-transformer/TransformOptions.ts index ad65b2f2889..b02e2e5cc37 100644 --- a/tools/token-transformer/TransformOptions.ts +++ b/tools/token-transformer/TransformOptions.ts @@ -1,3 +1,5 @@ +// This file exists because these types were not exported by Style Dictionary but types need to match. + import { SingleBorderToken, SingleBoxShadowToken, @@ -12,16 +14,22 @@ export type Expandables = | SingleBorderToken | SingleBoxShadowToken; -export const expandablesAsStringsArr = ['composition', 'typography', 'border', 'boxShadow']; -export type ExpandablesAsStrings = (typeof expandablesAsStringsArr)[number]; +export const expandablesAsStrings = ['composition', 'typography', 'border', 'boxShadow'] as const; +export type ExpandablesAsStrings = typeof expandablesAsStrings[number]; export type ExpandFilter = (token: T, filePath: string) => boolean; +/** + * @param {boolean} [typography=false] + * @param {boolean} [border=false] + * @param {boolean} [shadow=false] + * @param {boolean} [composition=true] + */ export interface ExpandOptions { - typography?: boolean | ExpandFilter; // default false - border?: boolean | ExpandFilter; // default false - shadow?: boolean | ExpandFilter; // default false - composition?: boolean | ExpandFilter; // default true + typography?: boolean | ExpandFilter; + border?: boolean | ExpandFilter; + shadow?: boolean | ExpandFilter; + composition?: boolean | ExpandFilter; } export interface TransformOptions { diff --git a/tools/token-transformer/format/css.ts b/tools/token-transformer/format/css.ts deleted file mode 100644 index 152b5eed2ef..00000000000 --- a/tools/token-transformer/format/css.ts +++ /dev/null @@ -1,33 +0,0 @@ -import sd, { Dictionary, File, Platform, Options } from "style-dictionary"; -import { getSortedTokens } from "../utils/getSortedTokens.js"; - -const { formatHelpers } = sd; - -const defaultFormatting = { - lineSeparator: '\n', -} - -export function customFormattedVariables(varInfo) { - const { format, dictionary, outputReferences = false, formatting, options} = varInfo - let {lineSeparator} = Object.assign({}, defaultFormatting, formatting); - const tokens = getSortedTokens(dictionary, options); - return tokens - .map(formatHelpers.createPropertyFormatter({ - outputReferences: true, - dictionary, - format, - formatting, - })) - .map((token) => token.replace(/\"/g, '')) - .filter((strVal) => { return !!strVal }) - .join(lineSeparator); -} - -export function formatCSS (fileInfo: { dictionary: Dictionary, file: File, platform: Platform, options: Options & { themeable?: boolean }}) { - const { dictionary, file, options} = fileInfo - const { outputReferences } = options; - return formatHelpers.fileHeader({file}) + - ':root {' + '\n' + - customFormattedVariables({format: 'css', dictionary, outputReferences, options }) + '\n'+ - '}' + '\n'; -} diff --git a/tools/token-transformer/format/javascript.ts b/tools/token-transformer/format/javascript.ts deleted file mode 100644 index 5fcfdacbe10..00000000000 --- a/tools/token-transformer/format/javascript.ts +++ /dev/null @@ -1,14 +0,0 @@ -import sd, { Dictionary, File, Platform, Options } from "style-dictionary"; -import { getSortedTokens } from "../utils/getSortedTokens.js"; - -const { formatHelpers } = sd; - -export function formatJS(fileInfo: { dictionary: Dictionary, file: File, platform: Platform, options: Options}) { - const { dictionary, options, file } = fileInfo; - const sortedTokens = getSortedTokens(dictionary, options) - const formattedTokenSet = sortedTokens.map((token) => { - return `export const ${token.name} = ${token.value};`; - }); - - return formatHelpers.fileHeader({file}) + '\n' + [...new Set(formattedTokenSet)].join('\n'); -} diff --git a/tools/token-transformer/getThemes.ts b/tools/token-transformer/getThemes.ts index 4e7c40005e8..6a5ffd98399 100644 --- a/tools/token-transformer/getThemes.ts +++ b/tools/token-transformer/getThemes.ts @@ -1,6 +1,4 @@ -import { readFileSync } from "fs"; import { Options } from "style-dictionary"; -import { parseName } from "./utils/parseName.js"; export interface ThemeFileInterface { id: string; @@ -18,10 +16,13 @@ export type Theme = { options?: Options } -export async function getThemes( themeFile: string ): Promise { - const rawData = await readFileSync(themeFile, {encoding: 'utf-8'}); - const data: ThemeFileInterface[] = JSON.parse(rawData); - return data.map((themeConfig) => { +/** + * + * @param themes an array of Figma Token Studio theme definition objects + * @returns an array of Style Dictionary theme definition objects + */ +export async function getThemes( themes: ThemeFileInterface[] ): Promise { + return themes.map((themeConfig) => { const themeTypes = {enabled: [], disabled: [], source: []}; const { name, id, selectedTokenSets} = themeConfig; const { enabled, disabled, source } = Object.entries(selectedTokenSets).reduce((acc, [key, value]) => { diff --git a/tools/token-transformer/index.ts b/tools/token-transformer/index.ts index 4eb66990a51..26c384e9a72 100644 --- a/tools/token-transformer/index.ts +++ b/tools/token-transformer/index.ts @@ -1,11 +1,17 @@ +import { readFileSync } from "fs"; import { run } from "./sd-run.js"; -import { getThemes } from './getThemes.js'; +import { getThemes, ThemeFileInterface } from './getThemes.js'; +// asynchronously loops over all themes defined in tokens/$themes.json and generates token files +// in the /build directory in the asset formats defined in the Style Dictionary configuration export const transformTokens = async () => { - const themes = await getThemes('tokens/$themes.json'); + const rawData = await readFileSync('tokens/$themes.json', {encoding: 'utf-8'}); + const data: ThemeFileInterface[] = JSON.parse(rawData); + const themes = await getThemes(data); return Promise.all(themes.map((theme) => run('tokens', 'build', theme))); } if (process.env.NODE_ENV !== 'test') { + // Make this file self invoking unless the process is in test mode transformTokens(); } diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index 674b5e095a9..0fffee6242a 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -8,7 +8,10 @@ import { import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from '../utils/regex.js' import { shouldExpand, expandToken } from '../utils/compositeTokens.js'; import { convertTokenToStyleDictionaryFormat } from '../utils/convertTokenToStyleDictionaryFormat.js'; + /** + * Figma Token Studio creates an odd type of composite token where the value may contain an object of "key: value" pairs. + * Here we will lift these composite tokens up to match the Style Dictionary format. * * @param dictionary the raw JSON object in the token files. We will assume this is a token object generated by Figma Token Studio and may require composite tokens to be expanded. * @param filePath the absolute file path to the JSON token file. diff --git a/tools/token-transformer/parse/handleFigmaTokens.ts b/tools/token-transformer/parse/handleFigmaTokens.ts deleted file mode 100644 index e37d492a8f5..00000000000 --- a/tools/token-transformer/parse/handleFigmaTokens.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { DesignToken } from "style-dictionary/types/DesignToken"; - -export function handleFigmaTokens(key: string, value: any): DesignToken { - const matchingGroup = new RegExp(/\$[.\w-]+/, 'g'); - let newValue = value; - - if (typeof newValue === 'string') { - const matches = [...newValue.matchAll(matchingGroup)]; - matches.forEach((match) => { - const figmaVariable = match[0]; - newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); - }); - } - - return newValue; -} diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index dc4020cdbe6..a50a53d4c2c 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -5,11 +5,8 @@ import { Theme } from './getThemes.js'; import { nameCamelCase } from './transform/nameCamelCase.js'; import { nameKebabCase } from './transform/nameKebabCase.js'; import { parseName } from './utils/parseName.js'; - -const matchExclusions = /(backup|\[|\])(?=\.\w+$)/ -const matchFiles = (filePath: string, matchList: string[]) => { - return matchList.some((value) => filePath.includes(value) && !matchExclusions.test(filePath)); -} +import { matchList } from './utils/matchList.js'; +import { matchExclusions } from './utils/regex.js'; /** * Style Dictionary runner configuration overrides. @@ -62,6 +59,8 @@ export const run = async ( matcher: (token) => token.isSource }) + // We are programtically creating the Style Dictionary configuration here + // https://amzn.github.io/style-dictionary/#/config const sd = StyleDictionary.extend({ source, include, @@ -113,7 +112,7 @@ export const run = async ( parsers: [{ pattern: /\.json$/, parse: (file) => { - if (matchFiles(file.filePath, [...include, ...theme.source, ...theme.enabled])) { + if (matchList(file.filePath, [...include, ...theme.source, ...theme.enabled], matchExclusions)) { const obj = JSON.parse(file.contents); const expanded = expandComposites(obj, file.filePath); @@ -129,6 +128,6 @@ export const run = async ( sd.cleanAllPlatforms(); sd.buildAllPlatforms(); } catch (error) { - console.error(error) + console.error(error); } } diff --git a/tools/token-transformer/transform/nameCamelCase.ts b/tools/token-transformer/transform/nameCamelCase.ts index 43fa6ed7ade..35c3c244f53 100644 --- a/tools/token-transformer/transform/nameCamelCase.ts +++ b/tools/token-transformer/transform/nameCamelCase.ts @@ -1,6 +1,12 @@ import { camelCase } from 'change-case'; import { parseTokenPath } from '../utils/parseTokenPath'; +/** + * + * @param token Style Dictionary token object + * @param options Style Dictionary format options + * @returns an updated name for the token which will be used for the final output + */ export function nameCamelCase(token, options) { return camelCase( [options.prefix].concat(parseTokenPath(token.path)).join(' ') ); } diff --git a/tools/token-transformer/transform/nameKebabCase.ts b/tools/token-transformer/transform/nameKebabCase.ts index 0076f5f3b0a..6c58cc33567 100644 --- a/tools/token-transformer/transform/nameKebabCase.ts +++ b/tools/token-transformer/transform/nameKebabCase.ts @@ -1,6 +1,12 @@ import { paramCase } from 'change-case'; import { parseTokenPath } from '../utils/parseTokenPath'; +/** + * + * @param token Style Dictionary token object + * @param options Style Dictionary format options + * @returns an updated name for the token which will be used for the final output + */ export function nameKebabCase(token, options) { return paramCase( [options.prefix].concat(parseTokenPath(token.path)).join(' ') ); } diff --git a/tools/token-transformer/utils/compositeTokens.ts b/tools/token-transformer/utils/compositeTokens.ts index 69cae3615cb..7d9c8049f59 100644 --- a/tools/token-transformer/utils/compositeTokens.ts +++ b/tools/token-transformer/utils/compositeTokens.ts @@ -1,13 +1,11 @@ -import { DeepKeyTokenMap, SingleToken } from '@tokens-studio/types'; +import { SingleToken } from '@tokens-studio/types'; import { - ExpandFilter, - TransformOptions, - Expandables, - ExpandablesAsStrings, - expandablesAsStringsArr, + ExpandFilter } from '../TransformOptions.js'; import { matchPlaceholderElement } from './regex.js'; +// A customized type map based off Token Studio. +// This determines the applied "type" associated with each Style Dictionary token value const typeMaps = { boxShadow: { x: 'dimension', @@ -36,6 +34,55 @@ const typeMaps = { }, }; +/** + * This is a recursive function to dig into composite tokens and lift up the token values in a Style Dictionary format. + * Composite token example + * "box-shadow": { + * "0": { + * "value": { + * "x": "0", + * "y": "0", + * "blur": "0", + * "spread": "0", + * "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + * "type": "dropShadow" + * }, + * "type": "boxShadow" + * }, + * } + * + * will become... + * + * "box-shadow": { + * "0": { + * "x": { + * "value": "0", + * "type": "dropShadow" + * }, + * "y": { + * "value": "0", + * "type": "dropShadow" + * }, + * "blur": { + * "value": "0", + * "type": "dropShadow" + * }, + * "spread": { + * "value": "0", + * "type": "dropShadow" + * }, + * "color": { + * "value": "rgba($core.color.neutral.blk-240, $core.opacity.0)", + * "type": "dropShadow" + * }, + * }, + * } + * + * @param compositeToken the composite token object + * @param isShadow is a drop shadow? + * @param handleValue a function to determine how the final token value string should be passed to Style Dictionary + * @returns + */ export function expandToken(compositeToken: SingleToken, isShadow = false, handleValue = (v) => v) { const expandedObj = {} as SingleToken; const getType = (key: string) => typeMaps[compositeToken.type][key] ?? key; @@ -68,6 +115,13 @@ export function expandToken(compositeToken: SingleToken, isShadow = false return expandedObj; } +/** + * + * @param token Style Dictionary token object + * @param condition check if the token should be expanded or not + * @param filePath the file path where the token came from + * @returns boolean + */ export function shouldExpand( token: T, condition: boolean | ExpandFilter, diff --git a/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts b/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts index 239cecf66dc..ee14913d152 100644 --- a/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts +++ b/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts @@ -1,13 +1,18 @@ +/** + * Some tokens defined in Figma Token Studio do not used the common { [variable.name] } for token references. + * This function loops over each value, finds custom token references and converts them to the expected Style Dictionary format. + * + * @param customReferenceTokenIndicator a regex to find the token references + * @returns the reference format expected by Style Dictionary "{ [variable.name] }" + */ export function convertTokenToStyleDictionaryFormat(customReferenceTokenIndicator: RegExp) { return (value: string | number) => { let newValue = `${value}`; const matchesArr = [...newValue.matchAll(customReferenceTokenIndicator)]; - if (matchesArr.length > 0) { - matchesArr.forEach((match) => { - const figmaVariable = match[0]; - newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); - }); - } + matchesArr.forEach((match) => { + const figmaVariable = match[0]; + newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); + }); return newValue; } } diff --git a/tools/token-transformer/utils/getSortedTokens.ts b/tools/token-transformer/utils/getSortedTokens.ts deleted file mode 100644 index e82c8cb5f5c..00000000000 --- a/tools/token-transformer/utils/getSortedTokens.ts +++ /dev/null @@ -1,40 +0,0 @@ -import sd, { Dictionary, File, Platform, Options, TransformedTokens, TransformedToken } from "style-dictionary"; - -function includeReferenceTokens(token: TransformedToken, dictionary: Dictionary, tokenSets: TransformedTokens[], pointer: number) { - let value = JSON.stringify(token.value); - - if (!Array.isArray(tokenSets[pointer])) { - while (tokenSets.length <= pointer) { - tokenSets.push({}) - } - } - - try { - const refs = dictionary.getReferences(token.original.value); - refs.forEach(ref => { - tokenSets = includeReferenceTokens(ref, dictionary, tokenSets, pointer + 1); - }); - } catch (error) { - console.error(error) - } - - const updatedToken = { ...token, value } - tokenSets[pointer][token.name] = updatedToken; - - return tokenSets; -} - -export function getSortedTokens(dictionary: Dictionary, options: Options, includedTokenSets: TransformedTokens[] = []): TransformedTokens[] { - return dictionary.allTokens.reduce((acc, token, idx) => { - if((!!options.sourceReferencesOnly && token.isSource) || !options.sourceReferencesOnly) { - acc = includeReferenceTokens(token, dictionary, acc, 0) - } - - return idx === dictionary.allTokens.length - 1 ? acc.reverse() : acc; - }, includedTokenSets).reduce((acc, tokenSet) => { - Object.values(tokenSet).forEach((token) => { - acc.push(token) - }) - return [...acc]; -}, []); -} diff --git a/tools/token-transformer/utils/matchList.ts b/tools/token-transformer/utils/matchList.ts new file mode 100644 index 00000000000..607b8fcb816 --- /dev/null +++ b/tools/token-transformer/utils/matchList.ts @@ -0,0 +1,9 @@ +/** + * @param str the string to find in the list + * @param list the list of strings to match with the provided string + * @param regexExclude a regular expression defining strings that should always be excluded + * @returns boolean + */ +export const matchList = (str: string, list: string[], regexExclude: RegExp) => { + return list.some((value) => str.includes(value) && !regexExclude.test(str)); +} diff --git a/tools/token-transformer/utils/parseName.ts b/tools/token-transformer/utils/parseName.ts index cef8cbd1973..5256210f3ad 100644 --- a/tools/token-transformer/utils/parseName.ts +++ b/tools/token-transformer/utils/parseName.ts @@ -1,3 +1,9 @@ +/** + * + * @param name the file name passed from the themes object + * @param prefix an optional prefix for each file name + * @returns a camel case file name from the passed name, optionally starting with a prefix + */ export function parseName(name: string, prefix?: string) { const regexWord = /^\w+$/; diff --git a/tools/token-transformer/utils/parseTokenPath.ts b/tools/token-transformer/utils/parseTokenPath.ts index 5653e7bfa48..18f633730bd 100644 --- a/tools/token-transformer/utils/parseTokenPath.ts +++ b/tools/token-transformer/utils/parseTokenPath.ts @@ -1,4 +1,11 @@ -export const parseTokenPath = (path) => path.reduce((acc, p, idx) => { +/** + * Replaces the word "color" with "ui" when it is the first value in the path and removes the word "default" from the final token names. + * This puts generated tokens in alignment with the theme variable names in Calcite-Colors + * + * @param path the path to each token value in the Style Dictionary token object + * @returns an updated token path + */ +export const parseTokenPath = (path: string[]) => path.reduce((acc, p, idx) => { if (idx === 0 && p === 'color') { acc.push('ui'); } else if (p === 'default') { diff --git a/tools/token-transformer/utils/regex.ts b/tools/token-transformer/utils/regex.ts index 0aa48f5b854..11d4f70301f 100644 --- a/tools/token-transformer/utils/regex.ts +++ b/tools/token-transformer/utils/regex.ts @@ -1,3 +1,9 @@ +// Match files and tokens which include "[" or "]" export const matchPlaceholderElement = new RegExp(/[\[\]]/, 'g'); +// Match custom variable indicator created by Designers in Token Studio. +// Using the ${token.name} format in Token Studio makes it much easier for Designers to search for token references while doing their work. export const tokenStudioCustomVariableIndicator = new RegExp(/\$[.\w-]+/, 'g'); + +// Match files and tokens which include "backup", "[", "]", or file extensions +export const matchExclusions = /(backup|\[|\])(?=\.\w+$)/ From bc5c7a899ebf4293261d9ea338e71c4334c0a623 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 10:14:04 -0700 Subject: [PATCH 602/696] refactor: setup token transformer as a node app MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit token transformer will eventually be it’s own internal package. Just setting up the bin for that now. This is not currently exported. --- bin/run.js | 13 +++++++++++++ package.json | 3 +-- tools/token-transformer/index.test.ts | 12 ------------ tools/token-transformer/index.ts | 17 ----------------- 4 files changed, 14 insertions(+), 31 deletions(-) create mode 100644 bin/run.js delete mode 100644 tools/token-transformer/index.test.ts delete mode 100644 tools/token-transformer/index.ts diff --git a/bin/run.js b/bin/run.js new file mode 100644 index 00000000000..9ea807b1001 --- /dev/null +++ b/bin/run.js @@ -0,0 +1,13 @@ +import { readFileSync } from "fs"; +import { getThemes } from "../tools/build/getThemes.js"; +import { run } from "../tools/build/sd-run.js"; + +/** + * Get all themes defined int the tokens/$themes.json and generate a Style Dictionary output for each theme + */ +const rawData = readFileSync("tokens/$themes.json", { encoding: "utf-8" }); +const data = JSON.parse(rawData); + +getThemes(data).then((themes) => + Promise.all(themes.map((theme) => run("tokens", "build", theme))) +); diff --git a/package.json b/package.json index f41030088f0..0c5a6779f4d 100644 --- a/package.json +++ b/package.json @@ -63,8 +63,7 @@ "test:dev": "jest --watch", "build": "npm run build:ts && npm run build:tokens", "build:ts": "tsc --project tsconfig.prod.json", - "build:tokens": "node tools/build/index.js", - "build:transformer": "token-transformer tokens sd-tokens/output.json", + "build:tokens": "node bin/run.js", "release": "echo 'release is still TBD. Please message Ali Stump or Erik Harper-Dicianno for more information." }, "devDependencies": { diff --git a/tools/token-transformer/index.test.ts b/tools/token-transformer/index.test.ts deleted file mode 100644 index f9d5f739a25..00000000000 --- a/tools/token-transformer/index.test.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { existsSync } from "fs"; -import { transformTokens } from "." - -describe('Token transformer integration tests', () => { - beforeAll(() => { - return transformTokens(); - }) - - it('should build', () => { - expect(existsSync('build')).toBeTruthy(); - }) -}) diff --git a/tools/token-transformer/index.ts b/tools/token-transformer/index.ts deleted file mode 100644 index 26c384e9a72..00000000000 --- a/tools/token-transformer/index.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { readFileSync } from "fs"; -import { run } from "./sd-run.js"; -import { getThemes, ThemeFileInterface } from './getThemes.js'; - -// asynchronously loops over all themes defined in tokens/$themes.json and generates token files -// in the /build directory in the asset formats defined in the Style Dictionary configuration -export const transformTokens = async () => { - const rawData = await readFileSync('tokens/$themes.json', {encoding: 'utf-8'}); - const data: ThemeFileInterface[] = JSON.parse(rawData); - const themes = await getThemes(data); - return Promise.all(themes.map((theme) => run('tokens', 'build', theme))); -} - -if (process.env.NODE_ENV !== 'test') { - // Make this file self invoking unless the process is in test mode - transformTokens(); -} From d116fd1f9c3c21b743d2ce9c267f9701d1bc0b81 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 10:29:15 -0700 Subject: [PATCH 603/696] chore: add linters prettier, eslint, markdownlint --- .eslintrc.json | 86 ++ .lintstagedrc.json | 8 + .prettierignore | 4 + .prettierrc.json | 19 + package-lock.json | 2135 +++++++++++++++++++++++++++++++++++++++++++- package.json | 8 + 6 files changed, 2231 insertions(+), 29 deletions(-) create mode 100644 .eslintrc.json create mode 100644 .lintstagedrc.json create mode 100644 .prettierignore create mode 100644 .prettierrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000000..330e0134e72 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,86 @@ +{ + "env": { + "jest/globals": true + }, + "extends": [ + "plugin:@typescript-eslint/recommended", + "plugin:jest/recommended", + "plugin:jsdoc/recommended", + "prettier" + ], + "ignorePatterns": ["build", "bin", "node_modules"], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "project": "./tsconfig.json", + "ecmaVersion": 2018, + "sourceType": "module" + }, + "plugins": [ + "@esri/calcite-components", + "@typescript-eslint", + "eslint-plugin-react", + "jest", + "jsdoc", + "prettier", + "unicorn" + ], + "rules": { + "@typescript-eslint/ban-types": "warn", + "@typescript-eslint/explicit-module-boundary-types": [ + "error", + { + "allowArgumentsExplicitlyTypedAsAny": true, + "allowedNames": [ + "connectedCallback", + "disconnectedCallback", + "componentWillRender", + "componentDidRender", + "componentWillLoad", + "componentDidLoad", + "componentWillUpdate", + "componentDidUpdate", + "render" + ] + } + ], + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-unused-vars": "error", + "curly": "error", + "jest/expect-expect": "off", + "jest/no-export": "warn", + "jsdoc/check-tag-names": "off", + "jsdoc/require-jsdoc": "off", + "lines-between-class-members": ["error", "always"], + "no-eval": "error", + "no-implied-eval": "error", + "no-multiple-empty-lines": [ + "error", + { + "max": 1 + } + ], + "no-new-func": "error", + "no-unneeded-ternary": "error", + "unicorn/prefer-ternary": "error", + "unicorn/prevent-abbreviations": [ + "error", + { + "extendDefaultReplacements": false, + "replacements": { + "e": { + "error": true, + "event": true + } + }, + "checkProperties": false, + "checkFilenames": false + } + ] + }, + "settings": { + "jsdoc": { + "ignoreInternal": true, + "ignorePrivate": true + } + } +} diff --git a/.lintstagedrc.json b/.lintstagedrc.json new file mode 100644 index 00000000000..df11a3c94e3 --- /dev/null +++ b/.lintstagedrc.json @@ -0,0 +1,8 @@ +{ + "*.{json,html,yml}": ["prettier --write"], + "*.{ts,tsx}": ["eslint --ext .ts,.tsx --fix", "prettier --write"], + "*.md": [ + "markdownlint --fix --disable MD024 MD013 MD041 MD033", + "prettier --write" + ] +} diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000000..c680f387fb9 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,4 @@ +bin/ +build/ +tools/build/ +node_modules/ diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 00000000000..2a5f9b07615 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,19 @@ +{ + "arrowParens": "always", + "bracketSameLine": false, + "bracketSpacing": true, + "printWidth": 120, + "semi": true, + "singleQuote": false, + "tabWidth": 2, + "trailingComma": "none", + "useTabs": false, + "overrides": [ + { + "files": "*.tsx", + "options": { + "printWidth": 100 + } + } + ] +} diff --git a/package-lock.json b/package-lock.json index 61fa38a7004..26c4c7962c5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,8 +13,11 @@ "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "change-case": "^4.1.2", + "eslint": "^8.39.0", + "eslint-plugin-unicorn": "^46.0.0", "jest": "^29.5.0", "lodash-es": "^4.17.21", + "markdownlint": "^0.28.2", "style-dictionary": "^3.7.1", "token-transformer": "^0.0.27", "ts-jest": "^29.0.5", @@ -617,6 +620,140 @@ "@jridgewell/sourcemap-codec": "^1.4.10" } }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", + "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.1", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/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/@eslint/eslintrc/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/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/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz", + "integrity": "sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -974,6 +1111,41 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", "dev": true }, + "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/@sinclair/typebox": { "version": "0.25.24", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", @@ -1135,6 +1307,12 @@ "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", "dev": true }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, "node_modules/@types/prettier": { "version": "2.7.2", "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", @@ -1174,6 +1352,15 @@ "node": ">=0.4.0" } }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, "node_modules/acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", @@ -1183,6 +1370,22 @@ "node": ">=0.4.0" } }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -1424,6 +1627,18 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -1549,6 +1764,27 @@ "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", "dev": true }, + "node_modules/clean-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", + "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/clean-regexp/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/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -1684,6 +1920,12 @@ "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, "node_modules/deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", @@ -1720,6 +1962,18 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", @@ -1754,6 +2008,18 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, + "node_modules/entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -1769,29 +2035,354 @@ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, "engines": { - "node": ">=6" + "node": ">=6" + } + }, + "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/eslint": { + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz", + "integrity": "sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.2", + "@eslint/js": "8.39.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.0", + "espree": "^9.5.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-unicorn": { + "version": "46.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", + "integrity": "sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.19.1", + "@eslint-community/eslint-utils": "^4.1.2", + "ci-info": "^3.6.1", + "clean-regexp": "^1.0.0", + "esquery": "^1.4.0", + "indent-string": "^4.0.0", + "is-builtin-module": "^3.2.0", + "jsesc": "^3.0.2", + "lodash": "^4.17.21", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.24", + "regjsparser": "^0.9.1", + "safe-regex": "^2.1.1", + "semver": "^7.3.8", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=14.18" + }, + "funding": { + "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" + }, + "peerDependencies": { + "eslint": ">=8.28.0" + } + }, + "node_modules/eslint-plugin-unicorn/node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/eslint-plugin-unicorn/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/eslint-plugin-unicorn/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-unicorn/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/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", + "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/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/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/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/eslint/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/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/eslint/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/eslint/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/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", + "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "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/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" } }, - "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==", + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=4.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==", + "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, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, "node_modules/execa": { @@ -1848,12 +2439,33 @@ "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", "dev": true }, + "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-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "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/fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", @@ -1863,6 +2475,18 @@ "bser": "2.1.1" } }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -1888,6 +2512,25 @@ "node": ">=8" } }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, "node_modules/fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -1987,6 +2630,18 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -2002,6 +2657,12 @@ "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "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/has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -2033,6 +2694,12 @@ "tslib": "^2.0.3" } }, + "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/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", @@ -2048,6 +2715,40 @@ "node": ">=10.17.0" } }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "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/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -2076,6 +2777,15 @@ "node": ">=0.8.19" } }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -2098,6 +2808,21 @@ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "dependencies": { + "builtin-modules": "^3.3.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-core-module": { "version": "2.12.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", @@ -2110,6 +2835,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -2128,6 +2862,18 @@ "node": ">=6" } }, + "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-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -2137,6 +2883,15 @@ "node": ">=0.12.0" } }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -2812,6 +3567,16 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/js-sdsl": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", + "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -2849,6 +3614,18 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", @@ -2897,12 +3674,34 @@ "node": ">=6" } }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, + "node_modules/linkify-it": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz", + "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", + "dev": true, + "dependencies": { + "uc.micro": "^1.0.1" + } + }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -2933,6 +3732,12 @@ "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "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/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -2981,6 +3786,56 @@ "tmpl": "1.0.5" } }, + "node_modules/markdown-it": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", + "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it/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/markdownlint": { + "version": "0.28.2", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.28.2.tgz", + "integrity": "sha512-yYaQXoKKPV1zgrFsyAuZPEQoe+JrY9GDag9ObKpk09twx4OCU5lut+0/kZPrQ3W7w82SmgKhd7D8m34aG1unVw==", + "dev": true, + "dependencies": { + "markdown-it": "13.0.1", + "markdownlint-micromark": "0.1.2" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/markdownlint-micromark": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.2.tgz", + "integrity": "sha512-jRxlQg8KpOfM2IbCL9RXM8ZiYWz2rv6DlZAnGv8ASJQpUh6byTBnEsbuMZ6T2/uIgntyf7SKg/mEaEBo1164fQ==", + "dev": true, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", @@ -3009,6 +3864,15 @@ "node": ">=6" } }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -3055,6 +3919,27 @@ "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", "dev": true }, + "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.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "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", @@ -3100,6 +3985,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -3161,6 +4063,18 @@ "tslib": "^2.0.3" } }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", @@ -3271,6 +4185,15 @@ "node": ">=8" } }, + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/postcss-calc-ast-parser": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", @@ -3289,6 +4212,15 @@ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "dev": true }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/pretty-format": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", @@ -3328,6 +4260,15 @@ "node": ">= 6" } }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/pure-rand": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz", @@ -3344,12 +4285,112 @@ } ] }, + "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/react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, + "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/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/regexp-tree": { + "version": "0.1.27", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", + "dev": true, + "bin": { + "regexp-tree": "bin/regexp-tree" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -3406,6 +4447,63 @@ "node": ">=10" } }, + "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/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", + "integrity": "sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==", + "dev": true, + "dependencies": { + "regexp-tree": "~0.1.1" + } + }, "node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -3497,6 +4595,38 @@ "source-map": "^0.6.0" } }, + "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.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "dev": true + }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", @@ -3572,6 +4702,18 @@ "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/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", @@ -3645,6 +4787,12 @@ "node": ">=8" } }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, "node_modules/tinycolor2": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", @@ -3818,6 +4966,18 @@ "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", "dev": true }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, "node_modules/type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", @@ -3852,6 +5012,12 @@ "node": ">=12.20" } }, + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true + }, "node_modules/universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -3909,6 +5075,15 @@ "tslib": "^2.0.3" } }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, "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", @@ -3935,6 +5110,16 @@ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "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/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -3959,6 +5144,15 @@ "node": ">= 8" } }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -4512,6 +5706,99 @@ } } }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", + "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", + "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.1", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "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 + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "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" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "@eslint/js": { + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz", + "integrity": "sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -4798,6 +6085,32 @@ } } }, + "@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" + } + }, "@sinclair/typebox": { "version": "0.25.24", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", @@ -4956,6 +6269,12 @@ "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", "dev": true }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, "@types/prettier": { "version": "2.7.2", "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", @@ -4989,12 +6308,31 @@ "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", "dev": true }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, "acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "dev": true }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, "ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -5175,6 +6513,12 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, + "builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true + }, "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -5262,6 +6606,23 @@ "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", "dev": true }, + "clean-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", + "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "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 + } + } + }, "cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -5373,6 +6734,12 @@ "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, "deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", @@ -5397,6 +6764,15 @@ "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", "dev": true }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, "dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", @@ -5425,26 +6801,229 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "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==", + "entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "dev": true + }, + "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" + } + }, + "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": "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 + }, + "eslint": { + "version": "8.39.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz", + "integrity": "sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.2", + "@eslint/js": "8.39.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.0", + "espree": "^9.5.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.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 + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "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" + } + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "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" + } + }, + "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" + } + }, + "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" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "eslint-plugin-unicorn": { + "version": "46.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", + "integrity": "sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.19.1", + "@eslint-community/eslint-utils": "^4.1.2", + "ci-info": "^3.6.1", + "clean-regexp": "^1.0.0", + "esquery": "^1.4.0", + "indent-string": "^4.0.0", + "is-builtin-module": "^3.2.0", + "jsesc": "^3.0.2", + "lodash": "^4.17.21", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.24", + "regjsparser": "^0.9.1", + "safe-regex": "^2.1.1", + "semver": "^7.3.8", + "strip-indent": "^3.0.0" + }, + "dependencies": { + "jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true + }, + "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" + } + }, + "semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", "dev": true, "requires": { - "is-arrayish": "^0.2.1" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" } }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "eslint-visitor-keys": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", + "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", "dev": true }, - "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 + "espree": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", + "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", + "dev": true, + "requires": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.0" + } }, "esprima": { "version": "4.0.1", @@ -5452,6 +7031,36 @@ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "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 + }, "execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", @@ -5494,12 +7103,33 @@ "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", "dev": true }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "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" + } + }, "fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", @@ -5509,6 +7139,15 @@ "bser": "2.1.1" } }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -5528,6 +7167,22 @@ "path-exists": "^4.0.0" } }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -5596,6 +7251,15 @@ "path-is-absolute": "^1.0.0" } }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -5608,6 +7272,12 @@ "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "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 + }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", @@ -5633,6 +7303,12 @@ "tslib": "^2.0.3" } }, + "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 + }, "html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", @@ -5645,6 +7321,30 @@ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "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 + } + } + }, "import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -5661,6 +7361,12 @@ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -5683,6 +7389,15 @@ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, + "is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, + "requires": { + "builtin-modules": "^3.3.0" + } + }, "is-core-module": { "version": "2.12.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", @@ -5692,6 +7407,12 @@ "has": "^1.0.3" } }, + "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": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", @@ -5704,12 +7425,27 @@ "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "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-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-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, "is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -6228,6 +7964,12 @@ } } }, + "js-sdsl": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", + "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", + "dev": true + }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -6256,6 +7998,18 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, "json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", @@ -6290,12 +8044,31 @@ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, + "linkify-it": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz", + "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", + "dev": true, + "requires": { + "uc.micro": "^1.0.1" + } + }, "locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -6323,6 +8096,12 @@ "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "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 + }, "lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -6365,6 +8144,49 @@ "tmpl": "1.0.5" } }, + "markdown-it": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", + "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", + "dev": true, + "requires": { + "argparse": "^2.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + } + } + }, + "markdownlint": { + "version": "0.28.2", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.28.2.tgz", + "integrity": "sha512-yYaQXoKKPV1zgrFsyAuZPEQoe+JrY9GDag9ObKpk09twx4OCU5lut+0/kZPrQ3W7w82SmgKhd7D8m34aG1unVw==", + "dev": true, + "requires": { + "markdown-it": "13.0.1", + "markdownlint-micromark": "0.1.2" + } + }, + "markdownlint-micromark": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.2.tgz", + "integrity": "sha512-jRxlQg8KpOfM2IbCL9RXM8ZiYWz2rv6DlZAnGv8ASJQpUh6byTBnEsbuMZ6T2/uIgntyf7SKg/mEaEBo1164fQ==", + "dev": true + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", + "dev": true + }, "merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", @@ -6387,6 +8209,12 @@ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true + }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -6430,6 +8258,26 @@ "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", "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.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", @@ -6463,6 +8311,20 @@ "mimic-fn": "^2.1.0" } }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, "p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -6508,6 +8370,15 @@ "tslib": "^2.0.3" } }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, "parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", @@ -6591,6 +8462,12 @@ "find-up": "^4.0.0" } }, + "pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "dev": true + }, "postcss-calc-ast-parser": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", @@ -6606,6 +8483,12 @@ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", "dev": true }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, "pretty-format": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", @@ -6635,18 +8518,92 @@ "sisteransi": "^1.0.5" } }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true + }, "pure-rand": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz", "integrity": "sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==", "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 + }, "react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "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": { + "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 + } + } + }, + "regexp-tree": { + "version": "0.1.27", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", + "dev": true + }, + "regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true + } + } + }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -6685,6 +8642,39 @@ "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", + "integrity": "sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==", + "dev": true, + "requires": { + "regexp-tree": "~0.1.1" + } + }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -6761,6 +8751,38 @@ "source-map": "^0.6.0" } }, + "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.13", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", + "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "dev": true + }, "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", @@ -6818,6 +8840,15 @@ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "requires": { + "min-indent": "^1.0.0" + } + }, "strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", @@ -6867,6 +8898,12 @@ "minimatch": "^3.0.4" } }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, "tinycolor2": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", @@ -6972,6 +9009,15 @@ "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", "dev": true }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, "type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", @@ -6990,6 +9036,12 @@ "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", "dev": true }, + "uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "dev": true + }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -7024,6 +9076,15 @@ "tslib": "^2.0.3" } }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, "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", @@ -7049,6 +9110,16 @@ } } }, + "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" + } + }, "walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -7067,6 +9138,12 @@ "isexe": "^2.0.0" } }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", diff --git a/package.json b/package.json index 0c5a6779f4d..6ba01322f76 100644 --- a/package.json +++ b/package.json @@ -64,6 +64,11 @@ "build": "npm run build:ts && npm run build:tokens", "build:ts": "tsc --project tsconfig.prod.json", "build:tokens": "node bin/run.js", + "lint": "npm run lint:eslint && npm run lint:markdown && npm run lint:prettier", + "lint:eslint": "eslint --ext .ts,.tsx --fix .", + "lint:prettier": "prettier --write .", + "lint:markdown": "markdownlint --fix --disable MD024 MD013 MD041 MD033", + "lint:staged": "lint-staged", "release": "echo 'release is still TBD. Please message Ali Stump or Erik Harper-Dicianno for more information." }, "devDependencies": { @@ -71,8 +76,11 @@ "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "change-case": "^4.1.2", + "eslint": "^8.39.0", + "eslint-plugin-unicorn": "^46.0.0", "jest": "^29.5.0", "lodash-es": "^4.17.21", + "markdownlint": "^0.28.2", "style-dictionary": "^3.7.1", "token-transformer": "^0.0.27", "ts-jest": "^29.0.5", From cf6cb74b51b58914af8568e911d66de6eb31d3c4 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 10:29:41 -0700 Subject: [PATCH 604/696] chore: format code to linter settings --- .github/workflows/sync_from_airtable.yml | 9 +- .github/workflows/sync_to_airtable.yml | 14 +- .vscode/settings.json | 4 +- CHANGELOG.md | 1 + README.md | 20 +-- tokens/$metadata.json | 2 +- tokens/brand/dark.json | 2 +- tokens/brand/global.json | 2 +- tokens/brand/light.json | 2 +- tokens/component/[template-comp-name].json | 2 +- tokens/component/accordion_backup.json | 2 +- tokens/component/action-bar-grid.json | 2 +- tokens/component/action-bar.json | 2 +- tokens/component/action-pad-grid.json | 2 +- tokens/component/action-pad.json | 2 +- tokens/component/action.json | 2 +- tokens/component/alert.json | 2 +- tokens/component/avatar.json | 2 +- tokens/component/block-section.json | 2 +- tokens/component/block.json | 2 +- tokens/component/button.json | 2 +- tokens/component/card.json | 2 +- tokens/component/checkbox.json | 2 +- tokens/component/chip.json | 2 +- tokens/component/color-picker.json | 2 +- tokens/component/combobox.json | 2 +- tokens/component/date-picker.json | 2 +- tokens/component/dropdown-item.json | 2 +- tokens/component/dropdown.json | 2 +- tokens/component/fab.json | 2 +- tokens/component/filter.json | 2 +- tokens/component/input-date-picker.json | 2 +- tokens/component/input-datetime-local.json | 2 +- tokens/component/input-email.json | 2 +- tokens/component/input-file.json | 2 +- tokens/component/input-message.json | 2 +- tokens/component/input-month.json | 2 +- tokens/component/input-number.json | 2 +- tokens/component/input-password.json | 2 +- tokens/component/input-search.json | 2 +- tokens/component/input-telephone.json | 2 +- tokens/component/input-time.json | 2 +- tokens/component/input-week.json | 2 +- tokens/component/label.json | 2 +- tokens/component/link.json | 2 +- tokens/component/loader.json | 2 +- tokens/component/modal.json | 2 +- tokens/component/notice.json | 2 +- tokens/component/pagination.json | 2 +- tokens/component/panel-header.json | 2 +- tokens/component/popover.json | 2 +- tokens/component/radio.json | 2 +- tokens/component/scrim.json | 2 +- tokens/component/segmented-control.json | 2 +- tokens/component/slider-histogram-range.json | 2 +- tokens/component/slider-histogram.json | 2 +- tokens/component/slider-range.json | 2 +- tokens/component/slider.json | 2 +- tokens/component/split-button.json | 2 +- tokens/component/stepper-item.json | 2 +- tokens/component/stepper.json | 2 +- tokens/component/switch.json | 2 +- tokens/component/tab-title.json | 2 +- tokens/component/textarea.json | 2 +- tokens/component/time-picker.json | 2 +- tokens/component/tip-manager.json | 2 +- tokens/component/tip.json | 2 +- tokens/component/tooltip.json | 2 +- tokens/component/tree-item.json | 2 +- tokens/core.json | 2 +- tokens/semantic.json | 2 +- tools/token-transformer/TransformOptions.ts | 16 +- tools/token-transformer/getThemes.ts | 18 +-- .../parse/expandComposites.ts | 46 +++--- tools/token-transformer/sd-run.ts | 142 +++++++++--------- .../transform/nameCamelCase.ts | 8 +- .../transform/nameKebabCase.ts | 8 +- .../utils/compositeTokens.ts | 64 ++++---- .../convertTokenToStyleDictionaryFormat.ts | 8 +- tools/token-transformer/utils/matchList.ts | 4 +- tools/token-transformer/utils/parseName.ts | 17 ++- .../token-transformer/utils/parseTokenPath.ts | 23 +-- tools/token-transformer/utils/regex.ts | 8 +- tsconfig.cjs.json | 6 +- tsconfig.json | 24 +-- tsconfig.prod.json | 6 +- 86 files changed, 293 insertions(+), 285 deletions(-) diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml index ba571d4ea8f..153b8b08768 100644 --- a/.github/workflows/sync_from_airtable.yml +++ b/.github/workflows/sync_from_airtable.yml @@ -49,7 +49,7 @@ jobs: assigned_unassigned: name: Assign or Unassign needs: existing_issue - if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'assigned/unassigned') + if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'assigned/unassigned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -114,7 +114,7 @@ jobs: labeled_unlabeled: name: Labeled or Unlabeled needs: existing_issue - if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'labeled/unlabeled') + if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'labeled/unlabeled') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -224,7 +224,7 @@ jobs: milestoned_demilestoned: name: Milestoned or Demilestoned needs: existing_issue - if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'milestoned/demilestoned') + if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'milestoned/demilestoned') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -292,7 +292,7 @@ jobs: edited: name: Edited needs: existing_issue - if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'edited') + if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'edited') runs-on: ubuntu-latest steps: - uses: actions/github-script@v6 @@ -369,4 +369,3 @@ jobs: core.info(JSON.stringify(issueCreateObject, null, 4)) throw new Error(err) } - diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index 5a5f126bea9..f94fd7687ca 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -2,7 +2,19 @@ name: Sync to Airtable on: issues: - types: [assigned, closed, demilestoned, edited, labeled, milestoned, opened, reopened, unassigned, unlabeled] + types: + [ + assigned, + closed, + demilestoned, + edited, + labeled, + milestoned, + opened, + reopened, + unassigned, + unlabeled, + ] jobs: issue_assigned: diff --git a/.vscode/settings.json b/.vscode/settings.json index 310757d7850..c158ef40c20 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,3 @@ { - "cSpell.words": [ - "typeof" - ] + "cSpell.words": ["typeof"] } diff --git a/CHANGELOG.md b/CHANGELOG.md index d6637e04998..1d013ff92fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # Changelog + All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), diff --git a/README.md b/README.md index 1f14417030d..bc7cee00129 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ npm install @esri/calcite-design-tokens Reference tokens in your CSS. ```css -@import '@esri/calcite-design-tokens/css'; +@import "@esri/calcite-design-tokens/css"; :root { --my-custom-token: var(--calcite-semantic-ui-color-text-1-light); @@ -21,11 +21,11 @@ Reference tokens in your CSS. Reference tokens in your JavaScript. ```js -import { calciteSemanticUiColorText_1Light } from '@esri/calcite-design-tokens'; +import { calciteSemanticUiColorText_1Light } from "@esri/calcite-design-tokens"; export function addTextStyle(component) { component.style.color = calciteSemanticUiColorText_1Light; - + return component; } ``` @@ -34,12 +34,12 @@ export function addTextStyle(component) { These are the published asset files generated by the token transformer -| Name | CSS | JavaScript (es6) | -| --- | --- | --- | -| Calcite Headless | @esri/calcite-design-tokens/css
@esri/calcite-design-tokens/css/headless | @esri/calcite-design-tokens
@esri/calcite-design-tokens/js/headless | -| Calcite Light | @esri/calcite-design-tokens/css/calcite/light | @esri/calcite-design-tokens/js/calcite/light | -| Calcite Dark | @esri/calcite-design-tokens/css/calcite/dark | @esri/calcite-design-tokens/js/calcite/dark | -| Calcite Brand Light | @esri/calcite-design-tokens/css/brand/light | @esri/calcite-design-tokens/js/brand/light | -| Calcite Brand Dark | @esri/calcite-design-tokens/css/brand/dark | @esri/calcite-design-tokens/js/brand/dark | +| Name | CSS | JavaScript (es6) | +| ------------------- | ----------------------------------------------------------------------------- | ------------------------------------------------------------------------ | +| Calcite Headless | @esri/calcite-design-tokens/css
@esri/calcite-design-tokens/css/headless | @esri/calcite-design-tokens
@esri/calcite-design-tokens/js/headless | +| Calcite Light | @esri/calcite-design-tokens/css/calcite/light | @esri/calcite-design-tokens/js/calcite/light | +| Calcite Dark | @esri/calcite-design-tokens/css/calcite/dark | @esri/calcite-design-tokens/js/calcite/dark | +| Calcite Brand Light | @esri/calcite-design-tokens/css/brand/light | @esri/calcite-design-tokens/js/brand/light | +| Calcite Brand Dark | @esri/calcite-design-tokens/css/brand/dark | @esri/calcite-design-tokens/js/brand/dark | For a full list of tokens and their detailes, please refer to https://developers.arcgis.com/calcite-design-system/tokens diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 47698db2c1b..be4d1de1ab8 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -73,4 +73,4 @@ "brand/light", "brand/dark" ] -} \ No newline at end of file +} diff --git a/tokens/brand/dark.json b/tokens/brand/dark.json index 9e26dfeeb6e..0967ef424bc 100644 --- a/tokens/brand/dark.json +++ b/tokens/brand/dark.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/tokens/brand/global.json b/tokens/brand/global.json index 9e26dfeeb6e..0967ef424bc 100644 --- a/tokens/brand/global.json +++ b/tokens/brand/global.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/tokens/brand/light.json b/tokens/brand/light.json index a55d3c5bc32..22b5d0a4a8d 100644 --- a/tokens/brand/light.json +++ b/tokens/brand/light.json @@ -17,4 +17,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/[template-comp-name].json b/tokens/component/[template-comp-name].json index 09df0d4a5e2..28be1f3d8f3 100644 --- a/tokens/component/[template-comp-name].json +++ b/tokens/component/[template-comp-name].json @@ -174,4 +174,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/accordion_backup.json b/tokens/component/accordion_backup.json index 5a67f8416b4..c384a7c7cbd 100644 --- a/tokens/component/accordion_backup.json +++ b/tokens/component/accordion_backup.json @@ -235,4 +235,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action-bar-grid.json b/tokens/component/action-bar-grid.json index f6cb19c3db7..8a749941084 100644 --- a/tokens/component/action-bar-grid.json +++ b/tokens/component/action-bar-grid.json @@ -88,4 +88,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action-bar.json b/tokens/component/action-bar.json index 4a6799bb4f8..6ecd954804c 100644 --- a/tokens/component/action-bar.json +++ b/tokens/component/action-bar.json @@ -88,4 +88,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action-pad-grid.json b/tokens/component/action-pad-grid.json index f8e082ace07..049b053aefa 100644 --- a/tokens/component/action-pad-grid.json +++ b/tokens/component/action-pad-grid.json @@ -102,4 +102,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action-pad.json b/tokens/component/action-pad.json index ec0f71fbc31..1dc431ea4df 100644 --- a/tokens/component/action-pad.json +++ b/tokens/component/action-pad.json @@ -102,4 +102,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/action.json b/tokens/component/action.json index 2349e7a7b82..876d77b88aa 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -41,7 +41,7 @@ "type": "color" } } - }, + }, "background": { "default": { "light": { diff --git a/tokens/component/alert.json b/tokens/component/alert.json index 698b1e3e623..6389f65c23c 100644 --- a/tokens/component/alert.json +++ b/tokens/component/alert.json @@ -255,4 +255,4 @@ "type": "boxShadow" } } -} \ No newline at end of file +} diff --git a/tokens/component/avatar.json b/tokens/component/avatar.json index 5694023e615..7fb35dbf070 100644 --- a/tokens/component/avatar.json +++ b/tokens/component/avatar.json @@ -137,4 +137,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/block-section.json b/tokens/component/block-section.json index 5910a5c22f0..b00dd8e69e8 100644 --- a/tokens/component/block-section.json +++ b/tokens/component/block-section.json @@ -146,4 +146,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/block.json b/tokens/component/block.json index df4d97c98a0..792ee23c212 100644 --- a/tokens/component/block.json +++ b/tokens/component/block.json @@ -220,4 +220,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/button.json b/tokens/component/button.json index f511c89f9ad..b5ea778ffd0 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -647,4 +647,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/card.json b/tokens/component/card.json index 558e2289c7d..4c5d9b52f93 100644 --- a/tokens/component/card.json +++ b/tokens/component/card.json @@ -138,4 +138,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/checkbox.json b/tokens/component/checkbox.json index cfa42420acf..983b205c5b8 100644 --- a/tokens/component/checkbox.json +++ b/tokens/component/checkbox.json @@ -107,4 +107,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/chip.json b/tokens/component/chip.json index 40fe4105df7..5ca4f2fee22 100644 --- a/tokens/component/chip.json +++ b/tokens/component/chip.json @@ -379,4 +379,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/color-picker.json b/tokens/component/color-picker.json index 54946927cf2..bfb2d7acbac 100644 --- a/tokens/component/color-picker.json +++ b/tokens/component/color-picker.json @@ -170,4 +170,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 8d724bffabd..0e85c49cc86 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -149,4 +149,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/date-picker.json b/tokens/component/date-picker.json index 122de315f3a..1ac23bcfbe5 100644 --- a/tokens/component/date-picker.json +++ b/tokens/component/date-picker.json @@ -376,4 +376,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 7329f59cbcd..15637853b05 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -381,4 +381,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index d349d6bf369..69073b41b28 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -55,4 +55,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/fab.json b/tokens/component/fab.json index 4c974a96854..0f9b2137e56 100644 --- a/tokens/component/fab.json +++ b/tokens/component/fab.json @@ -487,4 +487,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/filter.json b/tokens/component/filter.json index c5aeca71328..d25b6c24588 100644 --- a/tokens/component/filter.json +++ b/tokens/component/filter.json @@ -196,4 +196,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-date-picker.json b/tokens/component/input-date-picker.json index 66df7cfcad6..527f475ed77 100644 --- a/tokens/component/input-date-picker.json +++ b/tokens/component/input-date-picker.json @@ -246,4 +246,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-datetime-local.json b/tokens/component/input-datetime-local.json index 78d2248098f..fe38c1f122f 100644 --- a/tokens/component/input-datetime-local.json +++ b/tokens/component/input-datetime-local.json @@ -252,4 +252,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-email.json b/tokens/component/input-email.json index 8b318fe2ddd..f8d1a851cd0 100644 --- a/tokens/component/input-email.json +++ b/tokens/component/input-email.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-file.json b/tokens/component/input-file.json index 8b48fab1068..af0aea503cd 100644 --- a/tokens/component/input-file.json +++ b/tokens/component/input-file.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-message.json b/tokens/component/input-message.json index 3418886d3d6..3af48dc9ebf 100644 --- a/tokens/component/input-message.json +++ b/tokens/component/input-message.json @@ -69,4 +69,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-month.json b/tokens/component/input-month.json index f72e68c2e95..d19a3456868 100644 --- a/tokens/component/input-month.json +++ b/tokens/component/input-month.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-number.json b/tokens/component/input-number.json index 4410d2c2561..184ce785e4e 100644 --- a/tokens/component/input-number.json +++ b/tokens/component/input-number.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-password.json b/tokens/component/input-password.json index 1fb152a2415..8c35f83cc57 100644 --- a/tokens/component/input-password.json +++ b/tokens/component/input-password.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-search.json b/tokens/component/input-search.json index ea96f88a12d..ace08815333 100644 --- a/tokens/component/input-search.json +++ b/tokens/component/input-search.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-telephone.json b/tokens/component/input-telephone.json index 3116ce7c069..1c029ef0fbb 100644 --- a/tokens/component/input-telephone.json +++ b/tokens/component/input-telephone.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/input-time.json b/tokens/component/input-time.json index 9e26dfeeb6e..0967ef424bc 100644 --- a/tokens/component/input-time.json +++ b/tokens/component/input-time.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/tokens/component/input-week.json b/tokens/component/input-week.json index 10e3d2af452..6c4766ec929 100644 --- a/tokens/component/input-week.json +++ b/tokens/component/input-week.json @@ -266,4 +266,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/label.json b/tokens/component/label.json index b658a3053ad..d92f1356961 100644 --- a/tokens/component/label.json +++ b/tokens/component/label.json @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/link.json b/tokens/component/link.json index 4bd7249b874..91504e568a8 100644 --- a/tokens/component/link.json +++ b/tokens/component/link.json @@ -41,4 +41,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/loader.json b/tokens/component/loader.json index 5aa7993e951..8cc68b37918 100644 --- a/tokens/component/loader.json +++ b/tokens/component/loader.json @@ -127,4 +127,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/modal.json b/tokens/component/modal.json index 8b5fbb115f6..1d232964f5a 100644 --- a/tokens/component/modal.json +++ b/tokens/component/modal.json @@ -300,4 +300,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/notice.json b/tokens/component/notice.json index 2ee2de108a2..b281901e9ac 100644 --- a/tokens/component/notice.json +++ b/tokens/component/notice.json @@ -277,4 +277,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/pagination.json b/tokens/component/pagination.json index 8525fb9be8a..8aa9787ce6d 100644 --- a/tokens/component/pagination.json +++ b/tokens/component/pagination.json @@ -174,4 +174,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/panel-header.json b/tokens/component/panel-header.json index f0cb9f7c49a..b8df3ab480e 100644 --- a/tokens/component/panel-header.json +++ b/tokens/component/panel-header.json @@ -110,4 +110,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/popover.json b/tokens/component/popover.json index 63a043fe711..4ff8999971f 100644 --- a/tokens/component/popover.json +++ b/tokens/component/popover.json @@ -167,4 +167,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/radio.json b/tokens/component/radio.json index 8c72a63238d..ac338783b8b 100644 --- a/tokens/component/radio.json +++ b/tokens/component/radio.json @@ -121,4 +121,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/scrim.json b/tokens/component/scrim.json index 4d7d790e76c..3390ff5ad7c 100644 --- a/tokens/component/scrim.json +++ b/tokens/component/scrim.json @@ -15,4 +15,4 @@ "type": "opacity" } } -} \ No newline at end of file +} diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json index b661574f032..95f4854a9fc 100644 --- a/tokens/component/segmented-control.json +++ b/tokens/component/segmented-control.json @@ -151,4 +151,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/slider-histogram-range.json b/tokens/component/slider-histogram-range.json index 16b6feefc94..db2abf55292 100644 --- a/tokens/component/slider-histogram-range.json +++ b/tokens/component/slider-histogram-range.json @@ -281,4 +281,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/slider-histogram.json b/tokens/component/slider-histogram.json index 33970fe2dbe..60d588ac191 100644 --- a/tokens/component/slider-histogram.json +++ b/tokens/component/slider-histogram.json @@ -302,4 +302,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/slider-range.json b/tokens/component/slider-range.json index cc1df3ebeab..86159ecd864 100644 --- a/tokens/component/slider-range.json +++ b/tokens/component/slider-range.json @@ -223,4 +223,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/slider.json b/tokens/component/slider.json index 730942b650c..360133f67fa 100644 --- a/tokens/component/slider.json +++ b/tokens/component/slider.json @@ -10,7 +10,7 @@ "value": "$semantic.ui.color.text.1.dark", "type": "color" }, - "sm": { + "sm": { "value": "$semantic.font.default.regular.-2h", "type": "typography" }, diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index 42fc2c2282a..e9140c4af48 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -827,4 +827,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/stepper-item.json b/tokens/component/stepper-item.json index 837a28961c6..00c53b46670 100644 --- a/tokens/component/stepper-item.json +++ b/tokens/component/stepper-item.json @@ -369,4 +369,4 @@ "type": "opacity" } } -} \ No newline at end of file +} diff --git a/tokens/component/stepper.json b/tokens/component/stepper.json index 76ca139ef90..f1d30b3cc93 100644 --- a/tokens/component/stepper.json +++ b/tokens/component/stepper.json @@ -149,4 +149,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/switch.json b/tokens/component/switch.json index 1bfd307ea81..b541b35275b 100644 --- a/tokens/component/switch.json +++ b/tokens/component/switch.json @@ -175,4 +175,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tab-title.json b/tokens/component/tab-title.json index 6e0e9800f70..042fe740f66 100644 --- a/tokens/component/tab-title.json +++ b/tokens/component/tab-title.json @@ -250,4 +250,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/textarea.json b/tokens/component/textarea.json index ce0619db8fe..d81a12e450a 100644 --- a/tokens/component/textarea.json +++ b/tokens/component/textarea.json @@ -222,4 +222,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/time-picker.json b/tokens/component/time-picker.json index 18d7045ddac..4914a1f891d 100644 --- a/tokens/component/time-picker.json +++ b/tokens/component/time-picker.json @@ -160,4 +160,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tip-manager.json b/tokens/component/tip-manager.json index 734b91bf505..b384e02b073 100644 --- a/tokens/component/tip-manager.json +++ b/tokens/component/tip-manager.json @@ -115,4 +115,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tip.json b/tokens/component/tip.json index 402020b0202..fd3f1dd8476 100644 --- a/tokens/component/tip.json +++ b/tokens/component/tip.json @@ -111,4 +111,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tooltip.json b/tokens/component/tooltip.json index 51d50bce707..e35d8e63159 100644 --- a/tokens/component/tooltip.json +++ b/tokens/component/tooltip.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/component/tree-item.json b/tokens/component/tree-item.json index eb2d0b9fa5e..45708302807 100644 --- a/tokens/component/tree-item.json +++ b/tokens/component/tree-item.json @@ -173,4 +173,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/core.json b/tokens/core.json index cb806b085b7..a70b1a4f4e2 100644 --- a/tokens/core.json +++ b/tokens/core.json @@ -1697,4 +1697,4 @@ } } } -} \ No newline at end of file +} diff --git a/tokens/semantic.json b/tokens/semantic.json index 87211d78825..374ec1f9f50 100644 --- a/tokens/semantic.json +++ b/tokens/semantic.json @@ -1706,4 +1706,4 @@ } } } -} \ No newline at end of file +} diff --git a/tools/token-transformer/TransformOptions.ts b/tools/token-transformer/TransformOptions.ts index b02e2e5cc37..3342ea09d1f 100644 --- a/tools/token-transformer/TransformOptions.ts +++ b/tools/token-transformer/TransformOptions.ts @@ -5,17 +5,13 @@ import { SingleBoxShadowToken, SingleCompositionToken, SingleToken, - SingleTypographyToken, -} from '@tokens-studio/types'; + SingleTypographyToken +} from "@tokens-studio/types"; -export type Expandables = - | SingleCompositionToken - | SingleTypographyToken - | SingleBorderToken - | SingleBoxShadowToken; +export type Expandables = SingleCompositionToken | SingleTypographyToken | SingleBorderToken | SingleBoxShadowToken; -export const expandablesAsStrings = ['composition', 'typography', 'border', 'boxShadow'] as const; -export type ExpandablesAsStrings = typeof expandablesAsStrings[number]; +export const expandablesAsStrings = ["composition", "typography", "border", "boxShadow"] as const; +export type ExpandablesAsStrings = (typeof expandablesAsStrings)[number]; export type ExpandFilter = (token: T, filePath: string) => boolean; @@ -26,7 +22,7 @@ export type ExpandFilter = (token: T, filePath: string) = * @param {boolean} [composition=true] */ export interface ExpandOptions { - typography?: boolean | ExpandFilter; + typography?: boolean | ExpandFilter; border?: boolean | ExpandFilter; shadow?: boolean | ExpandFilter; composition?: boolean | ExpandFilter; diff --git a/tools/token-transformer/getThemes.ts b/tools/token-transformer/getThemes.ts index 6a5ffd98399..7f949912bd4 100644 --- a/tools/token-transformer/getThemes.ts +++ b/tools/token-transformer/getThemes.ts @@ -3,7 +3,7 @@ import { Options } from "style-dictionary"; export interface ThemeFileInterface { id: string; name: string; - selectedTokenSets: Record; + selectedTokenSets: Record; $figmaStyleReferences?: Record; } @@ -13,18 +13,18 @@ export type Theme = { disabled: string[]; source: string[]; id?: string; - options?: Options -} + options?: Options; +}; /** - * + * * @param themes an array of Figma Token Studio theme definition objects * @returns an array of Style Dictionary theme definition objects */ -export async function getThemes( themes: ThemeFileInterface[] ): Promise { +export async function getThemes(themes: ThemeFileInterface[]): Promise { return themes.map((themeConfig) => { - const themeTypes = {enabled: [], disabled: [], source: []}; - const { name, id, selectedTokenSets} = themeConfig; + const themeTypes = { enabled: [], disabled: [], source: [] }; + const { name, id, selectedTokenSets } = themeConfig; const { enabled, disabled, source } = Object.entries(selectedTokenSets).reduce((acc, [key, value]) => { acc[value].push(key); return acc; @@ -35,7 +35,7 @@ export async function getThemes( themes: ThemeFileInterface[] ): Promise, filePath: string, - transformOpts: TransformOptions = {}, + transformOpts: TransformOptions = {} ): DeepKeyTokenMap { - const opts = { ...transformOpts, expand: { @@ -31,34 +25,34 @@ export function expandComposites( typography: false, border: false, shadow: false, - ...transformOpts.expand, - }, + ...transformOpts.expand + } }; const returnSlice: DeepKeyTokenMap = {}; - const handleTokenStudioVariables = convertTokenToStyleDictionaryFormat(tokenStudioCustomVariableIndicator) + const handleTokenStudioVariables = convertTokenToStyleDictionaryFormat(tokenStudioCustomVariableIndicator); const newDictionary = Object.entries(dictionary).reduce((acc, [key, token]) => { const { type } = token; if (matchPlaceholderElement.test(`${key}`) || matchPlaceholderElement.test(`${token.value}`)) { return acc; } - + if (token.value && type) { - if (typeof type === 'string' && expandablesAsStringsArr.includes(type)) { - const expandType = (type as ExpandablesAsStrings) === 'boxShadow' ? 'shadow' : type; - const expand = shouldExpand( - token as Expandables, - opts.expand[expandType], - filePath, - ); + if (typeof type === "string" && expandablesAsStringsArr.includes(type)) { + const expandType = (type as ExpandablesAsStrings) === "boxShadow" ? "shadow" : type; + const expand = shouldExpand(token as Expandables, opts.expand[expandType], filePath); if (expand) { - const expandedToken = expandToken(token as SingleToken, expandType === 'shadow', handleTokenStudioVariables); + const expandedToken = expandToken( + token as SingleToken, + expandType === "shadow", + handleTokenStudioVariables + ); acc[key] = expandedToken; } } else { token.value = handleTokenStudioVariables(token.value as string); acc[key] = token; } - } else if (typeof token === 'object') { + } else if (typeof token === "object") { acc[key] = expandComposites(token as unknown as DeepKeyTokenMap, filePath, transformOpts); } return acc; diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index a50a53d4c2c..8ace1f5cd05 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -1,16 +1,16 @@ -import StyleDictionary from 'style-dictionary'; -import { registerTransforms } from '@tokens-studio/sd-transforms'; -import { expandComposites } from './parse/expandComposites.js'; -import { Theme } from './getThemes.js'; -import { nameCamelCase } from './transform/nameCamelCase.js'; -import { nameKebabCase } from './transform/nameKebabCase.js'; -import { parseName } from './utils/parseName.js'; -import { matchList } from './utils/matchList.js'; -import { matchExclusions } from './utils/regex.js'; +import StyleDictionary from "style-dictionary"; +import { registerTransforms } from "@tokens-studio/sd-transforms"; +import { expandComposites } from "./parse/expandComposites.js"; +import { Theme } from "./getThemes.js"; +import { nameCamelCase } from "./transform/nameCamelCase.js"; +import { nameKebabCase } from "./transform/nameKebabCase.js"; +import { parseName } from "./utils/parseName.js"; +import { matchList } from "./utils/matchList.js"; +import { matchExclusions } from "./utils/regex.js"; /** * Style Dictionary runner configuration overrides. - * + * * @param tokenDir the directory containing design token files * @param buildPath the directory to write generated assets to * @param theme @@ -20,22 +20,22 @@ import { matchExclusions } from './utils/regex.js'; * @param theme.source an array of partial file names matching the token files which should not always be included in the output but who's values should be used for variables references in the "enabled" files */ export const run = async ( - tokenDir: string = 'tokens', - buildPath: string = 'build', - theme: Pick + tokenDir: string = "tokens", + buildPath: string = "build", + theme: Pick ) => { const fileName = parseName(theme.name); - const include = theme.source.map(tokenFile => `${tokenDir}/${tokenFile}.json`); - const source = theme.enabled.map(tokenFile => `${tokenDir}/${tokenFile}.json`); + const include = theme.source.map((tokenFile) => `${tokenDir}/${tokenFile}.json`); + const source = theme.enabled.map((tokenFile) => `${tokenDir}/${tokenFile}.json`); const options = { enabled: theme.enabled, source: theme.source, disabled: theme.disabled, outputReferences: false, - sourceReferencesOnly: false, + sourceReferencesOnly: false }; - // Here we are registering the Transforms provided by Token Studio however, + // Here we are registering the Transforms provided by Token Studio however, // we need to pass "expand: false" so that we can use our own custom JSON file parser. // any references to "ts/..." below are references to these Token Studio transformers // https://github.com/tokens-studio/sd-transforms @@ -43,21 +43,21 @@ export const run = async ( // Registering Style Dictionary transformers https://amzn.github.io/style-dictionary/#/transforms?id=defining-custom-transforms StyleDictionary.registerTransform({ - name: 'name/calcite/camel', - type: 'name', + name: "name/calcite/camel", + type: "name", transformer: nameCamelCase - }) + }); StyleDictionary.registerTransform({ - name: 'name/calcite/kebab', - type: 'name', + name: "name/calcite/kebab", + type: "name", transformer: nameKebabCase - }) + }); StyleDictionary.registerFilter({ - name: 'filterSource', + name: "filterSource", matcher: (token) => token.isSource - }) + }); // We are programtically creating the Style Dictionary configuration here // https://amzn.github.io/style-dictionary/#/config @@ -68,60 +68,66 @@ export const run = async ( js: { prefix: "calcite", transforms: [ - 'ts/descriptionToComment', - 'ts/opacity', - 'ts/size/lineheight', - 'ts/type/fontWeight', - 'ts/resolveMath', - 'ts/size/css/letterspacing', - 'ts/color/css/hexrgba', - 'ts/color/modifiers', - 'name/calcite/camel', + "ts/descriptionToComment", + "ts/opacity", + "ts/size/lineheight", + "ts/type/fontWeight", + "ts/resolveMath", + "ts/size/css/letterspacing", + "ts/color/css/hexrgba", + "ts/color/modifiers", + "name/calcite/camel" ], buildPath: `${buildPath}/js/`, - files: [{ - destination: `${fileName}.js`, - format: "javascript/es6", - filter: /headless/gi.test(fileName) ? null : 'filterSource', - options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options, - }] + files: [ + { + destination: `${fileName}.js`, + format: "javascript/es6", + filter: /headless/gi.test(fileName) ? null : "filterSource", + options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options + } + ] }, css: { prefix: "calcite", transforms: [ - 'ts/descriptionToComment', - 'ts/size/px', - 'ts/opacity', - 'ts/size/lineheight', - 'ts/type/fontWeight', - 'ts/resolveMath', - 'ts/size/css/letterspacing', - 'ts/color/css/hexrgba', - 'ts/color/modifiers', - 'name/calcite/kebab', + "ts/descriptionToComment", + "ts/size/px", + "ts/opacity", + "ts/size/lineheight", + "ts/type/fontWeight", + "ts/resolveMath", + "ts/size/css/letterspacing", + "ts/color/css/hexrgba", + "ts/color/modifiers", + "name/calcite/kebab" ], buildPath: `${buildPath}/css/`, - files: [{ - destination: `${fileName}.css`, - format: "css/variables", - filter: /headless/gi.test(fileName) ? null : 'filterSource', - options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options, - }] + files: [ + { + destination: `${fileName}.css`, + format: "css/variables", + filter: /headless/gi.test(fileName) ? null : "filterSource", + options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options + } + ] } }, - parsers: [{ - pattern: /\.json$/, - parse: (file) => { - if (matchList(file.filePath, [...include, ...theme.source, ...theme.enabled], matchExclusions)) { - const obj = JSON.parse(file.contents); - const expanded = expandComposites(obj, file.filePath); - - return expanded; + parsers: [ + { + pattern: /\.json$/, + parse: (file) => { + if (matchList(file.filePath, [...include, ...theme.source, ...theme.enabled], matchExclusions)) { + const obj = JSON.parse(file.contents); + const expanded = expandComposites(obj, file.filePath); + + return expanded; + } + + return {}; } - - return {}; } - }] + ] }); try { @@ -130,4 +136,4 @@ export const run = async ( } catch (error) { console.error(error); } -} +}; diff --git a/tools/token-transformer/transform/nameCamelCase.ts b/tools/token-transformer/transform/nameCamelCase.ts index 35c3c244f53..20821df20d0 100644 --- a/tools/token-transformer/transform/nameCamelCase.ts +++ b/tools/token-transformer/transform/nameCamelCase.ts @@ -1,12 +1,12 @@ -import { camelCase } from 'change-case'; -import { parseTokenPath } from '../utils/parseTokenPath'; +import { camelCase } from "change-case"; +import { parseTokenPath } from "../utils/parseTokenPath"; /** - * + * * @param token Style Dictionary token object * @param options Style Dictionary format options * @returns an updated name for the token which will be used for the final output */ export function nameCamelCase(token, options) { - return camelCase( [options.prefix].concat(parseTokenPath(token.path)).join(' ') ); + return camelCase([options.prefix].concat(parseTokenPath(token.path)).join(" ")); } diff --git a/tools/token-transformer/transform/nameKebabCase.ts b/tools/token-transformer/transform/nameKebabCase.ts index 6c58cc33567..539103ec0d8 100644 --- a/tools/token-transformer/transform/nameKebabCase.ts +++ b/tools/token-transformer/transform/nameKebabCase.ts @@ -1,12 +1,12 @@ -import { paramCase } from 'change-case'; -import { parseTokenPath } from '../utils/parseTokenPath'; +import { paramCase } from "change-case"; +import { parseTokenPath } from "../utils/parseTokenPath"; /** - * + * * @param token Style Dictionary token object * @param options Style Dictionary format options * @returns an updated name for the token which will be used for the final output */ export function nameKebabCase(token, options) { - return paramCase( [options.prefix].concat(parseTokenPath(token.path)).join(' ') ); + return paramCase([options.prefix].concat(parseTokenPath(token.path)).join(" ")); } diff --git a/tools/token-transformer/utils/compositeTokens.ts b/tools/token-transformer/utils/compositeTokens.ts index 7d9c8049f59..f26d0ee5c84 100644 --- a/tools/token-transformer/utils/compositeTokens.ts +++ b/tools/token-transformer/utils/compositeTokens.ts @@ -1,37 +1,35 @@ -import { SingleToken } from '@tokens-studio/types'; -import { - ExpandFilter -} from '../TransformOptions.js'; -import { matchPlaceholderElement } from './regex.js'; +import { SingleToken } from "@tokens-studio/types"; +import { ExpandFilter } from "../TransformOptions.js"; +import { matchPlaceholderElement } from "./regex.js"; -// A customized type map based off Token Studio. +// A customized type map based off Token Studio. // This determines the applied "type" associated with each Style Dictionary token value const typeMaps = { boxShadow: { - x: 'dimension', - y: 'dimension', - blur: 'dimension', - spread: 'dimension', - type: 'other', + x: "dimension", + y: "dimension", + blur: "dimension", + spread: "dimension", + type: "other" }, border: { - width: 'borderWidth', - style: 'other', + width: "borderWidth", + style: "other" }, composition: { - typography: 'fontSizes', - fontWeight: 'fontWeights', + typography: "fontSizes", + fontWeight: "fontWeights" }, typography: { - fontFamily: 'fontFamilies', - fontWeight: 'fontWeights', - lineHeight: 'lineHeights', - fontSize: 'fontSizes', - letterSpacing: 'spacing', - paragraphSpacing: 'spacing', - textDecoration: 'fontStyle', - textCase: 'textCase', - }, + fontFamily: "fontFamilies", + fontWeight: "fontWeights", + lineHeight: "lineHeights", + fontSize: "fontSizes", + letterSpacing: "spacing", + paragraphSpacing: "spacing", + textDecoration: "fontStyle", + textCase: "textCase" + } }; /** @@ -50,9 +48,9 @@ const typeMaps = { * "type": "boxShadow" * }, * } - * + * * will become... - * + * * "box-shadow": { * "0": { * "x": { @@ -77,11 +75,11 @@ const typeMaps = { * }, * }, * } - * + * * @param compositeToken the composite token object * @param isShadow is a drop shadow? * @param handleValue a function to determine how the final token value string should be passed to Style Dictionary - * @returns + * @returns */ export function expandToken(compositeToken: SingleToken, isShadow = false, handleValue = (v) => v) { const expandedObj = {} as SingleToken; @@ -96,7 +94,7 @@ export function expandToken(compositeToken: SingleToken, isShadow = false } expandedObj[index + 1][key] = { value: `${handleValue(value)}`, - type: getType(key), + type: getType(key) }; }); }); @@ -107,7 +105,7 @@ export function expandToken(compositeToken: SingleToken, isShadow = false } expandedObj[key] = { value: `${handleValue(value)}`, - type: getType(key), + type: getType(key) }; }); } @@ -116,7 +114,7 @@ export function expandToken(compositeToken: SingleToken, isShadow = false } /** - * + * * @param token Style Dictionary token object * @param condition check if the token should be expanded or not * @param filePath the file path where the token came from @@ -125,9 +123,9 @@ export function expandToken(compositeToken: SingleToken, isShadow = false export function shouldExpand( token: T, condition: boolean | ExpandFilter, - filePath: string, + filePath: string ): boolean { - if (typeof condition === 'function') { + if (typeof condition === "function") { return condition(token, filePath); } return condition; diff --git a/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts b/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts index ee14913d152..5cd58c568f4 100644 --- a/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts +++ b/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts @@ -1,8 +1,8 @@ /** * Some tokens defined in Figma Token Studio do not used the common { [variable.name] } for token references. * This function loops over each value, finds custom token references and converts them to the expected Style Dictionary format. - * - * @param customReferenceTokenIndicator a regex to find the token references + * + * @param customReferenceTokenIndicator a regex to find the token references * @returns the reference format expected by Style Dictionary "{ [variable.name] }" */ export function convertTokenToStyleDictionaryFormat(customReferenceTokenIndicator: RegExp) { @@ -10,9 +10,9 @@ export function convertTokenToStyleDictionaryFormat(customReferenceTokenIndicato let newValue = `${value}`; const matchesArr = [...newValue.matchAll(customReferenceTokenIndicator)]; matchesArr.forEach((match) => { - const figmaVariable = match[0]; + const figmaVariable = match[0]; newValue = newValue.replace(figmaVariable, `{${figmaVariable.slice(1)}}`); }); return newValue; - } + }; } diff --git a/tools/token-transformer/utils/matchList.ts b/tools/token-transformer/utils/matchList.ts index 607b8fcb816..233f27feec3 100644 --- a/tools/token-transformer/utils/matchList.ts +++ b/tools/token-transformer/utils/matchList.ts @@ -5,5 +5,5 @@ * @returns boolean */ export const matchList = (str: string, list: string[], regexExclude: RegExp) => { - return list.some((value) => str.includes(value) && !regexExclude.test(str)); -} + return list.some((value) => str.includes(value) && !regexExclude.test(str)); +}; diff --git a/tools/token-transformer/utils/parseName.ts b/tools/token-transformer/utils/parseName.ts index 5256210f3ad..4226e9b4ed6 100644 --- a/tools/token-transformer/utils/parseName.ts +++ b/tools/token-transformer/utils/parseName.ts @@ -1,20 +1,20 @@ /** - * + * * @param name the file name passed from the themes object - * @param prefix an optional prefix for each file name + * @param prefix an optional prefix for each file name * @returns a camel case file name from the passed name, optionally starting with a prefix */ export function parseName(name: string, prefix?: string) { const regexWord = /^\w+$/; - function createNewWord (acc: string, word: string, idx: number) { - let newWord = ''; + function createNewWord(acc: string, word: string, idx: number) { + let newWord = ""; if (idx === 0) { if (prefix) { const firstLetter = word.charAt(0).toUpperCase(); - newWord = prefix + firstLetter + word.slice(1).toLowerCase(); + newWord = prefix + firstLetter + word.slice(1).toLowerCase(); } else { - newWord = word.toLocaleLowerCase(); + newWord = word.toLocaleLowerCase(); } } else { const firstLetter = word.charAt(0).toUpperCase(); @@ -26,5 +26,8 @@ export function parseName(name: string, prefix?: string) { return acc; } - return name.split(' ').filter((word) => regexWord.test(word)).reduce(createNewWord, ''); + return name + .split(" ") + .filter((word) => regexWord.test(word)) + .reduce(createNewWord, ""); } diff --git a/tools/token-transformer/utils/parseTokenPath.ts b/tools/token-transformer/utils/parseTokenPath.ts index 18f633730bd..9b24e711d90 100644 --- a/tools/token-transformer/utils/parseTokenPath.ts +++ b/tools/token-transformer/utils/parseTokenPath.ts @@ -1,18 +1,19 @@ /** * Replaces the word "color" with "ui" when it is the first value in the path and removes the word "default" from the final token names. * This puts generated tokens in alignment with the theme variable names in Calcite-Colors - * + * * @param path the path to each token value in the Style Dictionary token object * @returns an updated token path */ -export const parseTokenPath = (path: string[]) => path.reduce((acc, p, idx) => { - if (idx === 0 && p === 'color') { - acc.push('ui'); - } else if (p === 'default') { - return acc; - } else { - acc.push(p); - } +export const parseTokenPath = (path: string[]) => + path.reduce((acc, p, idx) => { + if (idx === 0 && p === "color") { + acc.push("ui"); + } else if (p === "default") { + return acc; + } else { + acc.push(p); + } - return acc; -}, []); + return acc; + }, []); diff --git a/tools/token-transformer/utils/regex.ts b/tools/token-transformer/utils/regex.ts index 11d4f70301f..1d80e830096 100644 --- a/tools/token-transformer/utils/regex.ts +++ b/tools/token-transformer/utils/regex.ts @@ -1,9 +1,9 @@ // Match files and tokens which include "[" or "]" -export const matchPlaceholderElement = new RegExp(/[\[\]]/, 'g'); +export const matchPlaceholderElement = new RegExp(/[\[\]]/, "g"); // Match custom variable indicator created by Designers in Token Studio. -// Using the ${token.name} format in Token Studio makes it much easier for Designers to search for token references while doing their work. -export const tokenStudioCustomVariableIndicator = new RegExp(/\$[.\w-]+/, 'g'); +// Using the ${token.name} format in Token Studio makes it much easier for Designers to search for token references while doing their work. +export const tokenStudioCustomVariableIndicator = new RegExp(/\$[.\w-]+/, "g"); // Match files and tokens which include "backup", "[", "]", or file extensions -export const matchExclusions = /(backup|\[|\])(?=\.\w+$)/ +export const matchExclusions = /(backup|\[|\])(?=\.\w+$)/; diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json index 0beb14e6f0c..0ff1267eed6 100644 --- a/tsconfig.cjs.json +++ b/tsconfig.cjs.json @@ -1,9 +1,9 @@ { "extends": "./tsconfig", "compilerOptions": { - "target": "ES2018", - "outDir": "./tools/build", - "sourceMap": true + "target": "ES2018", + "outDir": "./tools/build", + "sourceMap": true }, "exclude": ["**/*.test.*"] } diff --git a/tsconfig.json b/tsconfig.json index 3ffb0e296e7..6228431fb5b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,18 +2,18 @@ "$schema": "https://json.schemastore.org/tsconfig", "display": "Default", "compilerOptions": { - "allowSyntheticDefaultImports": true, - "allowUnreachableCode": false, - "declaration": false, - "esModuleInterop": true, - "experimentalDecorators": true, - "lib": ["dom", "dom.iterable", "ES2018"], - "module": "esnext", - "moduleResolution": "node", - "noUnusedLocals": false, - "noUnusedParameters": false, - "resolveJsonModule": true, - "target": "ES2018" + "allowSyntheticDefaultImports": true, + "allowUnreachableCode": false, + "declaration": false, + "esModuleInterop": true, + "experimentalDecorators": true, + "lib": ["dom", "dom.iterable", "ES2018"], + "module": "esnext", + "moduleResolution": "node", + "noUnusedLocals": false, + "noUnusedParameters": false, + "resolveJsonModule": true, + "target": "ES2018" }, "exclude": ["node_modules", "tokens", "build"] } diff --git a/tsconfig.prod.json b/tsconfig.prod.json index 237f0677774..dd2ac37609d 100644 --- a/tsconfig.prod.json +++ b/tsconfig.prod.json @@ -1,9 +1,9 @@ { "extends": "./tsconfig", "compilerOptions": { - "target": "ES2018", - "outDir": "./tools/dist", - "sourceMap": true + "target": "ES2018", + "outDir": "./tools/dist", + "sourceMap": true }, "exclude": ["**/*.test.*"] } From 937cc900bc201bd6272d988ea911fbd128732cea Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 10:42:38 -0700 Subject: [PATCH 605/696] docs: add contributing documentation more context for maintaining tokens --- CONTRIBUTING.md | 52 ++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 45 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5556732b5db..2d227d2d5eb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,11 +9,11 @@ Found a problem? Want a new feature? - See if your issue or idea has [already been reported](issues). - Provide detailed reproduction instructions as well as what behavior is expected. -## Submitting Pull Requests +## Contributing to tokens -Pull requests are the greatest contributions, so be sure they are focused in scope. +### Clone the repo -1. To begin, [fork this project](fork), clone your fork, and add our upstream. +To begin, [fork this project](fork), clone your fork, and add our upstream. ```bash # Clone your fork of the repo into the current directory @@ -26,7 +26,7 @@ git remote add upstream https://github.com/esri/calcite-design-tokens npm install ``` -2. Create a branch for your feature or fix: +### Create a branch for your feature or fix ```bash # If you are a designer setting up a branch for FigmaTokens Plugin, make sure your branch name starts with `designer/`. @@ -38,14 +38,50 @@ git checkout -b designer/[yourname] git checkout -b [yourname]/[type]-[issue#] ``` -3. Be sure your code passes our checks +### Understanding Token Files + +All token files may be updated by the Figma Token Studio plugin. These can also be updated in the code directly. Any changes to token files must be reviewed by the Calcite Design Team. + +#### tokens/$metadata.json + +This file is used by Figma Token Studio but is not used to determine final token asset output. + +#### tokens/$themes.json + +Each theme defined in this file will output a token asset in each format defined in the token transformer config. + +#### tokens/core.json + +The core design tokens upon which the rest of the tokens are built. + +#### tokens/semantic.json + +The semantic design tokens used by theme files and components. + +#### tokens/component/ + +The component design tokens. These are used by themes. + +#### tokens/calcite/ + +The Calcite themes. This currently consists of a light and dark theme. + +#### tokens/brand/ + +The Brand themes. This currently consists of a set of global tokens as well as a light and dark theme. + +## Submitting Pull Requests + +Pull requests are the greatest contributions, so be sure they are focused in scope. + +### Be sure your code passes our checks ```bash # Test current code npm run test ``` -4. Push your branch up to your fork: +### Push your branch up to your fork ```bash # Push a designer branch @@ -57,7 +93,9 @@ git push origin designer/[yourname] git push origin [yourname]/[type]-[issue#] ``` -5. Now [open a pull request](https://help.github.com/articles/using-pull-requests/) with a clear title and description. +### Open the pull request back to the token repo + +Make sure to use a clear title and descritions. See [open a pull request](https://help.github.com/articles/using-pull-requests/) for more information. ## Bumping the Version From 643ec36cf349d01ce93235b3fc10d86de0bb1355 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 11:21:24 -0700 Subject: [PATCH 606/696] fix: use kebab-case for file names --- .gitignore | 1 + bin/run.js | 4 +-- package.json | 26 ++++++++--------- tokens/$themes.json | 16 +++++----- .../parse/expandComposites.ts | 5 ++-- .../transform/nameCamelCase.ts | 2 +- .../transform/nameKebabCase.ts | 2 +- tools/token-transformer/utils/parseName.ts | 29 ++++--------------- 8 files changed, 34 insertions(+), 51 deletions(-) diff --git a/.gitignore b/.gitignore index c2ee34a97c8..2ecf5e7e86f 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ node_modules # Node Package distribution build +dist # Transformation Directory tools/token-transformer/**/*.js diff --git a/bin/run.js b/bin/run.js index 9ea807b1001..eb1872099cb 100644 --- a/bin/run.js +++ b/bin/run.js @@ -1,6 +1,6 @@ import { readFileSync } from "fs"; -import { getThemes } from "../tools/build/getThemes.js"; -import { run } from "../tools/build/sd-run.js"; +import { getThemes } from "../tools/dist/getThemes.js"; +import { run } from "../tools/dist/sd-run.js"; /** * Get all themes defined int the tokens/$themes.json and generate a Style Dictionary output for each theme diff --git a/package.json b/package.json index 6ba01322f76..581607a32b9 100644 --- a/package.json +++ b/package.json @@ -9,21 +9,21 @@ "design tokens", "tokens" ], - "main": "./build/js/calciteHeadless.js", + "main": "./build/js/calcite-headless.js", "type": "module", "exports": { - ".": "./build/js/calciteHeadless.js", - "./js/headless": "./build/js/calciteHeadless.js", - "./js/brand/light": "./build/js/brandLight.js", - "./js/brand/dark": "./build/js/brandDark.js", - "./js/calcite/light": "./build/js/calciteLight.js", - "./js/calcite/dark": "./build/js/calciteDark.js", - "./css": "./build/css/calciteHeadless.css", - "./css/headless": "./build/css/calciteHeadless.css", - "./css/brand/light": "./build/css/brandLight.css", - "./css/brand/dark": "./build/css/brandDark.css", - "./css/calcite/light": "./build/css/calciteLight.css", - "./css/calcite/dark": "./build/css/calciteDark.css" + ".": "./build/js/calcite-headless.js", + "./js/headless": "./build/js/calcite-headless.js", + "./js/brand/light": "./build/js/brand-light.js", + "./js/brand/dark": "./build/js/brand-dark.js", + "./js/calcite/light": "./build/js/calcite-light.js", + "./js/calcite/dark": "./build/js/calcite-dark.js", + "./css": "./build/css/calcite-headless.css", + "./css/headless": "./build/css/calcite-headless.css", + "./css/brand/light": "./build/css/brand-light.css", + "./css/brand/dark": "./build/css/brand-dark.css", + "./css/calcite/light": "./build/css/calcite-light.css", + "./css/calcite/dark": "./build/css/calcite-dark.css" }, "repository": { "type": "git", diff --git a/tokens/$themes.json b/tokens/$themes.json index 5cf68ad5954..a7c5376264c 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -73,10 +73,10 @@ "component/rating": "source", "component/scrim": "source", "component/segmented-control": "source", - "component/slider": "source", - "component/slider-range": "source", - "component/slider-histogram": "source", "component/slider-histogram-range": "source", + "component/slider-histogram": "source", + "component/slider-range": "source", + "component/slider": "source", "component/split-button": "source", "component/stepper-item": "source", "component/stepper": "source", @@ -85,8 +85,8 @@ "component/tabs": "source", "component/textarea": "source", "component/tile": "source", - "component/tip": "source", "component/tip-manager": "source", + "component/tip": "source", "component/tooltip": "source", "component/tree-item": "source", "core": "source", @@ -206,10 +206,10 @@ "component/rating": "source", "component/scrim": "source", "component/segmented-control": "source", - "component/slider": "source", - "component/slider-range": "source", - "component/slider-histogram": "source", "component/slider-histogram-range": "source", + "component/slider-histogram": "source", + "component/slider-range": "source", + "component/slider": "source", "component/split-button": "source", "component/stepper-item": "source", "component/stepper": "source", @@ -218,8 +218,8 @@ "component/tabs": "source", "component/textarea": "source", "component/tile": "source", - "component/tip": "source", "component/tip-manager": "source", + "component/tip": "source", "component/tooltip": "source", "component/tree-item": "source", "core": "source", diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index 28baefb2dbd..2ee5fb73ea5 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -1,5 +1,5 @@ import { DeepKeyTokenMap, SingleToken } from "@tokens-studio/types"; -import { TransformOptions, Expandables, ExpandablesAsStrings, expandablesAsStringsArr } from "../TransformOptions.js"; +import { TransformOptions, Expandables, ExpandablesAsStrings, expandablesAsStrings } from "../TransformOptions.js"; import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from "../utils/regex.js"; import { shouldExpand, expandToken } from "../utils/compositeTokens.js"; import { convertTokenToStyleDictionaryFormat } from "../utils/convertTokenToStyleDictionaryFormat.js"; @@ -37,7 +37,8 @@ export function expandComposites( } if (token.value && type) { - if (typeof type === "string" && expandablesAsStringsArr.includes(type)) { + // @ts-expect-error - we can count on this type being a string + if (typeof type === "string" && expandablesAsStrings.includes(type)) { const expandType = (type as ExpandablesAsStrings) === "boxShadow" ? "shadow" : type; const expand = shouldExpand(token as Expandables, opts.expand[expandType], filePath); if (expand) { diff --git a/tools/token-transformer/transform/nameCamelCase.ts b/tools/token-transformer/transform/nameCamelCase.ts index 20821df20d0..0882966ca37 100644 --- a/tools/token-transformer/transform/nameCamelCase.ts +++ b/tools/token-transformer/transform/nameCamelCase.ts @@ -1,5 +1,5 @@ import { camelCase } from "change-case"; -import { parseTokenPath } from "../utils/parseTokenPath"; +import { parseTokenPath } from "../utils/parseTokenPath.js"; /** * diff --git a/tools/token-transformer/transform/nameKebabCase.ts b/tools/token-transformer/transform/nameKebabCase.ts index 539103ec0d8..b94e74efbb0 100644 --- a/tools/token-transformer/transform/nameKebabCase.ts +++ b/tools/token-transformer/transform/nameKebabCase.ts @@ -1,5 +1,5 @@ import { paramCase } from "change-case"; -import { parseTokenPath } from "../utils/parseTokenPath"; +import { parseTokenPath } from "../utils/parseTokenPath.js"; /** * diff --git a/tools/token-transformer/utils/parseName.ts b/tools/token-transformer/utils/parseName.ts index 4226e9b4ed6..9aaba07c495 100644 --- a/tools/token-transformer/utils/parseName.ts +++ b/tools/token-transformer/utils/parseName.ts @@ -1,33 +1,14 @@ +import { paramCase } from "change-case"; + /** * * @param name the file name passed from the themes object * @param prefix an optional prefix for each file name - * @returns a camel case file name from the passed name, optionally starting with a prefix + * @returns a kebab-case file name from the passed name, optionally starting with a prefix */ export function parseName(name: string, prefix?: string) { const regexWord = /^\w+$/; + const themeName = `${prefix || ''} ${name}`.split(" ").filter((word) => regexWord.test(word)).join(' '); - function createNewWord(acc: string, word: string, idx: number) { - let newWord = ""; - if (idx === 0) { - if (prefix) { - const firstLetter = word.charAt(0).toUpperCase(); - newWord = prefix + firstLetter + word.slice(1).toLowerCase(); - } else { - newWord = word.toLocaleLowerCase(); - } - } else { - const firstLetter = word.charAt(0).toUpperCase(); - const ord = word.slice(1).toLowerCase(); - newWord = firstLetter + ord; - } - - acc += newWord; - return acc; - } - - return name - .split(" ") - .filter((word) => regexWord.test(word)) - .reduce(createNewWord, ""); + return paramCase(themeName); } From 1574d2ba6113b49c2166364efc5895dc30a237b8 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 2 May 2023 15:02:55 +0200 Subject: [PATCH 607/696] Updates --- tokens/component/list-item.json | 268 ++++++++++---------------------- 1 file changed, 80 insertions(+), 188 deletions(-) diff --git a/tokens/component/list-item.json b/tokens/component/list-item.json index 0485f3f9dac..4f6c70fac94 100644 --- a/tokens/component/list-item.json +++ b/tokens/component/list-item.json @@ -9,6 +9,10 @@ "dark": { "value": "$semantic.ui.color.text.1.dark", "type": "color" + }, + "default": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" } }, "description": { @@ -19,6 +23,10 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" + }, + "default": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" } }, "group-heading": { @@ -30,26 +38,10 @@ "value": "$semantic.ui.color.text.2.dark", "type": "color" }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { + "default": { "value": "$semantic.font.default.bold.-1h", "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" } - }, - "list-item-label": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "list-item-description": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" } }, "icon": { @@ -72,6 +64,16 @@ "value": "$semantic.ui.color.brand.default.dark", "type": "color" } + }, + "content-end-icon": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } } }, "border": { @@ -99,17 +101,9 @@ } }, "icon-size": { - "sm": { + "default": { "value": "$core.sizing.7", "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" } }, "space-between": { @@ -127,199 +121,83 @@ } }, "space-around": { - "container": { + "group-label": { + "default": { + "value": "$core.spacing.3", + "type": "spacing" + } + }, + "dropdown-icon": { "level-1": { "left": { - "default": { - "sm": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.13", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.16", - "type": "spacing" - } - }, - "selected": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - } + "value": "$core.spacing.none", + "type": "spacing" }, "right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } + "value": "$core.spacing.none", + "type": "spacing" }, "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } + "value": "$core.spacing.none", + "type": "spacing" } }, "level-2": { "left": { - "default": { - "sm": { - "value": "$core.spacing.13", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3 * 6.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.18", - "type": "spacing" - } - }, - "selected": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - } + "value": "$core.spacing.7", + "type": "spacing" }, "right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } + "value": "$core.spacing.none", + "type": "spacing" }, "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } + "value": "$core.spacing.none", + "type": "spacing" } }, "level-3": { "left": { - "default": { - "sm": { - "value": "$core.spacing.15", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.17", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3 * 11", - "type": "spacing" - } - }, - "selected": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - } + "value": "$core.spacing.11", + "type": "spacing" }, "right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } + "value": "$core.spacing.none", + "type": "spacing" }, "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } + "value": "$core.spacing.none", + "type": "spacing" } } }, - "group-label": { - "sm": { + "content": { + "left": { + "value": "$core.spacing.6", + "type": "spacing" + }, + "right": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "top-bottom": { "value": "$core.spacing.3", "type": "spacing" }, - "md": { + "content-end": { + "icon": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + }, + "selection-icon": { + "single": { "value": "$core.spacing.5", "type": "spacing" }, - "lg": { - "value": "$core.spacing.7", + "multi": { + "value": "$core.spacing.5", "type": "spacing" } } @@ -328,6 +206,20 @@ "light": { "value": "$semantic.ui.color.foreground.1.light", "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + }, + "group-heading": { + "light": { + "value": "$semantic.ui.color.foreground.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.2.dark", + "type": "color" + } } } } From b91e4fee9882867b23cc9f4bed865703a39f711e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 2 May 2023 15:33:03 +0200 Subject: [PATCH 608/696] Updates --- tokens/$themes.json | 23 ++++++++++++++++++++++- tokens/component/list-item.json | 16 ++++------------ 2 files changed, 26 insertions(+), 13 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 635d5c7a7ed..e7193f2ebb2 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -2351,7 +2351,28 @@ "combobox-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", "combobox-item.font.group-label.sm": "S:dffdf12b2e2a5398ea9615f8ee13ac3029fd930a,", "combobox-item.font.group-label.md": "S:dcc86485ff3b666aa63f6ee85643190b6f8fa3cc,", - "combobox-item.font.group-label.lg": "S:8473e535cb4b48c81763861bc5f7cf39cfdbf0cc," + "combobox-item.font.group-label.lg": "S:8473e535cb4b48c81763861bc5f7cf39cfdbf0cc,", + "list-item.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", + "list-item.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", + "list-item.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", + "list-item.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", + "list-item.font.group-heading.light": "S:08404e476f328eb340684e7e42d23d6709655b9d,", + "list-item.font.group-heading.dark": "S:a36411fb0f7d1ef2470a11cb897f1d03292d17cd,", + "list-item.icon.dropdown.light": "S:029e2b35c13cffd1a1afbc844b8b58fc3852dc94,", + "list-item.icon.dropdown.dark": "S:f29ebf3665efba0f4a7a056fa542c9e224518616,", + "list-item.icon.select.light": "S:e1e32c1fe7ee7d08cb409d5dcd1dcc08c84e164c,", + "list-item.icon.select.dark": "S:b4c84785f94ba696d082f6c2059e29738f167449,", + "list-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "list-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", + "list-item.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "list-item.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "list-item.background.group-heading.light": "S:31a5440180e9d223d23f6c12248ce2b794706185,", + "list-item.background.group-heading.dark": "S:f914ea9406405b8099946ab0e8cc2c7b8be86e6a,", + "list-item.icon.content-end-icon.light": "S:48ada955fc5d0b70980caca908e1ac41b3fe8384,", + "list-item.icon.content-end-icon.dark": "S:af6c2896b185263759e051e01bbfea5496a95420,", + "list-item.font.label.default": "S:7d7d6b93e179cf35a0583519cf0e0dfef6e30680,", + "list-item.font.description.default": "S:a2ea2fc7df6b80ab8c6a22a2fa028de390f696e7,", + "list-item.font.group-heading.default": "S:c90422ca5f91de42e8d36f84a34fd8c22452b94f," } } ] \ No newline at end of file diff --git a/tokens/component/list-item.json b/tokens/component/list-item.json index 4f6c70fac94..1b9abb0450b 100644 --- a/tokens/component/list-item.json +++ b/tokens/component/list-item.json @@ -78,25 +78,17 @@ }, "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "$semantic.ui.color.brand.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "$semantic.ui.color.brand.default.dark", "type": "color" } }, "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", + "default": { + "value": "$core.border.border-width.2", "type": "borderWidth" } }, From 88a72042533945878b25bd3293dfe66f4a38e61e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 2 May 2023 15:46:32 +0200 Subject: [PATCH 609/696] Updates --- tokens/component/list-item.json | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/tokens/component/list-item.json b/tokens/component/list-item.json index 1b9abb0450b..c0a91285f45 100644 --- a/tokens/component/list-item.json +++ b/tokens/component/list-item.json @@ -99,17 +99,11 @@ } }, "space-between": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.1", - "type": "spacing" + "content": { + "default": { + "value": "$core.spacing.0", + "type": "spacing" + } } }, "space-around": { From acbd7384a6638321461e8b7aa97b904024215962 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 2 May 2023 18:04:49 +0200 Subject: [PATCH 610/696] Updates --- tokens/$themes.json | 7 ++++--- tokens/component/list-item.json | 22 ++++++++++++---------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index e7193f2ebb2..8618f329c14 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -2362,8 +2362,6 @@ "list-item.icon.dropdown.dark": "S:f29ebf3665efba0f4a7a056fa542c9e224518616,", "list-item.icon.select.light": "S:e1e32c1fe7ee7d08cb409d5dcd1dcc08c84e164c,", "list-item.icon.select.dark": "S:b4c84785f94ba696d082f6c2059e29738f167449,", - "list-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "list-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", "list-item.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", "list-item.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", "list-item.background.group-heading.light": "S:31a5440180e9d223d23f6c12248ce2b794706185,", @@ -2372,7 +2370,10 @@ "list-item.icon.content-end-icon.dark": "S:af6c2896b185263759e051e01bbfea5496a95420,", "list-item.font.label.default": "S:7d7d6b93e179cf35a0583519cf0e0dfef6e30680,", "list-item.font.description.default": "S:a2ea2fc7df6b80ab8c6a22a2fa028de390f696e7,", - "list-item.font.group-heading.default": "S:c90422ca5f91de42e8d36f84a34fd8c22452b94f," + "list-item.font.group-heading.default": "S:c90422ca5f91de42e8d36f84a34fd8c22452b94f,", + "list-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", + "list-item.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", + "list-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0," } } ] \ No newline at end of file diff --git a/tokens/component/list-item.json b/tokens/component/list-item.json index c0a91285f45..8571a3cfeae 100644 --- a/tokens/component/list-item.json +++ b/tokens/component/list-item.json @@ -76,16 +76,6 @@ } } }, - "border": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, "border-width": { "default": { "value": "$core.border.border-width.2", @@ -207,6 +197,18 @@ "type": "color" } } + }, + "border": { + "active": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } } } } \ No newline at end of file From 7381052902fd767c40c9c5a822247bc6a890daff Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 2 May 2023 21:18:59 +0200 Subject: [PATCH 611/696] Updates --- tokens/$metadata.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index c6cf79e9464..9d13d4881a8 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -10,6 +10,8 @@ "component/fab", "component/checkbox", "component/chip", + "component/combobox", + "component/combobox-item", "component/dropdown", "component/dropdown-item", "component/action-bar", @@ -21,8 +23,6 @@ "component/block", "component/block-section", "component/card", - "component/combobox", - "component/combobox-item", "component/list-item", "component/date-picker", "component/color-picker", From a7f663b2153f89780b842b3d8d5da675a43b76ba Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 2 May 2023 21:35:31 +0200 Subject: [PATCH 612/696] Updates --- tokens/$themes.json | 7 +-- tokens/component/combobox.json | 101 +++++++++++++++++++++------------ 2 files changed, 69 insertions(+), 39 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 8618f329c14..7c8681d65d1 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -1412,7 +1412,7 @@ "combobox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", "combobox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", "combobox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "combobox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", + "combobox.background.default.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", "combobox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "combobox.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", "combobox.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", @@ -2339,8 +2339,6 @@ "combobox.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", "combobox.icon.dropdown.light": "S:029e2b35c13cffd1a1afbc844b8b58fc3852dc94,", "combobox.icon.dropdown.dark": "S:f29ebf3665efba0f4a7a056fa542c9e224518616,", - "combobox.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "combobox.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", "flow-header.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", "flow-header.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", "combobox-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", @@ -2373,7 +2371,8 @@ "list-item.font.group-heading.default": "S:c90422ca5f91de42e8d36f84a34fd8c22452b94f,", "list-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", "list-item.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "list-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0," + "list-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", + "combobox.backgrounddefault.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f," } } ] \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 79cf72d5f0b..00c9f1906c8 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -1,34 +1,5 @@ { "combobox": { - "font": { - "placeholder": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "value": { - "light": "[object Object]", - "dark": "[object Object]" - }, - "type": "other" - }, "icon": { "default": { "light": { @@ -62,13 +33,25 @@ } }, "background": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" + "item-container": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } } }, "icon-size": { @@ -128,6 +111,54 @@ "type": "spacing" } } + }, + "font": { + "placeholder": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "placholder": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + } } } } \ No newline at end of file From f40da385409c23eb73a0f28e3297198e39ad334b Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 2 May 2023 23:38:35 +0200 Subject: [PATCH 613/696] Updates --- tokens/$themes.json | 17 +++++++++++++++-- tokens/component/combobox-item.json | 4 ++-- tokens/component/combobox.json | 24 +++++++++++++++++++++--- 3 files changed, 38 insertions(+), 7 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 7c8681d65d1..8afc9e5c719 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -1412,7 +1412,7 @@ "combobox.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", "combobox.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", "combobox.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "combobox.background.default.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "combobox.background.default.light": "S:17451faade2ebea67ff0e851f135302108fb32be,", "combobox.background.default.dark": "S:1e065f4788b100aeeaac9b51c1946d19703404e5,", "combobox.foreground.light": "S:03ddfd3782f4913e4f0cd6191da5b6cf9a6bd2ab,", "combobox.foreground.dark": "S:95112821a2e3ab109779fb1b496071bda8f75be2,", @@ -2372,7 +2372,20 @@ "list-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", "list-item.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", "list-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "combobox.backgrounddefault.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f," + "combobox.backgrounddefault.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "combobox.font.placholder.light": "S:3d1d3f4e2f3964d2376ab9a9286f562420e990c4,", + "combobox.font.placholder.dark": "S:1400c6c07108c127fbd3f7d29b0c7f062f359c56,", + "combobox.font.value.light": "S:23909c9b4b92ecb74f2de9f29285336753c66a7b,", + "combobox.font.value.dark": "S:9959df201873adc552cadefa4f14dc4c379871a6,", + "combobox.background.item-container.light": "S:a0c393591ad7ac37b2e2311eb188c2595d868708,", + "combobox.background.item-container.dark": "S:af47c3bb6cb82101c0029f4999b6ea482391982b,", + "combobox.font.placeholder.sm": "S:b6ed6f5a3f6604f1c9a00add3537c712b124fed6,", + "combobox.font.placeholder.md": "S:cc361ae0ca454423a5cf984b9d602b6baae7bd9d,", + "combobox.font.placeholder.lg": "S:7bdee616745bbae469e6fa636fca28c9870ad4d7,", + "combobox.font.value.sm": "S:9d7007fb89ca8cb7ccffeb06c5ccc9c482b2e1bc,", + "combobox.font.value.md": "S:6caf430de21a8bb3993413cdd9f3b6ddbfaed3fa,", + "combobox.font.value.lg": "S:2c2e51e5ec5318c364250fcfa223481225d2a749,", + "combobox.item-container.shadow": "S:d2fef376e4a99dc52afc9d22fbd66488fa91c3cf," } } ] \ No newline at end of file diff --git a/tokens/component/combobox-item.json b/tokens/component/combobox-item.json index 865ce0c31bd..220137284cd 100644 --- a/tokens/component/combobox-item.json +++ b/tokens/component/combobox-item.json @@ -47,11 +47,11 @@ }, "group-title": { "light": { - "value": "$semantic.ui.color.text.2.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } }, diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 00c9f1906c8..b581201fcef 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -24,12 +24,24 @@ }, "border": { "light": { - "value": "$semantic.ui.color.border.1.light", + "value": "$semantic.ui.color.border.input.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.1.dark", + "value": "$semantic.ui.color.border.input.dark", "type": "color" + }, + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" } }, "background": { @@ -119,7 +131,7 @@ "type": "typography" }, "md": { - "value": "$semantic.font.default.regular.-1h", + "value": "$semantic.font.default.light.-1h", "type": "typography" }, "lg": { @@ -159,6 +171,12 @@ "type": "typography" } } + }, + "item-container": { + "shadow": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + } } } } \ No newline at end of file From 548fea131277681bc412780849add21839a613e6 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 2 May 2023 23:50:59 +0200 Subject: [PATCH 614/696] Updates --- tokens/calcite/dark.json | 50 ++++++++++++++++++++ tokens/calcite/light.json | 98 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 148 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 6b0b687b7c2..b053c7e8caa 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2488,6 +2488,56 @@ } } } + }, + "combobox": { + "icon": { + "default": { + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "dropdown": { + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + } + }, + "border": { + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + } + }, + "background": { + "default": { + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "item-container": { + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "font": { + "placholder": { + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "value": { + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 145eb21d66b..0e9c359b125 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2510,6 +2510,104 @@ } } } + }, + "combobox": { + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + } + }, + "dropdown": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + } + }, + "item-container": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + } + } + }, + "font": { + "placholder": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + } + }, + "value": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + } + } + } + }, + "combobox-item": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + } + }, + "selected": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "selected": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + } + } } } } From 50e66bdfd7b4902dcf655294ba141ab573cc5a0e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Tue, 2 May 2023 23:54:35 +0200 Subject: [PATCH 615/696] Updates --- tokens/calcite/dark.json | 48 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index b053c7e8caa..b96f436aa9d 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2538,6 +2538,54 @@ } } } + }, + "combobox-item": { + "font": { + "default": { + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "selected": { + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "group-title": { + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "selected": { + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + } + }, + "select": { + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border": { + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + } } } } From 0e101ee2faa667040f2954187fdbd9850eecc636 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 00:13:53 +0200 Subject: [PATCH 616/696] Updates --- tokens/calcite/dark.json | 90 +++++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 58 +++++++++++++++++++++++++ 2 files changed, 148 insertions(+) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index b96f436aa9d..0ae056290a9 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2586,6 +2586,96 @@ "type": "color" } } + }, + "dropdown": { + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + } + }, + "dropdown-item": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "selected": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "$semantic.ui.color.text.2.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.2.dark", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "selected": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.3.dark", + "type": "color" + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 0e9c359b125..355542b61d5 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2608,6 +2608,64 @@ "type": "color" } } + }, + "dropdown": { + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + } + } + } + }, + "dropdown-item": { + "font": { + "default": { + "light": { + "value": "$dropdown-item.font.default.light", + "type": "color" + } + }, + "selected": { + "light": { + "value": "$dropdown-item.font.selected.light", + "type": "color" + } + }, + "group-title": { + "light": { + "value": "$dropdown-item.font.group-title.light", + "type": "color" + } + } + }, + "icon": { + "default": { + "light": { + "value": "$dropdown-item.icon.default.light", + "type": "color" + }, + "selected": { + "light": { + "value": "$dropdown-item.icon.default.selected.light", + "type": "color" + } + } + }, + "select": { + "light": { + "value": "$dropdown-item.icon.select.light", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$dropdown-item.border.light", + "type": "color" + } + } } } } From 7250dfd45ae49e754b394cf9eab5a169eccea069 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 00:29:17 +0200 Subject: [PATCH 617/696] Updates --- tokens/calcite/dark.json | 107 ++++++++++++++------------------------ tokens/calcite/light.json | 30 +++++------ 2 files changed, 53 insertions(+), 84 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 0ae056290a9..122be252b6a 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2492,97 +2492,98 @@ "combobox": { "icon": { "default": { - "dark": { - "value": "$semantic.ui.color.text.1.dark", + "light": { + "value": "$combobox.icon.default.dark", "type": "color" } }, "dropdown": { - "dark": { - "value": "$semantic.ui.color.text.3.dark", + "light": { + "value": "$combobox.icon.dropdown.dark", "type": "color" } } }, "border": { - "dark": { - "value": "$semantic.ui.color.border.input.dark", + "light": { + "value": "$combobox.border.dark", "type": "color" } }, "background": { "default": { - "dark": { - "value": "$semantic.ui.color.background.dark", + "light": { + "value": "$combobox.background.default.dark", "type": "color" } }, "item-container": { - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "light": { + "value": "$combobox.background.item-container.dark", "type": "color" } } }, "font": { "placholder": { - "dark": { - "value": "$semantic.ui.color.text.3.dark", + "light": { + "value": "$combobox.font.placholder.dark", "type": "color" } }, "value": { - "dark": { - "value": "$semantic.ui.color.text.1.dark", + "light": { + "value": "$combobox.font.value.dark", "type": "color" } - } + }, + "type": "color" } }, "combobox-item": { "font": { "default": { - "dark": { - "value": "$semantic.ui.color.text.3.dark", + "light": { + "value": "$combobox-item.font.default.dark", "type": "color" } }, "selected": { - "dark": { - "value": "$semantic.ui.color.text.1.dark", + "light": { + "value": "$combobox-item.font.selected.dark", "type": "color" } }, "group-title": { - "dark": { - "value": "$semantic.ui.color.text.1.dark", + "light": { + "value": "$combobox-item.font.group-title.dark", "type": "color" } } }, "icon": { "default": { - "dark": { - "value": "$semantic.ui.color.text.3.dark", + "light": { + "value": "$combobox-item.icon.default.dark", "type": "color" }, "selected": { - "dark": { - "value": "$semantic.ui.color.text.1.dark", + "light": { + "value": "$combobox-item.icon.default.selected.light", "type": "color" } } }, "select": { - "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "light": { + "value": "$combobox-item.icon.select.dark", "type": "color" } } }, "border": { - "dark": { - "value": "$semantic.ui.color.border.3.dark", + "light": { + "value": "$combobox-item.border.dark", "type": "color" } } @@ -2591,11 +2592,7 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$dropdown.background.default.dark", "type": "color" } } @@ -2605,31 +2602,19 @@ "font": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$dropdown-item.font.default.dark", "type": "color" } }, "selected": { "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$dropdown-item.font.selected.dark", "type": "color" } }, "group-title": { "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", + "value": "$dropdown-item.font.group-title.dark", "type": "color" } } @@ -2637,42 +2622,26 @@ "icon": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$dropdown-item.icon.default.dark", "type": "color" }, "selected": { "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$dropdown-item.icon.default.selected.light", "type": "color" } } }, "select": { "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", + "value": "$dropdown-item.icon.select.dark", "type": "color" } } }, "border": { "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", + "value": "$dropdown-item.border.dark", "type": "color" } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 355542b61d5..a730a1370d9 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2515,33 +2515,33 @@ "icon": { "default": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$combobox.icon.default.light", "type": "color" } }, "dropdown": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$combobox.icon.dropdown.light", "type": "color" } } }, "border": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "$combobox.border.light", "type": "color" } }, "background": { "default": { "light": { - "value": "$semantic.ui.color.background.light", + "value": "$combobox.background.default.light", "type": "color" } }, "item-container": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$combobox.background.item-container.light", "type": "color" } } @@ -2549,13 +2549,13 @@ "font": { "placholder": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$combobox.font.placholder.light", "type": "color" } }, "value": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$combobox.font.value.light", "type": "color" } } @@ -2565,19 +2565,19 @@ "font": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$combobox-item.font.default.light", "type": "color" } }, "selected": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$combobox-item.font.selected.light", "type": "color" } }, "group-title": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$combobox-item.font.group-title.light", "type": "color" } } @@ -2585,26 +2585,26 @@ "icon": { "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$combobox-item.icon.default.light", "type": "color" }, "selected": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$combobox-item.icon.default.selected.light", "type": "color" } } }, "select": { "light": { - "value": "$semantic.ui.color.brand.default.light", + "value": "$combobox-item.icon.select.light", "type": "color" } } }, "border": { "light": { - "value": "$semantic.ui.color.border.3.light", + "value": "$combobox-item.border.light", "type": "color" } } @@ -2613,7 +2613,7 @@ "background": { "default": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$dropdown.background.default.light", "type": "color" } } From 74475f05f14dbe01595194ec8000dee14be8d64b Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 01:17:44 +0200 Subject: [PATCH 618/696] Updates --- tokens/component/button.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/component/button.json b/tokens/component/button.json index f511c89f9ad..31007c2eb20 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -613,7 +613,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.5", + "value": "$core.spacing.4", "type": "spacing" } }, From b35f75a90550f75c61f9fc438006e746dc5a3df8 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 02:04:16 +0200 Subject: [PATCH 619/696] Updates --- tokens/calcite/dark.json | 5 +---- tokens/component/button.json | 30 ++++++++++++++++++++++-------- 2 files changed, 23 insertions(+), 12 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 122be252b6a..fda74e64f5f 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2532,10 +2532,7 @@ } }, "value": { - "light": { - "value": "$combobox.font.value.dark", - "type": "color" - } + "light": "[object Object]" }, "type": "color" } diff --git a/tokens/component/button.json b/tokens/component/button.json index 31007c2eb20..fa2315c3319 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -88,11 +88,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.text.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.inverse.dark", "type": "color" } } @@ -258,11 +258,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.text.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.inverse.dark", "type": "color" } } @@ -490,11 +490,11 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.foreground.3.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.foreground.3.dark", "type": "color" } }, @@ -522,11 +522,11 @@ }, "outline-fill": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } } @@ -645,6 +645,20 @@ "value": "$core.spacing.7", "type": "spacing" } + }, + "rounded": { + "sm": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.full", + "type": "borderRadius" + } } } } \ No newline at end of file From 68a01e4b4bb2d43ed7fcb004bd4de91ca8ea6990 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 15:33:44 +0200 Subject: [PATCH 620/696] Updates --- tokens/calcite/light.json | 3 ++- tokens/component/combobox.json | 3 ++- tokens/component/split-button.json | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index a730a1370d9..7e01f9f6732 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2558,7 +2558,8 @@ "value": "$combobox.font.value.light", "type": "color" } - } + }, + "type": "color" } }, "combobox-item": { diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index b581201fcef..5e9b0b54914 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -170,7 +170,8 @@ "value": "$semantic.font.default.regular.0h", "type": "typography" } - } + }, + "type": "other" }, "item-container": { "shadow": { diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index 42fc2c2282a..e51b3739ee6 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -4,11 +4,11 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } }, From bb8f20dc1c489837a8334e7780403d963e7429d9 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 16:14:24 +0200 Subject: [PATCH 621/696] Updates --- tokens/component/split-button.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index e51b3739ee6..f4f68f24d01 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -786,11 +786,11 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.danger.default.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.danger.default.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } }, From 4cdae2274d431c54cf7952e1785f133bad0475c5 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 17:07:43 +0200 Subject: [PATCH 622/696] Updates --- tokens/component/split-button.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index f4f68f24d01..cdffa33e540 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -258,11 +258,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.text.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.inverse.dark", "type": "color" } } @@ -653,6 +653,12 @@ "value": "$core.spacing.1", "type": "spacing" } + }, + "transparent": { + "top-bottom": { + "value": "$core.spacing.1", + "type": "spacing" + } } } }, @@ -732,11 +738,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "$semantic.ui.color.text.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.inverse.dark", + "value": "$semantic.ui.color.text.inverse.dark", "type": "color" } } From 12dc9edb359ff746da595303f10db748a24cc84c Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 17:57:52 +0200 Subject: [PATCH 623/696] Updates --- tokens/component/split-button.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index cdffa33e540..a22f9cec663 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -780,7 +780,7 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "$semantic.ui.color.inverse.light", "type": "color" }, "dark": { From 2d1eb7e7bfaffaf9d87e6e62c084f40136a21465 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 20:56:56 +0200 Subject: [PATCH 624/696] Updates --- tokens/calcite/light.json | 16 ++++++++-------- tokens/component/split-button.json | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 7e01f9f6732..9658de119d7 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2073,19 +2073,19 @@ }, "neutral": { "solid": { - "value": "$split-button.font.inverse.solid.light", + "value": "$split-button.font.neutral.solid.light", "type": "color" }, "outline-fill": { - "value": "$split-button.font.inverse.outline-fill.light", + "value": "$split-button.font.neutral.outline-fill.light", "type": "color" }, "outline": { - "value": "$split-button.font.inverse.outline.light", + "value": "$split-button.font.neutral.outline.light", "type": "color" }, "transparent": { - "value": "$split-button.font.inverse.transparent.light", + "value": "$split-button.font.neutral.transparent.light", "type": "color" } }, @@ -2147,19 +2147,19 @@ }, "neutral": { "solid": { - "value": "$split-button.icon.inverse.solid.light", + "value": "$split-button.icon.neutral.solid.light", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.inverse.outline-fill.light", + "value": "$split-button.icon.neutral.outline-fill.light", "type": "color" }, "outline": { - "value": "$split-button.icon.inverse.outline.light", + "value": "$split-button.icon.neutral.outline.light", "type": "color" }, "transparent": { - "value": "$split-button.icon.inverse.transparent.light", + "value": "$split-button.icon.neutral.transparent.light", "type": "color" } }, diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index a22f9cec663..ea2f8eac345 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -88,11 +88,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.text.1.light", + "value": "$semantic.ui.color.text.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.1.dark", + "value": "$semantic.ui.color.text.inverse.dark", "type": "color" } } From a7b788143b33eb6505495274586fc216b3186d00 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 21:37:10 +0200 Subject: [PATCH 625/696] Updates --- tokens/calcite/dark.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index fda74e64f5f..81f9d14a574 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2051,19 +2051,19 @@ }, "neutral": { "solid": { - "value": "$split-button.font.inverse.solid.light", + "value": "$split-button.font.neutral.solid.light", "type": "color" }, "outline-fill": { - "value": "$split-button.font.inverse.outline-fill.dark", + "value": "$split-button.font.neutral.outline-fill.dark", "type": "color" }, "outline": { - "value": "$split-button.font.inverse.outline.dark", + "value": "$split-button.font.neutral.outline.dark", "type": "color" }, "transparent": { - "value": "$split-button.font.inverse.transparent.dark", + "value": "$split-button.font.neutral.transparent.dark", "type": "color" } }, @@ -2125,19 +2125,19 @@ }, "neutral": { "solid": { - "value": "$split-button.icon.inverse.solid.dark", + "value": "$split-button.icon.neutral.solid.dark", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.inverse.outline-fill.dark", + "value": "$split-button.icon.neutral.outline-fill.dark", "type": "color" }, "outline": { - "value": "$split-button.icon.inverse.outline.dark", + "value": "$split-button.icon.neutral.outline.dark", "type": "color" }, "transparent": { - "value": "$split-button.icon.inverse.transparent.dark", + "value": "$split-button.icon.neutral.transparent.dark", "type": "color" } }, From 7e087ac364a9a5ee6a6db21d8e9d865d8bfc0b56 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Wed, 3 May 2023 21:48:39 +0200 Subject: [PATCH 626/696] Updates From fd7ac8bca97b102cae43af9ce0a0370591664022 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 4 May 2023 12:01:36 +0200 Subject: [PATCH 627/696] Updates --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 +- tokens/calcite/light.json | 5 +- tokens/component/combobox.json | 25 +-- tokens/component/segmented-control-item.json | 222 +++++++++++++++++++ tokens/component/segmented-control.json | 96 +------- 6 files changed, 250 insertions(+), 114 deletions(-) create mode 100644 tokens/component/segmented-control-item.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 9d13d4881a8..4b12874de1f 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -53,6 +53,7 @@ "component/tip", "component/tip-manager", "component/tooltip", + "component/segmented-control-item", "component/panel-header", "component/flow-header", "component/popover", diff --git a/tokens/$themes.json b/tokens/$themes.json index 8afc9e5c719..985b4418d17 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/segmented-control-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/segmented-control-item": "disabled" }, "$figmaStyleReferences": {} }, @@ -55,7 +57,8 @@ "component/flow-header": "source", "component/notice": "source", "component/alert": "source", - "component/list-item": "source" + "component/list-item": "source", + "component/segmented-control-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -152,7 +155,8 @@ "component/flow-header": "source", "component/notice": "source", "component/alert": "source", - "component/list-item": "source" + "component/list-item": "source", + "component/segmented-control-item": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -288,7 +292,8 @@ "component/dropdown-item": "enabled", "component/combobox-item": "enabled", "component/flow-header": "enabled", - "component/list-item": "enabled" + "component/list-item": "enabled", + "component/segmented-control-item": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 9658de119d7..8dafa6b286a 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2554,10 +2554,7 @@ } }, "value": { - "light": { - "value": "$combobox.font.value.light", - "type": "color" - } + "light": "[object Object]" }, "type": "color" } diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 5e9b0b54914..cf72490f17b 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -150,26 +150,11 @@ } }, "value": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } + "light": "[object Object]", + "dark": "[object Object]", + "sm": "[object Object]", + "md": "[object Object]", + "lg": "[object Object]" }, "type": "other" }, diff --git a/tokens/component/segmented-control-item.json b/tokens/component/segmented-control-item.json new file mode 100644 index 00000000000..4d423475002 --- /dev/null +++ b/tokens/component/segmented-control-item.json @@ -0,0 +1,222 @@ +{ + "segmented-control-item": { + "font": { + "solid": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "outline": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + }, + "sm": { + "value": "$semantic.font.default.bold.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, + "icon": { + "solid": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "outline": { + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + } + } + }, + "border": { + "outline": { + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + } + }, + "background": { + "solid": { + "checked": { + "light": { + "value": "$semantic.ui.color.brand.default.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.brand.default.dark", + "type": "color" + } + } + } + }, + "border-width": { + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "comp-size": { + "sm": { + "value": "$core.sizing.10", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.10", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.13", + "type": "sizing" + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.3", + "type": "spacing" + } + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.5", + "type": "spacing" + } + } + } +} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json index b661574f032..0f538aeb643 100644 --- a/tokens/component/segmented-control.json +++ b/tokens/component/segmented-control.json @@ -1,39 +1,5 @@ { "segmented-control": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "sm": { - "value": "$semantic.font.default.bold.-3h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - }, - "checked": { - "light": { - "value": "$semantic.ui.color.text.inverse.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.inverse.dark", - "type": "color" - } - } - }, "border": { "light": { "value": "$semantic.ui.color.border.1.light", @@ -45,52 +11,26 @@ } }, "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { "light": { - "value": "$semantic.ui.color.foreground.2.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.2.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, "border-width": { "sm": { - "value": "$core.border.border-width.1", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.2", + "value": "$core.border.border-width.0", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.4", + "value": "$core.border.border-width.0", "type": "borderWidth" } }, @@ -108,45 +48,31 @@ "type": "sizing" } }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, "space-between": { "sm": { - "value": "$core.spacing.9", + "value": "$core.spacing.0", "type": "spacing" }, "md": { - "value": "$core.spacing.11", + "value": "$core.spacing.0", "type": "spacing" }, "lg": { - "value": "$core.spacing.14", + "value": "$core.spacing.0", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.7", + "value": "$core.spacing.0", "type": "spacing" }, "md": { - "value": "$core.spacing.9", + "value": "$core.spacing.0", "type": "spacing" }, "lg": { - "value": "$core.spacing.11", + "value": "$core.spacing.0", "type": "spacing" } } From 413840b91f6fd6a7923779c9999a415624de935e Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 4 May 2023 12:15:26 +0200 Subject: [PATCH 628/696] Updates --- tokens/$themes.json | 6 +-- tokens/calcite/dark.json | 82 +++++++++++++++++++++++++++++++++++++++ tokens/calcite/light.json | 82 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 166 insertions(+), 4 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 985b4418d17..26f57a63853 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/segmented-control-item": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/segmented-control-item": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 81f9d14a574..839abdeb3b2 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2642,6 +2642,88 @@ "type": "color" } } + }, + "segmented-control-item-": { + "font": { + "solid": { + "default": { + "light": { + "value": "$segmented-control-item.font.solid.default.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$segmented-control-item.font.solid.checked.dark", + "type": "color" + } + } + }, + "outline": { + "default": { + "light": { + "value": "$segmented-control-item.font.outline.default.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$segmented-control-item.font.outline.checked.dark", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "default": { + "light": { + "value": "$segmented-control-item.icon.solid.default.dark", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$segmented-control-item.icon.solid.checked.dark", + "type": "color" + } + } + }, + "outline": { + "checked": { + "light": { + "value": "$segmented-control-item.icon.outline.checked.dark", + "type": "color" + } + }, + "default": { + "light": { + "value": "$segmented-control-item.icon.outline.default.dark", + "type": "color" + } + } + } + }, + "border": { + "outline": { + "checked": { + "light": { + "value": "$segmented-control-item.border.outline.checked.dark", + "type": "color" + } + } + } + }, + "background": { + "solid": { + "checked": { + "light": { + "value": "$segmented-control-item.background.solid.checked.dark", + "type": "color" + } + } + } + } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 8dafa6b286a..219da68537f 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2664,6 +2664,88 @@ "type": "color" } } + }, + "segmented-control-item": { + "font": { + "solid": { + "default": { + "light": { + "value": "$segmented-control-item.font.solid.default.light", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$segmented-control-item.font.solid.checked.light", + "type": "color" + } + } + }, + "outline": { + "default": { + "light": { + "value": "$segmented-control-item.font.outline.default.light", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$segmented-control-item.font.outline.checked.light", + "type": "color" + } + } + } + }, + "icon": { + "solid": { + "default": { + "light": { + "value": "$segmented-control-item.icon.solid.default.light", + "type": "color" + } + }, + "checked": { + "light": { + "value": "$segmented-control-item.icon.solid.checked.light", + "type": "color" + } + } + }, + "outline": { + "checked": { + "light": { + "value": "$segmented-control-item.icon.outline.checked.light", + "type": "color" + } + }, + "default": { + "light": { + "value": "$segmented-control-item.icon.outline.default.light", + "type": "color" + } + } + } + }, + "border": { + "outline": { + "checked": { + "light": { + "value": "$segmented-control-item.border.outline.checked.light", + "type": "color" + } + } + } + }, + "background": { + "solid": { + "checked": { + "light": { + "value": "$segmented-control-item.background.solid.checked.light", + "type": "color" + } + } + } + } } } } From 59647d8e609d9410aa4296d4521bbfc3ceff435c Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 4 May 2023 12:44:25 +0200 Subject: [PATCH 629/696] Updates --- tokens/$metadata.json | 4 ++-- tokens/$themes.json | 27 ++++++++++++++++++++++++++- tokens/calcite/dark.json | 14 ++++++++++++++ tokens/calcite/light.json | 14 ++++++++++++++ 4 files changed, 56 insertions(+), 3 deletions(-) diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 4b12874de1f..2fab7d2714e 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -53,12 +53,12 @@ "component/tip", "component/tip-manager", "component/tooltip", - "component/segmented-control-item", "component/panel-header", "component/flow-header", + "component/segmented-control", + "component/segmented-control-item", "component/popover", "component/pagination", - "component/segmented-control", "component/slider", "component/slider-histogram", "component/slider-histogram-range", diff --git a/tokens/$themes.json b/tokens/$themes.json index 26f57a63853..dc63b90a037 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -2388,7 +2388,32 @@ "combobox.font.value.sm": "S:9d7007fb89ca8cb7ccffeb06c5ccc9c482b2e1bc,", "combobox.font.value.md": "S:6caf430de21a8bb3993413cdd9f3b6ddbfaed3fa,", "combobox.font.value.lg": "S:2c2e51e5ec5318c364250fcfa223481225d2a749,", - "combobox.item-container.shadow": "S:d2fef376e4a99dc52afc9d22fbd66488fa91c3cf," + "combobox.item-container.shadow": "S:d2fef376e4a99dc52afc9d22fbd66488fa91c3cf,", + "segmented-control.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", + "segmented-control.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", + "segmented-control-item.font.solid.default.light": "S:642fc328ed86aa94e29f6f2759dbba1712c9269e,", + "segmented-control-item.font.solid.default.dark": "S:a89792bec81124cea362db5e8b0fb78c037581ff,", + "segmented-control-item.font.outline.default.light": "S:905673d3e3526665241c2c878e451a8457f41d57,", + "segmented-control-item.font.outline.default.dark": "S:68abf0c4557368dca8e3448ea038f8ca4879b07c,", + "segmented-control-item.icon.solid.default.light": "S:9c8ed4ff26439af5b2860e5a0cff1e74746267f7,", + "segmented-control-item.icon.solid.default.dark": "S:49b450729c3f3260c5a2f2a1ed695b83ee1756a1,", + "segmented-control-item.icon.outline.checked.light": "S:4aee22379b0e9f6447f5d55e54b614fa813eb6d9,", + "segmented-control-item.icon.outline.checked.dark": "S:abf936a4d9354626e0d4f19821a138f6d47e5fc7,", + "segmented-control-item.border.outline.checked.light": "S:12aa76300c0fe24e498e868ae5f7eb576d491b33,", + "segmented-control-item.border.outline.checked.dark": "S:793004104d0cc84702feaa2b25fe133e67dc2ea6,", + "segmented-control-item.background.solid.checked.light": "S:88a179e6edd745b991744ceda002358c1eb6da97,", + "segmented-control-item.background.solid.checked.dark": "S:03ffc624e01c7f1e35e82affcfdd37f838f2a6ba,", + "segmented-control-item.font.solid.checked.light": "S:f49db657f940c34986ff48b31e38bebf4d5d8867,", + "segmented-control-item.font.solid.checked.dark": "S:36466bc5e0d86168d2659eba98af2a3f7c25cf5b,", + "segmented-control-item.font.outline.checked.light": "S:c79f9d3635521967235d83da3d315e7c9e12374d,", + "segmented-control-item.font.outline.checked.dark": "S:76fde4af0688068534837931e0578e69d326603f,", + "segmented-control-item.icon.solid.checked.light": "S:6cd8ed86efae7fc021e6763a8cf985577b01b74b,", + "segmented-control-item.icon.solid.checked.dark": "S:26e58e479b3fc6e831e37df57ad9b2c793af39e7,", + "segmented-control-item.icon.outline.default.light": "S:ff5d8b6ff22ac0c2db72a575a5ce2fc759e7996b,", + "segmented-control-item.icon.outline.default.dark": "S:fc16513ab811a61d2e0f76f81be7de6485b0ca41,", + "segmented-control-item.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", + "segmented-control-item.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", + "segmented-control-item.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359," } } ] \ No newline at end of file diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 839abdeb3b2..7de5e56d3c7 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2643,6 +2643,20 @@ } } }, + "segmented-control": { + "border": { + "light": { + "value": "$segmented-control.border.dark", + "type": "color" + } + }, + "background": { + "light": { + "value": "$segmented-control.background.dark", + "type": "color" + } + } + }, "segmented-control-item-": { "font": { "solid": { diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 219da68537f..2de0dcae80a 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2665,6 +2665,20 @@ } } }, + "segmented-control": { + "border": { + "light": { + "value": "$segmented-control.border.light", + "type": "color" + } + }, + "background": { + "light": { + "value": "$segmented-control.background.light", + "type": "color" + } + } + }, "segmented-control-item": { "font": { "solid": { From bfaf799e0eb358f9573b6c018292a152c5cf0c56 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 4 May 2023 13:09:35 +0200 Subject: [PATCH 630/696] Updates --- tokens/$themes.json | 491 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 490 insertions(+), 1 deletion(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index dc63b90a037..0c54fbc69e8 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -116,7 +116,496 @@ "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202," + "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202,", + "color.component.radio.font": "S:28367cca73d3c156bac98b8a1301c03133aa602b,", + "color.component.radio.background": "S:685dc063b371b9d8d58b9232e00a9e50d63bbd8f,", + "color.component.radio.border.unchecked": "S:f16a1ea9e4cc252f5fe368f0c4d259130c37a8ce,", + "color.component.radio.border.checked": "S:2c8b7f4025cd54659d9fec4373d5e25906ce8927,", + "color.component.chip.font.clear": "S:82e2e52caeab327eb3c1faf012a372a746948aa0,", + "color.component.chip.font.solid.grey": "S:37523ddbb8699c51bc212d5a8ae22a60f3db7227,", + "color.component.chip.font.solid.blue": "S:83017e42f4e22a9225765c9517f6c00b0d41e3af,", + "color.component.chip.font.solid.red": "S:33d35beefdc46bf3f0d865f538e20936aa497881,", + "color.component.chip.font.solid.yellow": "S:b211e1022e6b8416fd17c9b60563c26cfcf820d3,", + "color.component.chip.font.solid.green": "S:c8c8f5ce4bb6b1d0e91ab2e9255f50addcb7346d,", + "color.component.chip.icon.clear": "S:ddcd5912435ca0e39810ad6a69282de28631fce8,", + "color.component.chip.icon.solid.grey": "S:5a8848133b2e0c677661f4837b6d0878ff73e9dc,", + "color.component.chip.icon.solid.blue": "S:b9d0fc946e276056c493e2856c3f77bc424a7e49,", + "color.component.chip.icon.solid.red": "S:690f5bfed99621eb36f8e6fe069c3ce80ed1ab77,", + "color.component.chip.icon.solid.yellow": "S:f5d816446db2aa49e1c7c6d67217ac6b27908afa,", + "color.component.chip.icon.solid.green": "S:2174ecabcb3895263247165a2f12a21d3f712912,", + "color.component.chip.closable-icon": "S:93f7ba7fdcf9c61dd383645ffc3d05d5da3b5080,", + "color.component.chip.background.solid.grey": "S:29e55875055a1a4b7d22a1231dc79eafe135b9b3,", + "color.component.chip.background.solid.blue": "S:3eb5dda1dc28795b8d94b897bb0b684ea475fd29,", + "color.component.chip.background.solid.red": "S:a0dc90c6bcc70c8e6eca1a33d0ed93a2d8d1b1b0,", + "color.component.chip.background.solid.yellow": "S:b2d4082f2d28056182e04f00fa2acf73dbcc3d85,", + "color.component.chip.background.solid.green": "S:6b9e4f9854fa13ad688bc534429e68281561cfd7,", + "color.component.chip.border.clear.grey": "S:364b4ed6969619a21c19f975ed62584aa14fa666,", + "color.component.chip.border.clear.blue": "S:afd0add3ded3e0330e2dce4336b3d3f7025438bc,", + "color.component.chip.border.clear.red": "S:f3e723d0326816354f02220e19b0ff9a0ddf6fb7,", + "color.component.chip.border.clear.yellow": "S:9002906e4f7a157b1254adb9fa5c50b838254720,", + "color.component.chip.border.clear.green": "S:c1961f02d925e85abb3f7cd0d207986707cd5a1c,", + "color.component.label.font": "S:b4e0e68c6c23df8fb865b29e5d14a008b0a02728,", + "color.component.loader.font": "S:d62b208187740cc61a07579cc8f2380c7c638554,", + "color.component.loader.default.foreground": "S:cc65fb1fff3bd373fe7d17f48355a9771bfe13c9,", + "color.component.loader.inline.foreground.indeterminate": "S:beea9a55dd607d8d49b71a6ff25ada827db4bc0d,", + "color.component.loader.inline.foreground.determinate": "S:9cb29760c84899ae7ed17fbb1dbe9a8cba18b990,", + "color.component.rating.star.background.default": "S:8b34a162f4b45b935e7a71241ffc3fe4d600d31d,", + "color.component.rating.star.background.active": "S:f467e80f60e3308e11fb49ed2b19117d0a598434,", + "color.component.rating.star.background.average": "S:53ad72fb051908befe6881225d2500ce73d9346f,", + "color.component.rating.chip.value-text.font": "S:8de25d50497e356e1034b8eb15771e1d489a2687,", + "color.component.rating.chip.count.font": "S:76095738a949ccb77e1b2b887484a92c00703180,", + "color.component.rating.chip.foreground": "S:2c4cedc4ef7cee78326e34d2a99d64f61e87299d,", + "color.component.tooltip.foreground": "S:ea78e0278626b595d9bd8ff070e9fdbd089a594b,", + "color.component.tooltip.border": "S:a653ed836362fa7cbb8927da570562871187d6d6,", + "color.component.tooltip.font": "S:31a865bdddc9246c165026e9316e4351abe70149,", + "color.component.accordion-item.font.heading": "S:f6a7ceb45dc523ad8c267ece146ae767ed3d3bd6,", + "color.component.accordion-item.font.description": "S:7f3c0b94e29829b22536b3e1b4a120ae64f2e52a,", + "color.component.accordion-item.icon.default": "S:2ab111c59e92fbe87aa3a31f7c8eafca04c348f7,", + "color.component.accordion-item.icon.expanded": "S:297d5150a52d1c40e79d375ed7cc4227bbea7c50,", + "color.component.accordion-item.background": "S:f33afd73daca2b1707d66711afcf22bef6b8c052,", + "color.component.accordion-item.border": "S:dcba1d58e8c8b966e5c56fdfc46599a21b7f4c8c,", + "color.component.input-message.font": "S:6d4ddfad1fa9e367f9d3fb9fb2c61e48904f2c48,", + "color.component.input-message.icon.idle": "S:763e7e66e2cbe4dee7d5f47e841ab4847d08ee5a,", + "color.component.input-message.icon.invalid": "S:ee291b1e3592cf175f3ab22c1aeb4de4074acff8,", + "color.component.input-message.icon.valid": "S:6e2c602895be9baf7739eafffb4af4f100aac4a3,", + "color.component.alert.font.title": "S:3fe992b4776b7b498a35470e91a6a15e59715e79,", + "color.component.alert.font.message": "S:56ce688122e0f8961c2b08b60be9dbc4e5c3fea6,", + "color.component.alert.background": "S:ea7479a9d45b3b59c24971e380da7bb66a818b0c,", + "color.component.alert.border": "S:b13075aa87a5bda465c79f50d04b62ba3cd5308e,", + "color.component.alert.icon.blue": "S:553582caa5cd81f8c24b65e74a4d92a949b1dee3,", + "color.component.alert.icon.green": "S:14a72cac5bde15b49127d6a65c762c5744026ecf,", + "color.component.alert.icon.yellow": "S:27d0a984f07861ea57e78a4491db12feaa29ef9d,", + "color.component.alert.icon.red": "S:3d9465c857cfe8ddb6bc72d0deedf6702ae50d6c,", + "color.component.alert.highlight.blue": "S:af42060d4b3a1d838c8d43cfbc779785048e88b4,", + "color.component.alert.highlight.green": "S:a6d7b79458245faf37cb4f9661c86c7e3aaad526,", + "color.component.alert.highlight.yellow": "S:44728da690f1d8815638c7cca9e21e9ff37545ea,", + "color.component.alert.highlight.red": "S:84d71fce7deabd5b8499eeb2950f5ba9497b25b5,", + "color.component.color-picker.font.label": "S:ae00cde6a8f341514914c599f73def1510d5675d,", + "color.component.color-picker.icon": "S:3d38013a329c613fd4b64473d5eaba50697f0f15,", + "color.component.color-picker.border": "S:c2683963a67628dd633cb5ed2cd4a623244b9f90,", + "color.component.color-picker.background.default": "S:41e8da24d42dff3d9b697ac0354cf6d5e9dc1493,", + "color.component.date-picker.font.date": "S:ecd7e4b30e4a787c688f08c58fc3f905d3f7f219,", + "color.component.date-picker.font.day": "S:ff811d0c255d3fd3061b1ca232eafaa199132cb3,", + "color.component.date-picker.font.month": "S:2c14af60350c9d07529ce000c430a9efd6f0f373,", + "color.component.date-picker.font.range.date": "S:dc490f031a3a55974fbafea34311c6dd81ef562c,", + "color.component.date-picker.font.selected.date": "S:ec1c3fd78661afe8ad4dbff3074f452601841a84,", + "color.component.date-picker.font.active.date": "S:703b8f7a7e4eaee282b2b53dc721493883efec59,", + "color.component.date-picker.icon": "S:276587829a546542a2ad54b2cc09582d2f8e0b1c,", + "color.component.date-picker.border": "S:0a8d6f6c02617c5a98aad0195be1d3c542497194,", + "color.component.date-picker.date.active.border": "S:eba437115f16d03a200cd8e796e8a5d1c4ef08d8,", + "color.component.date-picker.background.default": "S:863d8699a17624c25a7f28071e68f23f26b9174a,", + "color.component.date-picker.background.date.range": "S:63a658f6dd1079b658f2ca634503a742dc379e19,", + "color.component.date-picker.background.date.active": "S:6c84995570a9ef51d154eb4e1f3ddf333a96546f,", + "color.component.input-date-picker.font.placeholder-value": "S:5edf7873a5256c11377903deba8fc7a0419eb66a,", + "color.component.input-date-picker.font.label": "S:933961a00c061377cc8c11f1ab44a5d0a46998f5,", + "color.component.input-date-picker.icon": "S:224d5ad2aa497ddd44589637e1586b718261fc84,", + "color.component.input-date-picker.border": "S:579a7cf0b825ff7281678924add12c1da7806041,", + "color.component.input-date-picker.background.default": "S:d41981a3b8893551c3c1bf9358533ddf8bbed8fa,", + "color.component.input-date-picker.background.arrow": "S:b32f6d9a140dc1dc7c7886edc8c541441123e8e4,", + "color.component.input-date-picker.background.read-only": "S:61192eb951c1661598c2ce2ae314fdeeb2e50fe9,", + "color.component.input-datetime-local.font.placeholder-value": "S:11caa4b6bf2f7607a508c791cd3193c81f70fd20,", + "color.component.input-datetime-local.font.label": "S:e659063659df79fb526f524ce4fb590a40dff397,", + "color.component.input-datetime-local.font.prefix-suffix": "S:d5454374407acacfbf49c9f01e309d28d6efee32,", + "color.component.input-datetime-local.icon": "S:27e85f23e9100734c12ba3e7cf6be60bcb43a00e,", + "color.component.input-datetime-local.background.default": "S:d4b4814e6c3f5feeb88f75a278813a820ffbfeec,", + "color.component.input-datetime-local.background.prefix-sufix": "S:376c73231137df2cae694e87ee73c3c9240ac213,", + "color.component.input-datetime-local.background.read-only": "S:db9f5f33469731e38a61c451d4365d802b84f24b,", + "color.component.input-datetime-local.border.default": "S:8c63a9c9c1bb78ddd3d2446a0e1d4bb2b459eee8,", + "color.component.input-datetime-local.border.invalid": "S:7157e8ecf2fb43679e8ba98224bc96d29710eeb9,", + "color.component.input-email.font.placeholder-value": "S:c8ec4f1140efdc064b547f3a1120f17bc9c5c5e0,", + "color.component.input-email.font.label": "S:e2efb919bfd6c18c3d8399b8cd0a43664fb15ca4,", + "color.component.input-email.font.prefix-suffix": "S:56fe77d37c0d635056dda4fadf95b9721af96f98,", + "color.component.input-email.icon": "S:686446981d7fb411b027bbec1a47fb9bbb1bbe06,", + "color.component.input-email.background.default": "S:89408bc79c1cb8fb073b4226346967e4c9a5a568,", + "color.component.input-email.background.prefix-sufix": "S:a4aaa81ba1e957ad240872dedfc70c7c86524fc5,", + "color.component.input-email.background.read-only": "S:9c594798596db12a89fb47ed0a3301287bf7e849,", + "color.component.input-email.border.default": "S:c789828b3202e7bbd3d09e2375bacf337d1f4e21,", + "color.component.input-email.border.invalid": "S:fb22e8db8e157fad52330746a932b74bb891115f,", + "color.component.input-file.font.placeholder-value": "S:6cc4765b7edba0df0119ea4f6e481dde602bb346,", + "color.component.input-file.font.label": "S:becf50bac6c8151409468da9ad0c41509ef3e1ba,", + "color.component.input-file.font.prefix-suffix": "S:1b98997abc18e919b7b88004cb45ab9ec68074be,", + "color.component.input-file.icon": "S:08e849b3577741c4d0f5b14b570b3dedd0409ae0,", + "color.component.input-file.background.default": "S:90bc55b0c0eac769b975310cbaf84bbfe403ef18,", + "color.component.input-file.background.prefix-sufix": "S:9af88d8b9bf8c5fd63e5557afa9f03358ab23432,", + "color.component.input-file.background.read-only": "S:51bb552cbc7b9a3e2ad8dea746ae4074910ae0e1,", + "color.component.input-file.border.default": "S:716fda3caa1dd63980435252f94965e8ebf4352d,", + "color.component.input-file.border.invalid": "S:129378eb8acdb34dc0499977d1e6f5061b9ccd7b,", + "color.component.input-month.font.placeholder-value": "S:31c69f501d49f7bc5589a6757367d48516491915,", + "color.component.input-month.font.label": "S:37353b65c15c9d02899c1620d21d28756e2e90ee,", + "color.component.input-month.font.prefix-suffix": "S:e2d806652a25ae5d2737d4932c83826ea94db95f,", + "color.component.input-month.icon": "S:f51e98513a30af39a2d003314fc2a9c55893f0d0,", + "color.component.input-month.background.default": "S:6687ac9d177c478619fd9545e6816f1629ce96b7,", + "color.component.input-month.background.prefix-sufix": "S:292c4c830a2d92f3ce4deb2d6b43b732f94a704c,", + "color.component.input-month.background.read-only": "S:dc93eae3ed727b01f9539be8c9ec03bb9fe58046,", + "color.component.input-month.border.default": "S:4f61e39454e82f3a42e8212dd397300956a696f4,", + "color.component.input-month.border.invalid": "S:1c9690d175f0b2cb76ff5544e1d0ea1128906eba,", + "color.component.input-number.font.placeholder-value": "S:f284516bf010fe8c94cecdd268fb3f0fb4c8cb3c,", + "color.component.input-number.font.label": "S:ab48c32a7915afcebcb11754266cb29fec0c8ca1,", + "color.component.input-number.icon": "S:504b31c0b16c3dd61c5ab8900cedf8e692a7ff74,", + "color.component.input-number.background.default": "S:904fdd03c036cd15598ae9787496db66569049b2,", + "color.component.input-number.background.prefix-sufix": "S:1468d63ae8c04df44cc0da994f39031f039d1d8e,", + "color.component.input-number.background.read-only": "S:d724df13e46bf81c5c3fc5b7616e772d75d9a783,", + "color.component.input-number.border.default": "S:cb11ce8ec7145a057972c04ea151cd1898f47629,", + "color.component.input-number.border.invalid": "S:67a8bc93e9867a69a58f95bf123186922e0d0202,", + "color.component.input-password.font.placeholder-value": "S:7e3cda5b0854795861a55eb1cede7aa767bac790,", + "color.component.input-password.font.label": "S:460c4251d3df389f478b2f52c4245247ffa35faa,", + "color.component.input-password.font.prefix-suffix": "S:0b9eee41b5d2e6969ebfec062f15553b98348624,", + "color.component.input-password.icon": "S:30bbeb9fe38e622ef4e395dd6e538dd4015a6d5e,", + "color.component.input-password.background.default": "S:4ff277c156a53608fc13f4efb9786e11a9680784,", + "color.component.input-password.background.prefix-sufix": "S:0e07cf212380e510a3ee75f6ce1cc34251471bf8,", + "color.component.input-password.background.read-only": "S:f72baefca07ed3a988ceeb37220c35cb8a346fea,", + "color.component.input-password.border.default": "S:30ec1938415d8cab48bfb8685e0ad3e3261f9efe,", + "color.component.input-password.border.invalid": "S:275a948863aed5a876850f65a8b4e41a88562620,", + "color.component.input-search.font.placeholder-value": "S:e44422fba65b0b4cf34779e0d83cf73bce3c6838,", + "color.component.input-search.font.label": "S:4d8e74b2652d43452ed766abb39dbd0ba7b5e8c2,", + "color.component.input-search.font.prefix-suffix": "S:c79aaa3d62acd70f718dc80d3b57db0b6b735d6d,", + "color.component.input-search.icon": "S:f248eec88bea03299449cd6911ddf0d5d2d02c15,", + "color.component.input-search.background.default": "S:c5e1490180a318e0482da2f401064044f4fcb6ed,", + "color.component.input-search.background.prefix-sufix": "S:2a8f333cc4ab06628d2532537f122b2201a875be,", + "color.component.input-search.background.read-only": "S:9e43d25b6a4cabab8534ef1a9c56aee0a2cf4da4,", + "color.component.input-search.border.default": "S:508529ce76c68340f2438dc73ba2161a9d7e5b4e,", + "color.component.input-search.border.invalid": "S:168db285acc469546e2dd3fda9830970dca72ea0,", + "color.component.input-telephone.font.placeholder-value": "S:80e113e120d3ab21516053df1478e7f3eba1016d,", + "color.component.input-telephone.font.label": "S:52a8d4d761df2a719ed6fc8137e6ff7b9a288ba3,", + "color.component.input-telephone.font.prefix-suffix": "S:73a9f6f0d216faa2355108da1f98e684f8531978,", + "color.component.input-telephone.icon": "S:fcaea19392582be1e983877a52babccc8af39361,", + "color.component.input-telephone.background.default": "S:199cf956a41f1acc4024b49781d834029a1e689c,", + "color.component.input-telephone.background.prefix-sufix": "S:d96c0b8bb94cb1a1dbbc89f6a3075765cf59760f,", + "color.component.input-telephone.background.read-only": "S:7324c2fc4154e10bbf29769cb56b59518fe85397,", + "color.component.input-telephone.border.default": "S:9ea4b66309f342a90c9d045ae2cc30ccbac5d841,", + "color.component.input-telephone.border.invalid": "S:a5e325e6391431f3fda3ee72048264978d993afb,", + "color.component.input-text.font.placeholder-value": "S:b848d034f46231b6433743e958f334cfb1683358,", + "color.component.input-text.font.label": "S:8ec7a538918197d146d0790d0bf2cfd457fa4792,", + "color.component.input-text.font.prefix-suffix": "S:5933daf6ec40e5bebbafd267c1beb86ac99bdbfb,", + "color.component.input-text.icon": "S:9d63b96ad2fa40b81e07c8f24374acc796846b3a,", + "color.component.input-text.background.default": "S:fcdf2c58534792c41b48483ea5b6d0d6d1360336,", + "color.component.input-text.background.prefix-sufix": "S:ce719064951b9fba6a110a0316bbf2f0291efae5,", + "color.component.input-text.background.read-only": "S:d5afc1545959fc24f56667a6820a4bf9f362e23d,", + "color.component.input-text.border.default": "S:9c3d227902f790faa4aaee759ce3e3b2e57a0193,", + "color.component.input-text.border.invalid": "S:66d6331a0abb39375e90d960b1457bfe49c85c88,", + "color.component.input-week.font.placeholder-value": "S:2b968b4e738bcc9e1bd54ac707c193b35ea0313a,", + "color.component.input-week.font.label": "S:b026be6ea5726a437f285db5aa9e715c7188846f,", + "color.component.input-week.font.prefix-suffix": "S:8fd34fe54d379a8872d2c402e16131d48cd0de5a,", + "color.component.input-week.icon": "S:9f87d63dcdb87de433866898e1813a5e61115391,", + "color.component.input-week.background.default": "S:2e7b4bf2595839a8c285334b58e727d71d7a06c7,", + "color.component.input-week.background.prefix-sufix": "S:573ca758f96c759c6d65b4cf3acd47deda9ea8a7,", + "color.component.input-week.background.read-only": "S:233bd34a25bc7e103712af9c08227d6ad1c71090,", + "color.component.input-week.border.default": "S:60b0c4c7ccfb8c3f6cccb1f51dd0cbb761896f24,", + "color.component.input-week.border.invalid": "S:83c5ea6783335164d5d309e63a8bcb3874abbbed,", + "color.component.textarea.font.placeholder-value": "S:abd7ffdd16b69f78421bdebe488f550304f748e7,", + "color.component.textarea.font.label": "S:2e04dc92a8b9fb56b376a27af36f8114c33b168d,", + "color.component.textarea.font.chat-limit": "S:9eebc1ae3b8311932f52bb77da325913dab7fd4f,", + "color.component.textarea.icon": "S:b10036f31696035040f81a4d488c3f73429fc0a3,", + "color.component.textarea.background.default": "S:06bb99c409364198a7b44ac2a79e46a3c9b10170,", + "color.component.textarea.background.read-only": "S:13598ab71b7f5cafc677b0752ed71acc31e9f1a7,", + "color.component.textarea.border.default": "S:2d5deb78b4ef6b945fa79d2e4ae63a7df57c6cf7,", + "color.component.tab-title.font.default": "S:51a13105951132a602cd8ea92f5f6660001c152e,", + "color.component.tab-title.font.active": "S:24ffb4e8c673c4a0975b128edd256025235e6f02,", + "color.component.tab-title.icon.default": "S:c92f59f139b1fa761d47f9780ba734135610287c,", + "color.component.tab-title.icon.active": "S:d23bbe84b72209e72d3bffd83ba8c5eea9a4b9a8,", + "color.component.tab-title.bordered.border": "S:58e223f1e372de01adf0c114d01bb21222f354e0,", + "color.component.tab-title.bordered.background.default": "S:21733973d73eabc52b32dd4603cf7a16887ec07c,", + "color.component.tab-title.border.active": "S:6d089d948aabcf507143c09f8a108979a3ac65d7,", + "color.component.tabs.bordered.border": "S:de2e8e0fcda90e018dba60fc37014c6f04e71eeb,", + "color.component.tabs.bordered.background": "S:f1bb825f8844179016903c3c69c565e4a721a17d,", + "color.component.card.font.title": "S:a43a65080a8f7d5da812f5775769493ed8d597e5,", + "color.component.card.font.subtitle": "S:2fbc04143f8d3ff24477b04cfc1e44625c4c074f,", + "color.component.card.font.description": "S:a16ce0dd8af4c77abccfed39320ae326768e3131,", + "color.component.card.border.default": "S:9e96eee68742532d4e5b141545380adcaf2f0946,", + "color.component.card.border.active": "S:a96ac3bb58cfc04d3571acdb1ab5d3a6e5892b14,", + "color.component.card.background.default": "S:4dc0ac9a57f1e229038b446be185e8fdb3efe855,", + "color.component.action.indicator": "S:5a15770844f7a54ac6825289622653c50f5bfbd5,", + "color.component.action.font": "S:2876f8d34ce69935169b30b798782943060395fc,", + "color.component.action.icon": "S:1518f73de3c2da14cbff2f4994b1e9d0d790ffb1,", + "color.component.action.background.default": "S:cb84f81e286ba7c4f99b2ced2d36f380af60b328,", + "color.component.action.background.active": "S:22281cee725d0c5ff593194e117555e819017308,", + "color.component.action-bar.border": "S:14d48c0de4971311289428040f3acc6d61b4d01f,", + "color.component.action-bar.background": "S:e0c9682c69d4f890f51dca5c86601faad089a085,", + "color.component.action-pad.border": "S:074f8ba3c95f32b46a6333154011cb22319292ef,", + "color.component.action-pad.background": "S:e80d6232b7dc41ffcc81333cfbfc06fe3e40f899,", + "color.component.action-bar-grid.border": "S:e18d68e254e09e34299c18eaa726177fa1eba56a,", + "color.component.action-bar-grid.background": "S:11502ccbbd7429c4d8e65299a4d15e4cc30aff4d,", + "color.component.action-pad-grid.border": "S:7931cbf77ed027c33340059174c246c48df2c6dc,", + "color.component.action-pad-grid.background": "S:131b9e47a94634a9aae36084a84646e4a47c767b,", + "color.component.block.font.heading": "S:c373cf00b3b7ce8964c707d6772c8e25a813b81c,", + "color.component.block.font.description": "S:eb7975992158fa32ed7d08e0306ecef727caaabb,", + "color.component.block.font.content": "S:bb5cac9046caad7c00b1bebc1cd2af98eba59974,", + "color.component.block.icon.default": "S:59cb3b068269ac4615b0afaef42a2de3cdfbdcb6,", + "color.component.block.icon.active": "S:0706cb0626eabcf9447cb2a2ba5813431f760d8b,", + "color.component.block.icon.idle": "S:76fd50fb2e80dbadcc1bc34e1d60e6e406b7d9b0,", + "color.component.block.icon.valid": "S:ad47ebd8e8b2a65d3191037a454f28d0e1c35138,", + "color.component.block.icon.invalid": "S:cbddaffb2bbf91cea5cff6dc5328e9b5fc913747,", + "color.component.block.icon.drag-handle": "S:a15dc3b92e506af5ac3259a6d3d0d31b2721622f,", + "color.component.block.icon.chevron": "S:69b9693c02a1a7b1c6ec1d9a7c8f806f619421fb,", + "color.component.block.loader": "S:af32fb7c2d2ef6f2eb3e3833a5d176e3ac540b4c,", + "color.component.block.border": "S:11d9a6085303dc0172cfec0a9493f25b3eaf248c,", + "color.component.block.background": "S:3fdea37fd38291aab1875fa1413da7502e81ddb0,", + "color.component.block-section.font": "S:7749b05108c7d1a83f435f93fd72a85ef76ba1a6,", + "color.component.block-section.icon.valid": "S:94a134ac8992df7b6dde842dfc6d114dc5bd070d,", + "color.component.block-section.icon.invalid": "S:1b50f5dc91213c90ceef687f36cc66bcef493693,", + "color.component.block-section.icon.chevron": "S:450d6bf44bfaf913b2cb086ec0d884f11e333f91,", + "color.component.block-section.background": "S:56ceef6ed6774a457b565526a91525d94ecda8ca,", + "color.component.notice.font.title": "S:92ed6304659d0ef6129050e4ba9403040ee9ad1c,", + "color.component.notice.font.message": "S:b695ae4933ed00b9cfdc1149e22506ee1adc9ff5,", + "color.component.notice.background": "S:ff0ac8e3fa4fa8a33b7d0175431454889d5f2ca3,", + "color.component.notice.icon.info": "S:50c19167e302f02c25d98dacd0fa1e0d78601102,", + "color.component.notice.icon.success": "S:31c21c8178d0e8c5ef46363fe75bd0696842222e,", + "color.component.notice.icon.warning": "S:3dd1752b143ba8ac6cc2d5d2aaf523e5de625de8,", + "color.component.notice.icon.danger": "S:cb4679eb6d61fdbd7b0e34891884bcf809cf545a,", + "color.component.notice.icon.brand": "S:95075947ae16b72ebb80239f134acd5c23e58a50,", + "color.component.notice.highlight.info": "S:e6e39dfc36aa43cd367ae978b980a191c13c1f70,", + "color.component.notice.highlight.success": "S:6a0a2ebffa34f004aa0f14e68caf31adb4258db2,", + "color.component.notice.highlight.warning": "S:849548d37351fe7788c14ff2bf47d5b7279a83c7,", + "color.component.notice.highlight.danger": "S:e5c621c23915ca660972e07c6a46ae1f70c11386,", + "color.component.notice.highlight.brand": "S:923189154b0f6650b1d21238836b8e3ce80c97ae,", + "color.component.modal.font.header": "S:8d00ad8b84bda4b85bca281cc7dda65bf07dede0,", + "color.component.modal.font.content": "S:21c10b798bd49c018ae3d9321181856e8a01fa9e,", + "color.component.modal.icon": "S:fb7104156857085d750dbff1e8429d020ce348f9,", + "color.component.modal.border.default": "S:71d63cc28db7343c08f1e7b5ce4749bc0e934d45,", + "color.component.modal.border.top.brand": "S:2260a8b79dd5d65b07c9db524086ba1c1c337429,", + "color.component.modal.border.top.info": "S:d45209f66ffd9dd84678e200b4163b212d72bac5,", + "color.component.modal.border.top.success": "S:b3ed19a82ccf3b2e713a54cdd70710f8b895c914,", + "color.component.modal.border.top.danger": "S:05edeee87701b5fc58df98360a414ce4766fa088,", + "color.component.modal.border.top.warning": "S:e0ed21a54c08efe2b1f30231a0dab6d311119d9d,", + "color.component.modal.background": "S:7331f4eedeb99bd80dcc0324fd1f9bfec86118f4,", + "color.component.panel-header.font": "S:b1b620f465fa98e58ee481d26c73f5fcd195f4e3,", + "color.component.panel-header.icon": "S:7862539d74302db1a0cd25b3c2f55029a318ecda,", + "color.component.panel-header.border": "S:4d4469498bccdd9e7dea802cebaa49c3b3b56e71,", + "color.component.panel-header.background": "S:befcd1d230ce5e4c570cdbcd5a95b293af3491dd,", + "color.component.popover.font": "S:0992a5f41edd4ffc8584b2bef129cb27b8969b70,", + "color.component.popover.icon": "S:6149cb77a9fa6ffa8c04a630d58de570baf68450,", + "color.component.popover.border": "S:d080807f32ee0ce0b2c9435740ae0dad73d55f18,", + "color.component.popover.background": "S:da438c74ab4933789aca4d641d847eb7381f7462,", + "color.component.slider.font.label": "S:1214330733e082140294a10bf1d7756e300542d1,", + "color.component.slider.font.tick-label": "S:3633ba6964eff2b832f99c52669245eadd32c66e,", + "color.component.slider.handle.background": "S:71be37ed2e8d2967178c415cce58967df531ea85,", + "color.component.slider.handle.border": "S:04149de4543c2ee38b5cb3cadfc6185733844eb7,", + "color.component.slider.border.default": "S:356e7bea2cfb543c6fe0b3d8958310212034a15a,", + "color.component.slider.border.active": "S:0960863f2dc7fd67280a82e88c3de2d60055b2f1,", + "color.component.slider.tick.default.background": "S:92d824ad9ecc032a3be1c1e9bd1a2b066f01f969,", + "color.component.slider.tick.default.border": "S:966ccad2ee0a7e564eb8fd81e4f1b36b5ad46783,", + "color.component.slider.tick.active.background": "S:a66878a140ce320e8995da0815772ce6dc6b30fa,", + "color.component.slider.tick.active.border": "S:36bccf2efacff68e8c5a3ea29ab2e21fcb24065c,", + "color.component.slider-range.font.label": "S:566472d6d1fd6905c642591a5487b891d3bb9178,", + "color.component.slider-range.font.tick-label": "S:6cb75ed2e3e6e98a3bced7f7c8fc7404a3e7b635,", + "color.component.slider-range.handle.background": "S:a5284d1faccc362d2515e6e56b96a0db5ed598cd,", + "color.component.slider-range.handle.border": "S:97a204ffc278abd33ce910edd3afd956dab1f09e,", + "color.component.slider-range.border.default": "S:d764ccfdb095baa8007e49712bbcd469326fde4c,", + "color.component.slider-range.border.active": "S:161b701c0fefcc0f258a5ad8f7a6db72ac2edc20,", + "color.component.slider-range.tick.default.background": "S:cdd25d7543be8deb0b8fa7e484f55d1edac31e0e,", + "color.component.slider-range.tick.default.border": "S:f52511564f711938c347161a7f2a927f794ec914,", + "color.component.slider-range.tick.active.background": "S:d7b9b249653fb1d0cad6005802fabbca889ced89,", + "color.component.slider-range.tick.active.border": "S:4537295c3af08dbf1365dde8f690ea810ded09e1,", + "color.component.slider-histogram.font.label": "S:b9d25b08bb31f04d0ce091b6b7dd10dbd4ec11b4,", + "color.component.slider-histogram.font.tick-label": "S:9ee9e4a034ddc813056173cce7ada4ca361289eb,", + "color.component.slider-histogram.handle.background": "S:d08a29051e6d892f9de1186d43c4660730362f47,", + "color.component.slider-histogram.handle.border": "S:e8850bc33691b63a04b63e67dda3f52c920b1a13,", + "color.component.slider-histogram.border.default": "S:0223d4c97175e828db89196a2cd670ca6d1a76b4,", + "color.component.slider-histogram.border.active": "S:82b024647b61dc5ad283d9d5eaeb51822bf2b33e,", + "color.component.slider-histogram.tick.default.background": "S:de0a23772f2e807f21ccdaa8e3f1c475589cfeef,", + "color.component.slider-histogram.tick.default.border": "S:51535ca7754073f5220a3064ede0f891cd8802c2,", + "color.component.slider-histogram.tick.active.background": "S:77e7d74f101fb6a4074f94044ae436552182926f,", + "color.component.slider-histogram.tick.active.border": "S:55277a6ac35783654d60a9c0fbe161146c856de1,", + "color.component.slider-histogram.area.active.background": "S:f44f588f048a77d5f1637adc19d959cdf4532f25,", + "color.component.slider-histogram.active-end.background.dark": "S:5e3fbef5136b0338db1ea87c19c8085db593d741,", + "color.component.slider-histogram-range.font.label": "S:c12bbe0653f373e709f2c10eae450792f9b0ac46,", + "color.component.slider-histogram-range.font.tick-label": "S:6c3b2f19d8ba57288bcf39038d75d2511eee68ef,", + "color.component.slider-histogram-range.handle.background": "S:2df158326948f8ac42362dff5e31db9af1b7ecbb,", + "color.component.slider-histogram-range.handle.border": "S:a9f796afff7a4cb274c3d0a2b9c93e56709253bf,", + "color.component.slider-histogram-range.border.default": "S:e14fa4dcc33fbeed35b1e6622fa833e604f4d183,", + "color.component.slider-histogram-range.border.active": "S:9256ee5bf9bd9374da39b53a027b206a00164a69,", + "color.component.slider-histogram-range.tick.default.background": "S:ae9ae4322a5a315257d5b8edf0bdb869444df70c,", + "color.component.slider-histogram-range.tick.default.border": "S:e9c227991ebbbb7815ff6b44063d6e7bde5bc489,", + "color.component.slider-histogram-range.tick.active.background": "S:a8442695edefa89bff9536ecb818fdf2c4279ef5,", + "color.component.slider-histogram-range.tick.active.border": "S:6ed916d0c5e550f7bc739b106437a9ce43f9f5b4,", + "color.component.slider-histogram-range.area.active.background": "S:00c9fff6c5c77497e17027c228ed5ee8b22a95d8,", + "color.component.slider-histogram-range.active-end.background": "S:f65c4a92b104c0f5f1bc9d8cf38150661ca3a931,", + "color.component.filter.font": "S:d276f3d2c4ee22ccf4c569c4fde8c58486e59199,", + "color.component.filter.icon": "S:ffb8503a521fb14ac0e8e7ff13fd296323d818eb,", + "color.component.filter.border": "S:fee18a8e6036a84234ddfa977717e6ba72e9a92f,", + "color.component.filter.background": "S:465cc9122b176ab1029340c990662c577af04342,", + "color.component.scrim.background": "S:922a92c205bc35e5a730ca48f93783419e023ba2,", + "color.component.tip-manager.font.heading": "S:0fd4726103f275c1dc68f9bd4b770365dc6b25f8,", + "color.component.tip-manager.icon": "S:9253bbe25d84394b6b34999a1e58cc37c369f40c,", + "color.component.tip-manager.background.default.light": "S:59590700d6e19cf81dd323972f00881394cf9235,", + "color.component.tip-manager.border.default": "S:c6d32577e412efc77dce583fd63c5b4abc4e0301,", + "color.component.button.font.brand.solid": "S:3fe82dc072ada61b96bb07b9d8c4cb1c538e6032,", + "color.component.button.font.brand.outline-fill": "S:37fc3cd1e7fe01f66e66241973596a943725a8b3,", + "color.component.button.font.brand.outline": "S:85b122326fdfae7e82b16b65124a81d0c14ddea9,", + "color.component.button.font.brand.transparent": "S:74182b37a887ce44777762d08013678dbf20f16c,", + "color.component.button.font.inverse.solid": "S:b629e9f9cdc9f900e2cdc1307d133f4cbb4ae151,", + "color.component.button.font.inverse.outline-fill": "S:5f31156046b8f9bc8848162d8ad6832c2ca00bcb,", + "color.component.button.font.inverse.outline": "S:f7c8cd89a1ae352d1b8992d2567dc90307d1e5a8,", + "color.component.button.font.inverse.transparent": "S:ca0f5e4b1ab6a039ba170fc00f3e4838046e81f3,", + "color.component.button.font.neutral.solid": "S:f4dfaf687306973fca333fa36f84cff1bf929894,", + "color.component.button.font.neutral.outline-fill": "S:c4c31c170de7b853c976167ad1e2f76c04da1a18,", + "color.component.button.font.neutral.outline": "S:71d3a48828798aa91a5666b52c630ac54e212b1a,", + "color.component.button.font.neutral.transparent": "S:a3ce00145af80c51f9f4501921be88c553d5a0f8,", + "color.component.button.font.danger.solid": "S:df0a15405034fa1d122d9f63ce4b93e34dadf802,", + "color.component.button.font.danger.outline-fill": "S:d2c161168b9bef4a06706100f317d5b0b0c5fd90,", + "color.component.button.font.danger.outline": "S:1917f846c082c08bc90cb26db2fecc42c5c2e4e1,", + "color.component.button.font.danger.transparent": "S:5abba32c35533b4fac51a1cd2dc418c8447db559,", + "color.component.button.icon.brand.solid": "S:08556e2b6c883ed466d040709b49256840743085,", + "color.component.button.icon.brand.outline-fill": "S:0c287748bb1f9c256b5fad8bcfc170f2537e89b7,", + "color.component.button.icon.brand.outline": "S:9dfa73d9f66eb6a55a769ff3aaa064a134e9d4e5,", + "color.component.button.icon.brand.transparent": "S:c6f10592bb8a4f8cfcc6380d49d3218662ccdb63,", + "color.component.button.icon.inverse.solid": "S:457cbcaf72a75ec46792cbc3f4cb952dcbf4463a,", + "color.component.button.icon.inverse.outline-fill": "S:79ea71f93e9373fff5cf27cc67bc0ed9e59af3dd,", + "color.component.button.icon.inverse.outline": "S:37e57e2db5365240de99ea17612bacc68a0511ed,", + "color.component.button.icon.inverse.transparent": "S:670157fdcef9b341d5a80a65f843c9edb8d96774,", + "color.component.button.icon.neutral.solid": "S:3ed62ec6b3c0b167951a6eb8965d9e4717d5771e,", + "color.component.button.icon.neutral.outline-fill": "S:d7f5877f4a75a300d9520ceb165970a16074cb72,", + "color.component.button.icon.neutral.outline": "S:2012355b67fb4869756befa71fbb8c532f8b76e1,", + "color.component.button.icon.neutral.transparent": "S:81d3cf808cb661be102f4d599698a00faaaa6295,", + "color.component.button.icon.danger.solid": "S:de387fa2996fe9e85add7487952c0a479596760f,", + "color.component.button.icon.danger.outline-fill": "S:35f3fc53b3529c1a8e958646362e3d61248eef8c,", + "color.component.button.icon.danger.outline": "S:215f76c20d44300ac6e7a8b0d9efe2c444acf850,", + "color.component.button.icon.danger.transparent": "S:fabd47e36e76ac7bc3015cced994b04c6083b45c,", + "color.component.button.background.brand.solid": "S:5237d85a48e79d2afc2b2d226d2a005ce29b88df,", + "color.component.button.background.brand.outline-fill": "S:92a64a3075bb2f6bd8f1e35221b40d5bc09e8980,", + "color.component.button.background.inverse.solid": "S:6d8fa0049d01eff5e57494f524094a488c46c2c2,", + "color.component.button.background.inverse.outline-fill": "S:e479719dbacc8ab1b6d9bfbba683888fce3b3224,", + "color.component.button.background.neutral.solid": "S:1ed4fe8817fec12e7151e4171a703b5980df4de2,", + "color.component.button.background.neutral.outline-fill": "S:62cbde8fe3173edf2cceabbf8aea5fc990d7e30a,", + "color.component.button.background.danger.solid": "S:54fb125fad25937719a335d0ade028dfd72f7b2a,", + "color.component.button.background.danger.outline-fill": "S:dcdc818f615ec820ec772a8afb69e10f211250e0,", + "color.component.button.border.brand.outline-fill": "S:4048268e007a31fe30b335388c38b432d7e99915,", + "color.component.button.border.brand.outline": "S:dce70841be9eac633bf769f5c3c50d2cb65fcbf3,", + "color.component.button.border.inverse.outline-fill": "S:79219e487169f4fd284de9c83cf30bfa11830840,", + "color.component.button.border.inverse.outline": "S:0737e16de0b956758db14bd9660f76a1d9736896,", + "color.component.button.border.neutral.outline-fill": "S:2ff5be5692a8245581663c6611971afc2c61f7aa,", + "color.component.button.border.neutral.outline": "S:70b6e2fee158142b59b57ce0d494f1f7c9abdde6,", + "color.component.button.border.danger.outline-fill": "S:fa7819f68ecc6ef663c3eab17c59862bc87703ed,", + "color.component.button.border.danger.outline": "S:44eeb8041f4fab160aaff51547368a41c41a2981,", + "color.component.split-button.font.brand.solid": "S:5b901bdc2a5ead15fa817a98c8b6c96901eb95cc,", + "color.component.split-button.font.brand.outline-fill": "S:b063e41ee8f3c89074a0cfadfc7a47d94182f1d8,", + "color.component.split-button.font.brand.outline": "S:ebc162c8b21194910a35ad32d6381ae2ff97defe,", + "color.component.split-button.font.brand.transparent": "S:4d0be1e25ed1364b5ada2f780cb6ca7db10f6036,", + "color.component.split-button.font.inverse.solid": "S:3e1a3a9aca4b68f27f44f1e00f5a87e4d179adfa,", + "color.component.split-button.font.inverse.outline-fill": "S:fcfd5ecee2fd9d55ea587af3a22704752423f0f5,", + "color.component.split-button.font.inverse.outline": "S:715293637d1d19a23d49b74f67894b2b2d4ce222,", + "color.component.split-button.font.inverse.transparent": "S:c94510ebcaff9dbf524309a9be1efabea4750f56,", + "color.component.split-button.font.neutral.solid": "S:463cd2aefd34c5b8f4f61bb628eb2d16a2ce1c53,", + "color.component.split-button.font.neutral.outline-fill": "S:e3ea51890b07070ec0e0ae3f7022aa48952917f9,", + "color.component.split-button.font.neutral.outline": "S:29bc436861fd4dbd02c1b6c4a8d47085aa0eef52,", + "color.component.split-button.font.neutral.transparent": "S:ef346610e28eced8e5f9d4e3d06f0eb3765b213b,", + "color.component.split-button.font.danger.solid": "S:837d4b9c9782e38978d4ab29dab1b0f687ea0f97,", + "color.component.split-button.font.danger.outline-fill": "S:6ab4e2e5fc5c5f42bd791473ee9d5058c4c21b69,", + "color.component.split-button.font.danger.outline": "S:87ed247bef4408e7f682ce8fc6bce7942aa9201f,", + "color.component.split-button.font.danger.transparent": "S:12b1b3da1c8eeaf70e91ec7c42ae1e154b2d11dd,", + "color.component.split-button.icon.brand.solid": "S:ccfb47312f729988384a0eeff779beafbf81837f,", + "color.component.split-button.icon.brand.outline-fill": "S:7fd6853a3c789158a6cea18f70287d43f98b583e,", + "color.component.split-button.icon.brand.outline": "S:5293d699938069a23e2689c67ad4254a42eb9d24,", + "color.component.split-button.icon.brand.transparent": "S:50ad39f33c8ac75f14966939c69fa57118acc2b6,", + "color.component.split-button.icon.inverse.solid": "S:ecb1fbd7138594f5be61b6d36b8bb81e46fbd652,", + "color.component.split-button.icon.inverse.outline-fill": "S:b500c00dff421eae5df1960bb82f3d7cf9ef8f61,", + "color.component.split-button.icon.inverse.outline": "S:2c4ceabdef9281222b790814660ad08d44db5514,", + "color.component.split-button.icon.inverse.transparent": "S:8aee6269bab102df2968105bb814b227e7f6b8dc,", + "color.component.split-button.icon.neutral.solid": "S:a7a0f553b0297d30710502ffd03c3ddec329cfb9,", + "color.component.split-button.icon.neutral.outline-fill": "S:74a4ff152b1ead50ac5e41aeabe070c1ad420550,", + "color.component.split-button.icon.neutral.outline": "S:1cefa4b278deb32afe59ee5546ee67b99e093bc8,", + "color.component.split-button.icon.neutral.transparent": "S:39493d9411bd8c658aed1523e5642ac338f55fcd,", + "color.component.split-button.icon.danger.solid": "S:ab8558af1d90ad320bcd92554a80f353127cf89a,", + "color.component.split-button.icon.danger.outline-fill": "S:97c74f60525f45239fe53763c6e471e3fcc61e72,", + "color.component.split-button.icon.danger.outline": "S:f14067e96e98fdbad3d366c286c40061e80b8c67,", + "color.component.split-button.icon.danger.transparent": "S:2f97ebe516164d2c730c09fd216240dcd8e5d457,", + "color.component.split-button.background.brand.solid": "S:ea712011b95d77b2e30b54bcd04a9f5bb62370dc,", + "color.component.split-button.background.brand.outline-fill": "S:6f5343d4c5b6754d4fc5d8eca2705fd44bfc086c,", + "color.component.split-button.background.inverse.solid": "S:6317361fa45ebd804d1b13a6ca0d6be51829427f,", + "color.component.split-button.background.inverse.outline-fill": "S:206b2cd258d06abe0368fdba23ca63d5b3b83289,", + "color.component.split-button.background.neutral.solid": "S:3df992cda042ff8b2a18398a9290c4d88d51cc3d,", + "color.component.split-button.background.neutral.outline-fill": "S:d912dac2ce7a1d5735b7bc6a42050c2fc82855ab,", + "color.component.split-button.background.danger.solid": "S:e20a29f1f74d4acdc856787a117ffcbcc721b15b,", + "color.component.split-button.background.danger.outline-fill": "S:22a0c7516594731164e359952665a34d57b82ca2,", + "color.component.split-button.border.brand.outline-fill": "S:518e08e4bfa6d8e1695285e178177e12933730eb,", + "color.component.split-button.border.brand.outline": "S:6ade724bdd13e248db0ae3b4e72acd238b72c711,", + "color.component.split-button.border.inverse.outline-fill": "S:de22e61ffec005932bac0f524f4310475d7e4c21,", + "color.component.split-button.border.inverse.outline": "S:2048046d774279b6aed9eea9100d28575b13f0b6,", + "color.component.split-button.border.neutral.outline-fill": "S:f89e12b2e1ab2de3832186d2cf5be4cae3fa89f2,", + "color.component.split-button.border.neutral.outline": "S:3f4cb52fe79c4117fb9cf8126f189d75536d34da,", + "color.component.split-button.border.danger.outline-fill": "S:c1d0119b28d46c15c92720084cf400d7d107d84e,", + "color.component.split-button.border.danger.outline": "S:e00804370d3c41e9c35e8bcb83e8c05e9c88acb7,", + "color.component.split-button.divider.brand.solid": "S:1a5ca48860c06ab06a22b4e7ce0b47413dbe546d,", + "color.component.split-button.divider.brand.outline-fill": "S:755fa548d84b00d15a8a254eb53b34d66f587d46,", + "color.component.split-button.divider.brand.outline": "S:63e081f03cdb349650fb14668374d3304d44a31f,", + "color.component.split-button.divider.brand.transparent": "S:2c9e7958c52f49e92102ae36638281187bb02de1,", + "color.component.split-button.divider.inverse.solid": "S:5750d47dd7aa251e055f21dcf86081bbbb3ddaa5,", + "color.component.split-button.divider.inverse.outline-fill": "S:db51f814a5669143002e6c6853590a53c1a4bf3e,", + "color.component.split-button.divider.inverse.outline": "S:6f1fce1323a8826b074a7e7115379d19b6f5e5bb,", + "color.component.split-button.divider.inverse.transparent": "S:03f47e00c40f31adeb3f40bcc57e94971093ddea,", + "color.component.split-button.divider.neutral.solid": "S:e352c6e6c5b88f97112c24afb81d9c94d416498e,", + "color.component.split-button.divider.neutral.outline-fill": "S:4e5c9e305d43dac5aae6325e69ee7fd27e0e47fa,", + "color.component.split-button.divider.neutral.outline": "S:4349ad6b5d96fe7612a059b96fb383731d65fa35,", + "color.component.split-button.divider.neutral.transparent": "S:dafa195f03265cb5859a876972a7cf84018a2e6b,", + "color.component.split-button.divider.danger.solid": "S:1a9daf87b3d9d5dae2cdd1426c681c0733bc22b8,", + "color.component.split-button.divider.danger.outline-fill": "S:15bd1b4566da4161afe6173deb7db13416cb2f8c,", + "color.component.split-button.divider.danger.outline": "S:e3328b70eb8d522af149a77efeef90963bf02523,", + "color.component.split-button.divider.danger.transparent": "S:87e395d0f52658b5fb11fc4d3a3aa2a780f42bae,", + "color.component.fab.font.brand.solid": "S:4e32d4beb5ae5e6b89181e73bffa0bd68511cfd6,", + "color.component.fab.font.brand.outline-fill": "S:40b7adce591b56fc26d3e0106d822ce645eab98c,", + "color.component.fab.font.inverse.solid": "S:4baaef83cc1c692361f9d2ad183832c32480c2d7,", + "color.component.fab.font.inverse.outline-fill": "S:a165c9e300fbe507bd003d73a4a7259d4526766b,", + "color.component.fab.font.neutral.solid": "S:a6480a631a1682be927e985e6e9b7730800c611f,", + "color.component.fab.font.neutral.outline-fill": "S:e3530d10e71a683d5660be777d5000274cc3c30b,", + "color.component.fab.font.danger.solid": "S:ebc16f3cbae4d3e4df721cd6d5c719d3d35efa7a,", + "color.component.fab.font.danger.outline-fill": "S:eeadea227db84065b150e1ab8e567ff41a46e026,", + "color.component.fab.icon.brand.solid": "S:cac1a897cb4bd33a216395e137954ee9d54130be,", + "color.component.fab.icon.brand.outline-fill": "S:909aa3aa4117624ac62ded48d9948d49e2c23db4,", + "color.component.fab.icon.inverse.solid": "S:9ebec9ea48df92549fb3616f8b40e7742b7dc114,", + "color.component.fab.icon.inverse.outline-fill": "S:b1801cd288f53a966d6dd5fb35c40145fd12f37b,", + "color.component.fab.icon.neutral.solid": "S:9aca318c01a0067623173002baa19ef8c801f937,", + "color.component.fab.icon.neutral.outline-fill": "S:833ea732836c9b28d12e49763448596c9a2eb1e7,", + "color.component.fab.icon.danger.solid": "S:ac3f54c0a60d518f2f14806a93a6f02549842b0a,", + "color.component.fab.icon.danger.outline-fill": "S:331d6656a963fbc17dd7660e9f90b8cb93cdcf68,", + "color.component.fab.background.brand.solid": "S:29dd97a6bf86871b47d513cdcafac7ab097c5f7b,", + "color.component.fab.background.brand.outline-fill": "S:e70d40651c8a6a20c420931ccb7c901eddb2cc55,", + "color.component.fab.background.inverse.solid": "S:72f07682f4fdb63d651c2e66dfbf3ef215453584,", + "color.component.fab.background.inverse.outline-fill": "S:79b41ef9bd83960eb55290625ffdc64a1840b05a,", + "color.component.fab.background.neutral.solid": "S:5223d14210fda641018d54d3f6c86636a3df8a6c,", + "color.component.fab.background.neutral.outline-fill": "S:68dc2bf07a9acec410c390b6d9846f0172f6254d,", + "color.component.fab.background.danger.solid": "S:9f3526070f761c3a9e7c95da320031a9b3cccc27,", + "color.component.fab.background.danger.outline-fill": "S:911e312ef9a054d4564c2eb77f35984eecb15814,", + "color.component.fab.border.brand.outline-fill": "S:fadc73523cf022e39522d46b1648b05f4e21d254,", + "color.component.fab.border.brand.solid": "S:7891d04c8d0777b99dc52e7c08371b0a5f4966d8,", + "color.component.fab.border.inverse.outline-fill": "S:a8427726b44bee366d22661a759bb0f46874e110,", + "color.component.fab.border.inverse.solid": "S:a286d7cf673e68334e0d4a33de793d4bd167f06c,", + "color.component.fab.border.neutral.outline-fill": "S:877348195b4cfd3dc374043fe3c074977acbb828,", + "color.component.fab.border.neutral.solid": "S:51a047ab604092b7a8e37bf3eb27a5b2c7a21f9b,", + "color.component.fab.border.danger.outline-fill": "S:fe303a8ec6a9e360961d219df08e21ec262f4425,", + "color.component.fab.border.danger.solid": "S:22269449878c68bbb26b6f7460dc61bd6e859c8c,", + "color.component.combobox.icon.default.light": "S:a1fc6c908b1cbf66860f5c7fa57284067e55ea69,", + "color.component.combobox.icon.dropdown.light": "S:bf19f7f6dd39def8940f138977c44bb1c955cd2e,", + "color.component.combobox.border.light": "S:1809b3436041a9efee9367c3ee7a505e00d8354b,", + "color.component.combobox.background.default.light": "S:d6dd849a4edd632232ae88d58b849475bb0ef98e,", + "color.component.combobox.background.item-container.light": "S:68cdaed513c49c473be881a5b846b37ffb2c2c46,", + "color.component.combobox.font": "S:9233044f0abbf86b4b9682e5a95e5dfe8972290a,", + "color.component.combobox-item.font.default.light": "S:10ec0f419a7ded5bb978e9946fffe17012537271,", + "color.component.combobox-item.font.selected.light": "S:7dbaf2711ef406a835d2a6559e2f5234b96aa504,", + "color.component.combobox-item.font.group-title.light": "S:e845d6d5b2edd60e0435f7245edbd175f13b2792,", + "color.component.combobox-item.icon.default.light": "S:52476173d2814b706604c7dad012219152befab4,", + "color.component.combobox-item.icon.default.selected.light": "S:35147473eec175c8dc428d948c9afcfc1bd508f6,", + "color.component.combobox-item.icon.select.light": "S:4c78423abb6c3cfd6b6f108e1c60ce9ae1e43a75,", + "color.component.combobox-item.border.light": "S:6044e1231ba3622f7f58d2a01b97110e55637dce,", + "color.component.dropdown.background.default.light": "S:8b6485ab270795af43cc1a3cb770281c5352a907,", + "color.component.dropdown-item.font.default.light": "S:a861835f7600f7d4b4a0e614cd46c7651fb9566f,", + "color.component.dropdown-item.font.selected.light": "S:a804ca2b38831f2e6912f11219544c677ce793c7,", + "color.component.dropdown-item.font.group-title.light": "S:9035f6df8c52b56f7b121431bc4166e60850ec16,", + "color.component.dropdown-item.icon.default.light": "S:80aafd08be54db99c5a550931fb8dd066a2c1b42,", + "color.component.dropdown-item.icon.default.selected.light": "S:6bbf901208a3345bd2e69ac8fa4330d9ff7b8411,", + "color.component.dropdown-item.icon.select.light": "S:b93f59b6c1e2d9c629c0668f5a2911e4ee2ccba1,", + "color.component.dropdown-item.border.light": "S:03488e4f77893ca26ff903fd5b4d6ce25a479a85,", + "color.component.segmented-control.border.light": "S:a1a3cc1ba11888a4bd274d664dd7ba9244e490e5,", + "color.component.segmented-control.background.light": "S:ab29f653c71ea42adb6063d795d17fab3131d70e,", + "color.component.segmented-control-item-.font.solid.default.light": "S:cc0fa7734e241b562d9ea680cd6af67dfb672854,", + "color.component.segmented-control-item-.font.solid.checked.light": "S:498975a6249729928286aea1816b8570ec9e9b01,", + "color.component.segmented-control-item-.font.outline.default.light": "S:83f628ee9ad9b0b5490041e938708f632e2449c5,", + "color.component.segmented-control-item-.font.outline.checked.light": "S:474c0363c6f2df9811ad100bce39c39c5c848bee,", + "color.component.segmented-control-item-.icon.solid.default.light": "S:434ca04bb6905cb097161463f00da2a7dca6bdfd,", + "color.component.segmented-control-item-.icon.solid.checked.light": "S:179a58ab80ba76b0a4342d1fbd2af16d1553c704,", + "color.component.segmented-control-item-.icon.outline.checked.light": "S:d148a648a5d0e4193234b1d6215eb0085d37d3dc,", + "color.component.segmented-control-item-.icon.outline.default.light": "S:8821bcbc5dc31a15fd5eb94697e2d835dd6b4c0a,", + "color.component.segmented-control-item-.border.outline.checked.light": "S:99643c865ea63315c4848f8164113a31ff09c590,", + "color.component.segmented-control-item-.background.solid.checked.light": "S:374adf02c78964c8303a5d60000deeca12176530," } }, { From 451413435bb325ce66bf1af636795f7575742cc3 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Thu, 4 May 2023 15:52:29 +0200 Subject: [PATCH 631/696] Updates --- tokens/$metadata.json | 1 + tokens/$themes.json | 15 ++- tokens/component/dropdown.json | 2 +- tokens/component/select.json | 168 +++++++++++++++++++++++++++++++++ 4 files changed, 180 insertions(+), 6 deletions(-) create mode 100644 tokens/component/select.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 2fab7d2714e..5d013a9d880 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -25,6 +25,7 @@ "component/card", "component/list-item", "component/date-picker", + "component/select", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", diff --git a/tokens/$themes.json b/tokens/$themes.json index 0c54fbc69e8..7dfd22756c3 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,7 +6,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled" + "brand/light": "enabled", + "component/select": "disabled" }, "$figmaStyleReferences": {} }, @@ -17,7 +18,8 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled" + "brand/dark": "enabled", + "component/select": "disabled" }, "$figmaStyleReferences": {} }, @@ -56,7 +58,8 @@ "component/notice": "source", "component/alert": "source", "component/list-item": "source", - "component/segmented-control-item": "source" + "component/segmented-control-item": "source", + "component/select": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:b28244f76fae4e504bbfa18bb30e111e02a00461,", @@ -643,7 +646,8 @@ "component/notice": "source", "component/alert": "source", "component/list-item": "source", - "component/segmented-control-item": "source" + "component/segmented-control-item": "source", + "component/select": "source" }, "$figmaStyleReferences": { "color.brand.default": "S:4ae7e0e0a08b9109fef0b6c2cb45185a3b711de8,", @@ -780,7 +784,8 @@ "component/combobox-item": "enabled", "component/flow-header": "enabled", "component/list-item": "enabled", - "component/segmented-control-item": "enabled" + "component/segmented-control-item": "enabled", + "component/select": "enabled" }, "$figmaStyleReferences": { "semantic.ui.color.brand.default.light": "S:2717eb49f745b15201e304a9a0417cab2b0be01f,", diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index d349d6bf369..ec2604735c8 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -1,5 +1,5 @@ { - "dropdown": { + "select": { "background": { "default": { "light": { diff --git a/tokens/component/select.json b/tokens/component/select.json new file mode 100644 index 00000000000..fc9976a92a3 --- /dev/null +++ b/tokens/component/select.json @@ -0,0 +1,168 @@ +{ + "select": { + "icon": { + "default": { + "light": { + "value": "$semantic.ui.color.text.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.1.dark", + "type": "color" + } + }, + "dropdown": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.input.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.border.input.dark", + "type": "color" + }, + "sm": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "md": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + }, + "lg": { + "value": "$core.border.border-width.0", + "type": "borderWidth" + } + }, + "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + }, + "item-container": { + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" + } + } + }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.9", + "type": "sizing" + } + }, + "space-between": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "space-around": { + "left-right": { + "sm": { + "value": "$core.spacing.1", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.5", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.7", + "type": "spacing" + } + }, + "top-bottom": { + "sm": { + "value": "$core.spacing.3", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.2", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.4", + "type": "spacing" + } + } + }, + "font": { + "placeholder": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.light.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + } + }, + "placholder": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "value": { + "light": "[object Object]", + "dark": "[object Object]", + "sm": "[object Object]", + "md": "[object Object]", + "lg": "[object Object]" + }, + "type": "other" + }, + "item-container": { + "shadow": { + "value": "{core.box-shadow.2}", + "type": "boxShadow" + } + } + } +} \ No newline at end of file From 5624b4e0f59171a57b49a4ce48cab996d981e54a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 09:53:37 -0700 Subject: [PATCH 632/696] feat: add scss platform pass markdownlint eslint and prettier --- .eslintrc.json | 10 +- .github/workflows/sync_to_airtable.yml | 14 +- .lintstagedrc.json | 5 +- .prettierrc.json => .prettierrc | 0 package-lock.json | 1593 ++++++++++++++++- package.json | 30 +- tokens/component/action.json | 12 + tools/token-transformer/format/scss.test.ts | 59 + tools/token-transformer/format/scss.ts | 30 + tools/token-transformer/getThemes.ts | 4 +- .../parse/expandComposites.ts | 9 +- tools/token-transformer/sd-run.ts | 60 +- .../transform/nameCamelCase.ts | 10 +- .../transform/nameKebabCase.ts | 10 +- .../utils/compositeTokens.ts | 64 +- .../convertTokenToStyleDictionaryFormat.ts | 11 +- tools/token-transformer/utils/matchList.ts | 10 +- tools/token-transformer/utils/parseName.ts | 13 +- .../token-transformer/utils/parseTokenPath.ts | 7 +- 19 files changed, 1751 insertions(+), 200 deletions(-) rename .prettierrc.json => .prettierrc (100%) create mode 100644 tools/token-transformer/format/scss.test.ts create mode 100644 tools/token-transformer/format/scss.ts diff --git a/.eslintrc.json b/.eslintrc.json index 330e0134e72..1527294d4dd 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -15,15 +15,7 @@ "ecmaVersion": 2018, "sourceType": "module" }, - "plugins": [ - "@esri/calcite-components", - "@typescript-eslint", - "eslint-plugin-react", - "jest", - "jsdoc", - "prettier", - "unicorn" - ], + "plugins": ["@typescript-eslint", "jest", "jsdoc", "prettier", "unicorn"], "rules": { "@typescript-eslint/ban-types": "warn", "@typescript-eslint/explicit-module-boundary-types": [ diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml index f94fd7687ca..5a5f126bea9 100644 --- a/.github/workflows/sync_to_airtable.yml +++ b/.github/workflows/sync_to_airtable.yml @@ -2,19 +2,7 @@ name: Sync to Airtable on: issues: - types: - [ - assigned, - closed, - demilestoned, - edited, - labeled, - milestoned, - opened, - reopened, - unassigned, - unlabeled, - ] + types: [assigned, closed, demilestoned, edited, labeled, milestoned, opened, reopened, unassigned, unlabeled] jobs: issue_assigned: diff --git a/.lintstagedrc.json b/.lintstagedrc.json index df11a3c94e3..4f39d08c018 100644 --- a/.lintstagedrc.json +++ b/.lintstagedrc.json @@ -1,8 +1,5 @@ { "*.{json,html,yml}": ["prettier --write"], "*.{ts,tsx}": ["eslint --ext .ts,.tsx --fix", "prettier --write"], - "*.md": [ - "markdownlint --fix --disable MD024 MD013 MD041 MD033", - "prettier --write" - ] + "*.md": ["markdownlint --fix --disable MD024 MD013 MD041 MD033", "prettier --write"] } diff --git a/.prettierrc.json b/.prettierrc similarity index 100% rename from .prettierrc.json rename to .prettierrc diff --git a/package-lock.json b/package-lock.json index 26c4c7962c5..a797aeb0f03 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,12 +12,18 @@ "@tokens-studio/sd-transforms": "^0.8.2", "@types/jest": "^29.5.0", "@types/node": "^18.15.11", + "@typescript-eslint/eslint-plugin": "^5.59.2", "change-case": "^4.1.2", "eslint": "^8.39.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-jest": "^27.2.1", + "eslint-plugin-jsdoc": "^43.1.1", + "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-unicorn": "^46.0.0", "jest": "^29.5.0", "lodash-es": "^4.17.21", - "markdownlint": "^0.28.2", + "markdownlint-cli": "^0.34.0", + "prettier": "^2.8.8", "style-dictionary": "^3.7.1", "token-transformer": "^0.0.27", "ts-jest": "^29.0.5", @@ -620,6 +626,20 @@ "@jridgewell/sourcemap-codec": "^1.4.10" } }, + "node_modules/@es-joy/jsdoccomment": { + "version": "0.37.1", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.37.1.tgz", + "integrity": "sha512-5vxWJ1gEkEF0yRd0O+uK6dHJf7adrxwQSX8PuRiPfFSAbNLnY0ZJfXaZucoz14Jj2N11xn2DnlEPwWRpYpvRjg==", + "dev": true, + "dependencies": { + "comment-parser": "1.3.1", + "esquery": "^1.5.0", + "jsdoc-type-pratt-parser": "~4.0.0" + }, + "engines": { + "node": "^14 || ^16 || ^17 || ^18 || ^19 || ^20" + } + }, "node_modules/@eslint-community/eslint-utils": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", @@ -1146,6 +1166,16 @@ "node": ">= 8" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@sinclair/typebox": { "version": "0.25.24", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", @@ -1301,6 +1331,12 @@ "pretty-format": "^29.0.0" } }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, "node_modules/@types/node": { "version": "18.15.11", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", @@ -1319,6 +1355,12 @@ "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", "dev": true }, + "node_modules/@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "dev": true + }, "node_modules/@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", @@ -1340,6 +1382,316 @@ "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", "dev": true }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.2.tgz", + "integrity": "sha512-yVrXupeHjRxLDcPKL10sGQ/QlVrA8J5IYOEWVqk0lJaSZP7X5DfnP7Ns3cc74/blmbipQ1htFNVGsHX6wsYm0A==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/type-utils": "5.59.2", + "@typescript-eslint/utils": "5.59.2", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/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/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/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/@typescript-eslint/parser": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.2.tgz", + "integrity": "sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ==", + "dev": true, + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/typescript-estree": "5.59.2", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.2.tgz", + "integrity": "sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/visitor-keys": "5.59.2" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.2.tgz", + "integrity": "sha512-b1LS2phBOsEy/T381bxkkywfQXkV1dWda/z0PhnIy3bC5+rQWQDS7fk9CSpcXBccPY27Z6vBEuaPBCKCgYezyQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "5.59.2", + "@typescript-eslint/utils": "5.59.2", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.2.tgz", + "integrity": "sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.2.tgz", + "integrity": "sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/visitor-keys": "5.59.2", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/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/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/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/@typescript-eslint/utils": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.2.tgz", + "integrity": "sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/typescript-estree": "5.59.2", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/utils/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/@typescript-eslint/utils/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/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/@typescript-eslint/visitor-keys": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz", + "integrity": "sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.59.2", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, "node_modules/acorn": { "version": "8.8.2", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", @@ -1438,6 +1790,15 @@ "node": ">= 8" } }, + "node_modules/are-docs-informative": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", + "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", + "dev": true, + "engines": { + "node": ">=14" + } + }, "node_modules/arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", @@ -1453,6 +1814,15 @@ "sprintf-js": "~1.0.2" } }, + "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/babel-jest": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", @@ -1854,6 +2224,15 @@ "node": ">= 12" } }, + "node_modules/comment-parser": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz", + "integrity": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==", + "dev": true, + "engines": { + "node": ">= 12.0.0" + } + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -1920,6 +2299,15 @@ "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", @@ -1962,6 +2350,18 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "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/doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", @@ -2104,6 +2504,130 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/eslint-config-prettier": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", + "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "27.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz", + "integrity": "sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "^5.10.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsdoc": { + "version": "43.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.1.1.tgz", + "integrity": "sha512-J2kjjsJ5vBXSyNzqJhceeSGTAgVgZHcPSJKo3vD4tNjUdfky98rR2VfZUDsS1GKL6isyVa8GWvr+Az7Vyg2HXA==", + "dev": true, + "dependencies": { + "@es-joy/jsdoccomment": "~0.37.1", + "are-docs-informative": "^0.0.2", + "comment-parser": "1.3.1", + "debug": "^4.3.4", + "escape-string-regexp": "^4.0.0", + "esquery": "^1.5.0", + "semver": "^7.5.0", + "spdx-expression-parse": "^3.0.1" + }, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-plugin-jsdoc/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/eslint-plugin-jsdoc/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jsdoc/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/eslint-plugin-prettier": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "eslint": ">=7.28.0", + "prettier": ">=2.0.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } + } + }, "node_modules/eslint-plugin-unicorn": { "version": "46.0.0", "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", @@ -2445,6 +2969,40 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "node_modules/fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "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/fast-glob/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/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -2531,6 +3089,34 @@ "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, + "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, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", + "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -2598,6 +3184,18 @@ "node": ">=8.0.0" } }, + "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==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -2651,6 +3249,26 @@ "node": ">=4" } }, + "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/graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", @@ -2802,6 +3420,15 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "node_modules/ini": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", + "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -2976,6 +3603,24 @@ "node": ">=8" } }, + "node_modules/jackspeak": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.1.tgz", + "integrity": "sha512-juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/jest": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", @@ -3596,6 +4241,15 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/jsdoc-type-pratt-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", + "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, "node_modules/jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", @@ -3783,42 +4437,138 @@ "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "dependencies": { - "tmpl": "1.0.5" + "tmpl": "1.0.5" + } + }, + "node_modules/markdown-it": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", + "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it/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/markdownlint": { + "version": "0.28.2", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.28.2.tgz", + "integrity": "sha512-yYaQXoKKPV1zgrFsyAuZPEQoe+JrY9GDag9ObKpk09twx4OCU5lut+0/kZPrQ3W7w82SmgKhd7D8m34aG1unVw==", + "dev": true, + "dependencies": { + "markdown-it": "13.0.1", + "markdownlint-micromark": "0.1.2" + }, + "engines": { + "node": ">=14.18.0" + } + }, + "node_modules/markdownlint-cli": { + "version": "0.34.0", + "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.34.0.tgz", + "integrity": "sha512-4G9I++VBTZkaye6Yfc/7dU6HQHcyldZEVB+bYyQJLcpJOHKk/q5ZpGqK80oKMIdlxzsA3aWOJLZ4DkoaoUWXbQ==", + "dev": true, + "dependencies": { + "commander": "~10.0.1", + "get-stdin": "~9.0.0", + "glob": "~10.2.2", + "ignore": "~5.2.4", + "js-yaml": "^4.1.0", + "jsonc-parser": "~3.2.0", + "markdownlint": "~0.28.2", + "minimatch": "~9.0.0", + "run-con": "~1.2.11" + }, + "bin": { + "markdownlint": "markdownlint.js" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/markdownlint-cli/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/markdownlint-cli/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/markdown-it": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", - "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", + "node_modules/markdownlint-cli/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/markdownlint-cli/node_modules/glob": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", + "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", "dev": true, "dependencies": { - "argparse": "^2.0.1", - "entities": "~3.0.1", - "linkify-it": "^4.0.1", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" + "foreground-child": "^3.1.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "minipass": "^5.0.0", + "path-scurry": "^1.7.0" }, "bin": { - "markdown-it": "bin/markdown-it.js" + "glob": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/markdown-it/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/markdownlint-cli/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/markdownlint": { - "version": "0.28.2", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.28.2.tgz", - "integrity": "sha512-yYaQXoKKPV1zgrFsyAuZPEQoe+JrY9GDag9ObKpk09twx4OCU5lut+0/kZPrQ3W7w82SmgKhd7D8m34aG1unVw==", + "node_modules/markdownlint-cli/node_modules/minimatch": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", + "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", "dev": true, "dependencies": { - "markdown-it": "13.0.1", - "markdownlint-micromark": "0.1.2" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=14.18.0" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/markdownlint-micromark": { @@ -3842,6 +4592,15 @@ "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", @@ -3885,6 +4644,24 @@ "node": "*" } }, + "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/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -3897,6 +4674,12 @@ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, "node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -4146,6 +4929,40 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, + "node_modules/path-scurry": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.7.0.tgz", + "integrity": "sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg==", + "dev": true, + "dependencies": { + "lru-cache": "^9.0.0", + "minipass": "^5.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.1.tgz", + "integrity": "sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, + "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/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -4221,6 +5038,33 @@ "node": ">= 0.8.0" } }, + "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/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/pretty-format": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", @@ -4472,6 +5316,21 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/run-con": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.11.tgz", + "integrity": "sha512-NEMGsUT+cglWkzEr4IFK21P4Jca45HqiAbIIZIBdX5+UZTB24Mb/21iNGgz9xZa8tL6vbW7CXmq7MFN42+VjNQ==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~3.0.0", + "minimist": "^1.2.6", + "strip-json-comments": "~3.1.1" + }, + "bin": { + "run-con": "cli.js" + } + }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -4966,6 +5825,27 @@ "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", "dev": true }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", @@ -5706,6 +6586,17 @@ } } }, + "@es-joy/jsdoccomment": { + "version": "0.37.1", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.37.1.tgz", + "integrity": "sha512-5vxWJ1gEkEF0yRd0O+uK6dHJf7adrxwQSX8PuRiPfFSAbNLnY0ZJfXaZucoz14Jj2N11xn2DnlEPwWRpYpvRjg==", + "dev": true, + "requires": { + "comment-parser": "1.3.1", + "esquery": "^1.5.0", + "jsdoc-type-pratt-parser": "~4.0.0" + } + }, "@eslint-community/eslint-utils": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", @@ -6111,6 +7002,13 @@ "fastq": "^1.6.0" } }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true + }, "@sinclair/typebox": { "version": "0.25.24", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", @@ -6253,55 +7151,261 @@ "@types/istanbul-lib-report": "*" } }, - "@types/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==", + "@types/jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.0.tgz", + "integrity": "sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==", + "dev": true, + "requires": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "@types/node": { + "version": "18.15.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", + "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "@types/prettier": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", + "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", + "dev": true + }, + "@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "dev": true + }, + "@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.2.tgz", + "integrity": "sha512-yVrXupeHjRxLDcPKL10sGQ/QlVrA8J5IYOEWVqk0lJaSZP7X5DfnP7Ns3cc74/blmbipQ1htFNVGsHX6wsYm0A==", + "dev": true, + "requires": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/type-utils": "5.59.2", + "@typescript-eslint/utils": "5.59.2", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "dependencies": { + "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" + } + }, + "semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@typescript-eslint/parser": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.2.tgz", + "integrity": "sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ==", + "dev": true, + "peer": true, + "requires": { + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/typescript-estree": "5.59.2", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.2.tgz", + "integrity": "sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/visitor-keys": "5.59.2" + } + }, + "@typescript-eslint/type-utils": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.2.tgz", + "integrity": "sha512-b1LS2phBOsEy/T381bxkkywfQXkV1dWda/z0PhnIy3bC5+rQWQDS7fk9CSpcXBccPY27Z6vBEuaPBCKCgYezyQ==", + "dev": true, + "requires": { + "@typescript-eslint/typescript-estree": "5.59.2", + "@typescript-eslint/utils": "5.59.2", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/types": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.2.tgz", + "integrity": "sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.2.tgz", + "integrity": "sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/visitor-keys": "5.59.2", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "dependencies": { + "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" + } + }, + "semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "@typescript-eslint/utils": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.2.tgz", + "integrity": "sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ==", "dev": true, "requires": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.59.2", + "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/typescript-estree": "5.59.2", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "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" + } + }, + "semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } } }, - "@types/node": { - "version": "18.15.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", - "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", - "dev": true - }, - "@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", - "dev": true - }, - "@types/prettier": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", - "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", - "dev": true - }, - "@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true - }, - "@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "@typescript-eslint/visitor-keys": { + "version": "5.59.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz", + "integrity": "sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==", "dev": true, "requires": { - "@types/yargs-parser": "*" + "@typescript-eslint/types": "5.59.2", + "eslint-visitor-keys": "^3.3.0" } }, - "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, "acorn": { "version": "8.8.2", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", @@ -6367,6 +7471,12 @@ "picomatch": "^2.0.4" } }, + "are-docs-informative": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", + "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", + "dev": true + }, "arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", @@ -6382,6 +7492,12 @@ "sprintf-js": "~1.0.2" } }, + "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 + }, "babel-jest": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", @@ -6679,6 +7795,12 @@ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true }, + "comment-parser": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz", + "integrity": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==", + "dev": true + }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -6734,6 +7856,12 @@ "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, "deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", @@ -6764,6 +7892,15 @@ "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", "dev": true }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, "doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", @@ -6942,6 +8079,79 @@ } } }, + "eslint-config-prettier": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", + "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", + "dev": true, + "requires": {} + }, + "eslint-plugin-jest": { + "version": "27.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz", + "integrity": "sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg==", + "dev": true, + "requires": { + "@typescript-eslint/utils": "^5.10.0" + } + }, + "eslint-plugin-jsdoc": { + "version": "43.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.1.1.tgz", + "integrity": "sha512-J2kjjsJ5vBXSyNzqJhceeSGTAgVgZHcPSJKo3vD4tNjUdfky98rR2VfZUDsS1GKL6isyVa8GWvr+Az7Vyg2HXA==", + "dev": true, + "requires": { + "@es-joy/jsdoccomment": "~0.37.1", + "are-docs-informative": "^0.0.2", + "comment-parser": "1.3.1", + "debug": "^4.3.4", + "escape-string-regexp": "^4.0.0", + "esquery": "^1.5.0", + "semver": "^7.5.0", + "spdx-expression-parse": "^3.0.1" + }, + "dependencies": { + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "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" + } + }, + "semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "eslint-plugin-prettier": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0" + } + }, "eslint-plugin-unicorn": { "version": "46.0.0", "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", @@ -7109,6 +8319,36 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "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" + }, + "dependencies": { + "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" + } + } + } + }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", @@ -7183,6 +8423,24 @@ "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, + "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, + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", + "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", + "dev": true + } + } + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -7231,6 +8489,12 @@ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, + "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==", + "dev": true + }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -7266,6 +8530,20 @@ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, "graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", @@ -7383,6 +8661,12 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "ini": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", + "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", + "dev": true + }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -7509,6 +8793,16 @@ "istanbul-lib-report": "^3.0.0" } }, + "jackspeak": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.1.tgz", + "integrity": "sha512-juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw==", + "dev": true, + "requires": { + "@pkgjs/parseargs": "^0.11.0", + "cliui": "^8.0.1" + } + }, "jest": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", @@ -7986,6 +9280,12 @@ "esprima": "^4.0.0" } }, + "jsdoc-type-pratt-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", + "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", + "dev": true + }, "jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", @@ -8175,6 +9475,77 @@ "markdownlint-micromark": "0.1.2" } }, + "markdownlint-cli": { + "version": "0.34.0", + "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.34.0.tgz", + "integrity": "sha512-4G9I++VBTZkaye6Yfc/7dU6HQHcyldZEVB+bYyQJLcpJOHKk/q5ZpGqK80oKMIdlxzsA3aWOJLZ4DkoaoUWXbQ==", + "dev": true, + "requires": { + "commander": "~10.0.1", + "get-stdin": "~9.0.0", + "glob": "~10.2.2", + "ignore": "~5.2.4", + "js-yaml": "^4.1.0", + "jsonc-parser": "~3.2.0", + "markdownlint": "~0.28.2", + "minimatch": "~9.0.0", + "run-con": "~1.2.11" + }, + "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 + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true + }, + "glob": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", + "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "minipass": "^5.0.0", + "path-scurry": "^1.7.0" + } + }, + "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" + } + }, + "minimatch": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", + "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, "markdownlint-micromark": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.2.tgz", @@ -8193,6 +9564,12 @@ "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", @@ -8224,6 +9601,18 @@ "brace-expansion": "^1.1.7" } }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true + }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -8236,6 +9625,12 @@ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, + "natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, "no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -8435,6 +9830,30 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, + "path-scurry": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.7.0.tgz", + "integrity": "sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg==", + "dev": true, + "requires": { + "lru-cache": "^9.0.0", + "minipass": "^5.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.1.tgz", + "integrity": "sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==", + "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 + }, "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -8489,6 +9908,21 @@ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, + "prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "requires": { + "fast-diff": "^1.1.2" + } + }, "pretty-format": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", @@ -8657,6 +10091,18 @@ "glob": "^7.1.3" } }, + "run-con": { + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.11.tgz", + "integrity": "sha512-NEMGsUT+cglWkzEr4IFK21P4Jca45HqiAbIIZIBdX5+UZTB24Mb/21iNGgz9xZa8tL6vbW7CXmq7MFN42+VjNQ==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~3.0.0", + "minimist": "^1.2.6", + "strip-json-comments": "~3.1.1" + } + }, "run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -9009,6 +10455,23 @@ "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", "dev": true }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, "type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", diff --git a/package.json b/package.json index 581607a32b9..ba999c7caa9 100644 --- a/package.json +++ b/package.json @@ -13,17 +13,23 @@ "type": "module", "exports": { ".": "./build/js/calcite-headless.js", - "./js/headless": "./build/js/calcite-headless.js", - "./js/brand/light": "./build/js/brand-light.js", - "./js/brand/dark": "./build/js/brand-dark.js", - "./js/calcite/light": "./build/js/calcite-light.js", - "./js/calcite/dark": "./build/js/calcite-dark.js", "./css": "./build/css/calcite-headless.css", - "./css/headless": "./build/css/calcite-headless.css", - "./css/brand/light": "./build/css/brand-light.css", "./css/brand/dark": "./build/css/brand-dark.css", + "./css/brand/light": "./build/css/brand-light.css", + "./css/calcite/dark": "./build/css/calcite-dark.css", "./css/calcite/light": "./build/css/calcite-light.css", - "./css/calcite/dark": "./build/css/calcite-dark.css" + "./css/headless": "./build/css/calcite-headless.css", + "./scss": "./build/scss/calcite-headless.scss", + "./scss/brand/dark": "./build/scss/brand-dark.scss", + "./scss/brand/light": "./build/scss/brand-light.scss", + "./scss/calcite/dark": "./build/scss/calcite-dark.scss", + "./scss/calcite/light": "./build/scss/calcite-light.scss", + "./scss/headless": "./build/scss/calcite-headless.scss", + "./js/brand/dark": "./build/js/brand-dark.js", + "./js/brand/light": "./build/js/brand-light.js", + "./js/calcite/dark": "./build/js/calcite-dark.js", + "./js/calcite/light": "./build/js/calcite-light.js", + "./js/headless": "./build/js/calcite-headless.js" }, "repository": { "type": "git", @@ -75,12 +81,18 @@ "@tokens-studio/sd-transforms": "^0.8.2", "@types/jest": "^29.5.0", "@types/node": "^18.15.11", + "@typescript-eslint/eslint-plugin": "^5.59.2", "change-case": "^4.1.2", "eslint": "^8.39.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-jest": "^27.2.1", + "eslint-plugin-jsdoc": "^43.1.1", + "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-unicorn": "^46.0.0", "jest": "^29.5.0", "lodash-es": "^4.17.21", - "markdownlint": "^0.28.2", + "markdownlint-cli": "^0.34.0", + "prettier": "^2.8.8", "style-dictionary": "^3.7.1", "token-transformer": "^0.0.27", "ts-jest": "^29.0.5", diff --git a/tokens/component/action.json b/tokens/component/action.json index 876d77b88aa..208fd000389 100644 --- a/tokens/component/action.json +++ b/tokens/component/action.json @@ -1,6 +1,18 @@ { "action": { "font": { + "sm": { + "value": "$semantic.font.default.regular.-2h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.regular.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.regular.0h", + "type": "typography" + }, "default": { "light": { "value": "$semantic.ui.color.text.3.light", diff --git a/tools/token-transformer/format/scss.test.ts b/tools/token-transformer/format/scss.test.ts new file mode 100644 index 00000000000..fbc3f0594be --- /dev/null +++ b/tools/token-transformer/format/scss.test.ts @@ -0,0 +1,59 @@ +import { formatSCSS } from "./scss"; + +// const createPropertyFormatterCallback = jest.fn((token, idx) => `--mock-token-${idx}: blue;`) +// const createPropertyFormatter = jest.fn(() => []); +// const fileHeader = jest.fn(({file}) => ''); + +// jest.mock('style-dictionary', () => { +// const originalModule = jest.requireActual('style-dictionary'); + +// //Mock the default export and named export 'foo' +// return { +// __esModule: true, +// ...originalModule, +// formatHelpers: { +// createPropertyFormatter, +// fileHeader, +// }, +// }; +// }); + +const mockTokens = [ + { + name: "core-token-example", + value: "blue", + path: ["core", "token", "example"], + original: { + value: "blue" + }, + filePath: "core.json", + isSource: true + } +]; +const transformedTokens = mockTokens.reduce((acc, v) => { + acc[v.name] = v; + return acc; +}, {}); + +const mock = { + dictionary: { + allTokens: mockTokens, + tokens: transformedTokens, + allProperties: mockTokens, + properties: transformedTokens, + usesReference: () => true, + getReferences: () => mockTokens + }, + file: { + destination: "calciteLight.scss" + }, + formattedTokenSet: `@mixin calcite-theme-Light() {`, + options: {} +}; + +describe("formatting CSS Variable output", () => { + it("should format values", () => { + const cssFile = formatSCSS({ dictionary: mock.dictionary, file: mock.file, options: mock.options }); + expect(cssFile).toContain(mock.formattedTokenSet); + }); +}); diff --git a/tools/token-transformer/format/scss.ts b/tools/token-transformer/format/scss.ts new file mode 100644 index 00000000000..7cd8cafd5c1 --- /dev/null +++ b/tools/token-transformer/format/scss.ts @@ -0,0 +1,30 @@ +import { pascalCase, sentenceCase } from "change-case"; +import sd, { Dictionary, File, Platform, Options } from "style-dictionary"; + +const { formatHelpers } = sd; + +const regexThemeGroup = /calcite|brand/gi; +const regexFileNameWithoutExtension = /\w+(?=\.\w+$)/gi; + +export function formatSCSS(fileInfo: { + dictionary: Dictionary; + file: File; + platform?: Platform; + options: Options & { themeable?: boolean }; +}): string { + const { dictionary, file, options } = fileInfo; + const { outputReferences } = options; + const themeName = pascalCase( + sentenceCase(file.destination.match(regexFileNameWithoutExtension)[0]) + .split(" ") + .filter((n) => !regexThemeGroup.test(n)) + .join(" ") + .toLocaleLowerCase() + ); + return ( + formatHelpers.fileHeader({ file }) + + `@mixin calcite-theme-${themeName}() {\n` + + formatHelpers.formattedVariables({ format: "css", dictionary, outputReferences }) + + `\n}\n` + ); +} diff --git a/tools/token-transformer/getThemes.ts b/tools/token-transformer/getThemes.ts index 7f949912bd4..3356b3a8206 100644 --- a/tools/token-transformer/getThemes.ts +++ b/tools/token-transformer/getThemes.ts @@ -18,8 +18,8 @@ export type Theme = { /** * - * @param themes an array of Figma Token Studio theme definition objects - * @returns an array of Style Dictionary theme definition objects + * @param {ThemeFileInterface} themes an array of Figma Token Studio theme definition objects + * @returns {Array} an array of Style Dictionary theme definition objects */ export async function getThemes(themes: ThemeFileInterface[]): Promise { return themes.map((themeConfig) => { diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index 2ee5fb73ea5..879fc94f9d2 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -7,11 +7,10 @@ import { convertTokenToStyleDictionaryFormat } from "../utils/convertTokenToStyl /** * Figma Token Studio creates an odd type of composite token where the value may contain an object of "key: value" pairs. * Here we will lift these composite tokens up to match the Style Dictionary format. - * - * @param dictionary the raw JSON object in the token files. We will assume this is a token object generated by Figma Token Studio and may require composite tokens to be expanded. - * @param filePath the absolute file path to the JSON token file. - * @param transformOpts the options passed in from the Style Dictionary config and runner - * @returns a token object where any Figma Token Studio composite tokens now match the Style Dictionary token format + * @param {DeepKeyTokenMap} dictionary the raw JSON object in the token files. We will assume this is a token object generated by Figma Token Studio and may require composite tokens to be expanded. + * @param {string} filePath the absolute file path to the JSON token file. + * @param {TransformOptions} transformOpts the options passed in from the Style Dictionary config and runner + * @returns {DeepKeyTokenMap} a token object where any Figma Token Studio composite tokens now match the Style Dictionary token format */ export function expandComposites( dictionary: DeepKeyTokenMap, diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 8ace1f5cd05..075795dc657 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -1,29 +1,29 @@ -import StyleDictionary from "style-dictionary"; import { registerTransforms } from "@tokens-studio/sd-transforms"; +import StyleDictionary from "style-dictionary"; import { expandComposites } from "./parse/expandComposites.js"; -import { Theme } from "./getThemes.js"; +import { formatSCSS } from "./format/scss.js"; +import { matchExclusions } from "./utils/regex.js"; +import { matchList } from "./utils/matchList.js"; import { nameCamelCase } from "./transform/nameCamelCase.js"; import { nameKebabCase } from "./transform/nameKebabCase.js"; import { parseName } from "./utils/parseName.js"; -import { matchList } from "./utils/matchList.js"; -import { matchExclusions } from "./utils/regex.js"; +import { Theme } from "./getThemes.js"; /** * Style Dictionary runner configuration overrides. - * - * @param tokenDir the directory containing design token files - * @param buildPath the directory to write generated assets to - * @param theme - * @param theme.name the name of the theme. This will be used as the basis for the generated asset file names. - * @param theme.enabled an array of partial file names matching the token files which should be included in the output - * @param theme.disabled an array of partial file names matching the token files which should explicitly not be included in the output - * @param theme.source an array of partial file names matching the token files which should not always be included in the output but who's values should be used for variables references in the "enabled" files + * @param {string} tokenDir the directory containing design token files + * @param {string} buildPath the directory to write generated assets to + * @param {Theme} theme the theme configuration to use to generate the platform asset files + * @param {string} theme.name the name of the theme. This will be used as the basis for the generated asset file names. + * @param {string[]} theme.enabled an array of partial file names matching the token files which should be included in the output + * @param {string[]} theme.disabled an array of partial file names matching the token files which should explicitly not be included in the output + * @param {string[]} theme.source an array of partial file names matching the token files which should not always be included in the output but who's values should be used for variables references in the "enabled" files */ export const run = async ( - tokenDir: string = "tokens", - buildPath: string = "build", + tokenDir = "tokens", + buildPath = "build", theme: Pick -) => { +): Promise => { const fileName = parseName(theme.name); const include = theme.source.map((tokenFile) => `${tokenDir}/${tokenFile}.json`); const source = theme.enabled.map((tokenFile) => `${tokenDir}/${tokenFile}.json`); @@ -41,6 +41,12 @@ export const run = async ( // https://github.com/tokens-studio/sd-transforms await registerTransforms(StyleDictionary, { expand: false }); + // Register custom formatter https://amzn.github.io/style-dictionary/#/formats?id=custom-formats + StyleDictionary.registerFormat({ + name: "calcite/scss", + formatter: formatSCSS + }); + // Registering Style Dictionary transformers https://amzn.github.io/style-dictionary/#/transforms?id=defining-custom-transforms StyleDictionary.registerTransform({ name: "name/calcite/camel", @@ -111,6 +117,30 @@ export const run = async ( options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options } ] + }, + scss: { + prefix: "calcite", + transforms: [ + "ts/descriptionToComment", + "ts/size/px", + "ts/opacity", + "ts/size/lineheight", + "ts/type/fontWeight", + "ts/resolveMath", + "ts/size/css/letterspacing", + "ts/color/css/hexrgba", + "ts/color/modifiers", + "name/calcite/kebab" + ], + buildPath: `${buildPath}/scss/`, + files: [ + { + destination: `${fileName}.scss`, + format: "calcite/scss", + filter: /headless/gi.test(fileName) ? null : "filterSource", + options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options + } + ] } }, parsers: [ diff --git a/tools/token-transformer/transform/nameCamelCase.ts b/tools/token-transformer/transform/nameCamelCase.ts index 0882966ca37..256546eb54c 100644 --- a/tools/token-transformer/transform/nameCamelCase.ts +++ b/tools/token-transformer/transform/nameCamelCase.ts @@ -1,12 +1,14 @@ import { camelCase } from "change-case"; import { parseTokenPath } from "../utils/parseTokenPath.js"; +import { TransformedToken } from "style-dictionary/types/TransformedToken.js"; +import { Options } from "style-dictionary/types/Options.js"; /** * - * @param token Style Dictionary token object - * @param options Style Dictionary format options - * @returns an updated name for the token which will be used for the final output + * @param {TransformedToken} token Style Dictionary token object + * @param {Options} options Style Dictionary format options + * @returns {string} an updated name for the token which will be used for the final output */ -export function nameCamelCase(token, options) { +export function nameCamelCase(token: TransformedToken, options: Options): string { return camelCase([options.prefix].concat(parseTokenPath(token.path)).join(" ")); } diff --git a/tools/token-transformer/transform/nameKebabCase.ts b/tools/token-transformer/transform/nameKebabCase.ts index b94e74efbb0..e19726f7ffe 100644 --- a/tools/token-transformer/transform/nameKebabCase.ts +++ b/tools/token-transformer/transform/nameKebabCase.ts @@ -1,12 +1,14 @@ import { paramCase } from "change-case"; import { parseTokenPath } from "../utils/parseTokenPath.js"; +import { TransformedToken } from "style-dictionary/types/TransformedToken.js"; +import { Options } from "style-dictionary/types/Options.js"; /** * - * @param token Style Dictionary token object - * @param options Style Dictionary format options - * @returns an updated name for the token which will be used for the final output + * @param {TransformedToken} token Style Dictionary token object + * @param {Options} options Style Dictionary format options + * @returns {string} an updated name for the token which will be used for the final output */ -export function nameKebabCase(token, options) { +export function nameKebabCase(token: TransformedToken, options: Options): string { return paramCase([options.prefix].concat(parseTokenPath(token.path)).join(" ")); } diff --git a/tools/token-transformer/utils/compositeTokens.ts b/tools/token-transformer/utils/compositeTokens.ts index f26d0ee5c84..03b134e788e 100644 --- a/tools/token-transformer/utils/compositeTokens.ts +++ b/tools/token-transformer/utils/compositeTokens.ts @@ -34,54 +34,16 @@ const typeMaps = { /** * This is a recursive function to dig into composite tokens and lift up the token values in a Style Dictionary format. - * Composite token example - * "box-shadow": { - * "0": { - * "value": { - * "x": "0", - * "y": "0", - * "blur": "0", - * "spread": "0", - * "color": "rgba($core.color.neutral.blk-240, $core.opacity.0)", - * "type": "dropShadow" - * }, - * "type": "boxShadow" - * }, - * } - * - * will become... - * - * "box-shadow": { - * "0": { - * "x": { - * "value": "0", - * "type": "dropShadow" - * }, - * "y": { - * "value": "0", - * "type": "dropShadow" - * }, - * "blur": { - * "value": "0", - * "type": "dropShadow" - * }, - * "spread": { - * "value": "0", - * "type": "dropShadow" - * }, - * "color": { - * "value": "rgba($core.color.neutral.blk-240, $core.opacity.0)", - * "type": "dropShadow" - * }, - * }, - * } - * - * @param compositeToken the composite token object - * @param isShadow is a drop shadow? - * @param handleValue a function to determine how the final token value string should be passed to Style Dictionary - * @returns + * @param {SingleToken} compositeToken the composite token object + * @param {boolean} isShadow is a drop shadow? + * @param {Function} handleValue a function to determine how the final token value string should be passed to Style Dictionary + * @returns {SingleToken} a single Style Dictionary token object */ -export function expandToken(compositeToken: SingleToken, isShadow = false, handleValue = (v) => v) { +export function expandToken( + compositeToken: SingleToken, + isShadow = false, + handleValue = (v) => v +): SingleToken { const expandedObj = {} as SingleToken; const getType = (key: string) => typeMaps[compositeToken.type][key] ?? key; @@ -115,10 +77,10 @@ export function expandToken(compositeToken: SingleToken, isShadow = false /** * - * @param token Style Dictionary token object - * @param condition check if the token should be expanded or not - * @param filePath the file path where the token came from - * @returns boolean + * @param {SingleToken} token Style Dictionary token object + * @param {boolean | ExpandFilter} condition check if the token should be expanded or not + * @param {string} filePath the file path where the token came from + * @returns {boolean} if the token should be expanded */ export function shouldExpand( token: T, diff --git a/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts b/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts index 5cd58c568f4..54e09e22c75 100644 --- a/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts +++ b/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts @@ -1,12 +1,13 @@ /** * Some tokens defined in Figma Token Studio do not used the common { [variable.name] } for token references. * This function loops over each value, finds custom token references and converts them to the expected Style Dictionary format. - * - * @param customReferenceTokenIndicator a regex to find the token references - * @returns the reference format expected by Style Dictionary "{ [variable.name] }" + * @param {RegExp} customReferenceTokenIndicator a regex to find the token references + * @returns {Function} to convert the token to the reference format expected by Style Dictionary "{ [variable.name] }" */ -export function convertTokenToStyleDictionaryFormat(customReferenceTokenIndicator: RegExp) { - return (value: string | number) => { +export function convertTokenToStyleDictionaryFormat( + customReferenceTokenIndicator: RegExp +): (value: string | number) => string { + return (value: string | number): string => { let newValue = `${value}`; const matchesArr = [...newValue.matchAll(customReferenceTokenIndicator)]; matchesArr.forEach((match) => { diff --git a/tools/token-transformer/utils/matchList.ts b/tools/token-transformer/utils/matchList.ts index 233f27feec3..874d7aed525 100644 --- a/tools/token-transformer/utils/matchList.ts +++ b/tools/token-transformer/utils/matchList.ts @@ -1,9 +1,9 @@ /** - * @param str the string to find in the list - * @param list the list of strings to match with the provided string - * @param regexExclude a regular expression defining strings that should always be excluded - * @returns boolean + * @param {string} str the string to find in the list + * @param {string[]} list the list of strings to match with the provided string + * @param {RegExp} regexExclude a regular expression defining strings that should always be excluded + * @returns {boolean} does the string match the items in the list */ -export const matchList = (str: string, list: string[], regexExclude: RegExp) => { +export const matchList = (str: string, list: string[], regexExclude: RegExp): boolean => { return list.some((value) => str.includes(value) && !regexExclude.test(str)); }; diff --git a/tools/token-transformer/utils/parseName.ts b/tools/token-transformer/utils/parseName.ts index 9aaba07c495..199267594ad 100644 --- a/tools/token-transformer/utils/parseName.ts +++ b/tools/token-transformer/utils/parseName.ts @@ -2,13 +2,16 @@ import { paramCase } from "change-case"; /** * - * @param name the file name passed from the themes object - * @param prefix an optional prefix for each file name - * @returns a kebab-case file name from the passed name, optionally starting with a prefix + * @param {string} name the file name passed from the themes object + * @param {string} prefix an optional prefix for each file name + * @returns {string} a kebab-case file name from the passed name, optionally starting with a prefix */ -export function parseName(name: string, prefix?: string) { +export function parseName(name: string, prefix?: string): string { const regexWord = /^\w+$/; - const themeName = `${prefix || ''} ${name}`.split(" ").filter((word) => regexWord.test(word)).join(' '); + const themeName = `${prefix || ""} ${name}` + .split(" ") + .filter((word) => regexWord.test(word)) + .join(" "); return paramCase(themeName); } diff --git a/tools/token-transformer/utils/parseTokenPath.ts b/tools/token-transformer/utils/parseTokenPath.ts index 9b24e711d90..776552a618d 100644 --- a/tools/token-transformer/utils/parseTokenPath.ts +++ b/tools/token-transformer/utils/parseTokenPath.ts @@ -1,11 +1,10 @@ /** * Replaces the word "color" with "ui" when it is the first value in the path and removes the word "default" from the final token names. * This puts generated tokens in alignment with the theme variable names in Calcite-Colors - * - * @param path the path to each token value in the Style Dictionary token object - * @returns an updated token path + * @param {string[]} path the path to each token value in the Style Dictionary token object + * @returns {string[]} an updated token path */ -export const parseTokenPath = (path: string[]) => +export const parseTokenPath = (path: string[]): string[] => path.reduce((acc, p, idx) => { if (idx === 0 && p === "color") { acc.push("ui"); From 2d5b6664d38f274f14d6d979fb578b82ef83e467 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 11:59:05 -0700 Subject: [PATCH 633/696] docs: add scss asset information --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index bc7cee00129..c1ea992ba4e 100644 --- a/README.md +++ b/README.md @@ -34,12 +34,12 @@ export function addTextStyle(component) { These are the published asset files generated by the token transformer -| Name | CSS | JavaScript (es6) | -| ------------------- | ----------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -| Calcite Headless | @esri/calcite-design-tokens/css
@esri/calcite-design-tokens/css/headless | @esri/calcite-design-tokens
@esri/calcite-design-tokens/js/headless | -| Calcite Light | @esri/calcite-design-tokens/css/calcite/light | @esri/calcite-design-tokens/js/calcite/light | -| Calcite Dark | @esri/calcite-design-tokens/css/calcite/dark | @esri/calcite-design-tokens/js/calcite/dark | -| Calcite Brand Light | @esri/calcite-design-tokens/css/brand/light | @esri/calcite-design-tokens/js/brand/light | -| Calcite Brand Dark | @esri/calcite-design-tokens/css/brand/dark | @esri/calcite-design-tokens/js/brand/dark | +| Name | CSS | SCSS | JavaScript (es6) | +| ------------------- | ------------------------------------------------------------------------------------- |----------------------------------------------------------------------------------| ---------------------------------------------------------------------------------| +| Calcite Headless | @esri/calcite-design-tokens/css
@esri/calcite-design-tokens/css/calcite-headless | @esri/calcite-design-tokens/scss
@esri/calcite-design-tokens/scss/calcite-headless | @esri/calcite-design-tokens
@esri/calcite-design-tokens/js/calcite-headless | +| Calcite Light | @esri/calcite-design-tokens/css/calcite-light | @esri/calcite-design-tokens/scss/calcite-light | @esri/calcite-design-tokens/js/calcite-light | +| Calcite Dark | @esri/calcite-design-tokens/css/calcite-dark | @esri/calcite-design-tokens/scss/calcite-dark | @esri/calcite-design-tokens/js/calcite-dark | +| Calcite Brand Light | @esri/calcite-design-tokens/css/brand-light | @esri/calcite-design-tokens/scss/brand-light | @esri/calcite-design-tokens/js/brand-light | +| Calcite Brand Dark | @esri/calcite-design-tokens/css/brand-dark | @esri/calcite-design-tokens/scss/brand-dark | @esri/calcite-design-tokens/js/brand-dark | For a full list of tokens and their detailes, please refer to https://developers.arcgis.com/calcite-design-system/tokens From 513b1e1bd3394bc45bebdbc2e15cf8f54b192df2 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 11:59:12 -0700 Subject: [PATCH 634/696] docs: update install and contributing info --- CONTRIBUTING.md | 8 +++++--- README.md | 8 ++++---- package.json | 14 +++++++------- 3 files changed, 16 insertions(+), 14 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2d227d2d5eb..106749f1219 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -28,13 +28,15 @@ npm install ### Create a branch for your feature or fix +If you are a designer setting up a branch for FigmaTokens Plugin, make sure your branch name starts with `designer/`. + ```bash -# If you are a designer setting up a branch for FigmaTokens Plugin, make sure your branch name starts with `designer/`. git checkout -b designer/[yourname] ``` +or use the calcite default branching pattern + ```bash -# or use the calcite default branching pattern git checkout -b [yourname]/[type]-[issue#] ``` @@ -74,7 +76,7 @@ The Brand themes. This currently consists of a set of global tokens as well as a Pull requests are the greatest contributions, so be sure they are focused in scope. -### Be sure your code passes our checks +### Be sure your code passes our integration and unit tests ```bash # Test current code diff --git a/README.md b/README.md index c1ea992ba4e..e3e4339fc45 100644 --- a/README.md +++ b/README.md @@ -11,20 +11,20 @@ npm install @esri/calcite-design-tokens Reference tokens in your CSS. ```css -@import "@esri/calcite-design-tokens/css"; +@import "@esri/calcite-design-tokens/css/calcite-light"; :root { - --my-custom-token: var(--calcite-semantic-ui-color-text-1-light); + --my-custom-token: var(--calcite-ui-brand); } ``` Reference tokens in your JavaScript. ```js -import { calciteSemanticUiColorText_1Light } from "@esri/calcite-design-tokens"; +import { calciteSemanticUiColorBrandLight } from "@esri/calcite-design-tokens"; export function addTextStyle(component) { - component.style.color = calciteSemanticUiColorText_1Light; + component.style.color = calciteSemanticUiColorBrandLight; return component; } diff --git a/package.json b/package.json index ba999c7caa9..3ba0fe32fb6 100644 --- a/package.json +++ b/package.json @@ -65,17 +65,17 @@ "url": "https://github.com/esri/calcite-design-tokens/issues" }, "scripts": { - "test": "jest", - "test:dev": "jest --watch", - "build": "npm run build:ts && npm run build:tokens", - "build:ts": "tsc --project tsconfig.prod.json", "build:tokens": "node bin/run.js", - "lint": "npm run lint:eslint && npm run lint:markdown && npm run lint:prettier", + "build:ts": "tsc --project tsconfig.prod.json", + "build": "npm run build:ts && npm run build:tokens", "lint:eslint": "eslint --ext .ts,.tsx --fix .", - "lint:prettier": "prettier --write .", "lint:markdown": "markdownlint --fix --disable MD024 MD013 MD041 MD033", + "lint:prettier": "prettier --write .", "lint:staged": "lint-staged", - "release": "echo 'release is still TBD. Please message Ali Stump or Erik Harper-Dicianno for more information." + "lint": "npm run lint:eslint && npm run lint:markdown && npm run lint:prettier", + "release": "echo 'release is still TBD. Please message Ali Stump for more information.", + "test:dev": "jest --watch", + "test": "jest" }, "devDependencies": { "@tokens-studio/sd-transforms": "^0.8.2", From 264712285195c71deaa9829b3b03df0e81c00343 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 12:04:10 -0700 Subject: [PATCH 635/696] chore: ignore all .js files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2ecf5e7e86f..e04b4346953 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ logs *.log **/*.bak +**/*.js # Dependency directory # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- From 1fecef650ad3afe86f569231b84f2144e12ce2ff Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 12:18:56 -0700 Subject: [PATCH 636/696] test: format scss files --- tools/token-transformer/format/scss.test.ts | 37 +++++++++++---------- tools/token-transformer/format/scss.ts | 12 +++++-- 2 files changed, 29 insertions(+), 20 deletions(-) diff --git a/tools/token-transformer/format/scss.test.ts b/tools/token-transformer/format/scss.test.ts index fbc3f0594be..abacb76f3e8 100644 --- a/tools/token-transformer/format/scss.test.ts +++ b/tools/token-transformer/format/scss.test.ts @@ -1,22 +1,22 @@ -import { formatSCSS } from "./scss"; +const createPropertyFormatterCallback = jest.fn((token, idx) => `--${token.name}: blue;`) +const formattedVariables = jest.fn((tokens) => tokens.dictionary.allTokens.map(createPropertyFormatterCallback)); +const fileHeader = jest.fn(({file}) => ''); -// const createPropertyFormatterCallback = jest.fn((token, idx) => `--mock-token-${idx}: blue;`) -// const createPropertyFormatter = jest.fn(() => []); -// const fileHeader = jest.fn(({file}) => ''); +jest.mock('style-dictionary', () => { + const originalModule = jest.requireActual('style-dictionary'); -// jest.mock('style-dictionary', () => { -// const originalModule = jest.requireActual('style-dictionary'); + //Mock the default export and named export 'foo' + return { + __esModule: false, + ...originalModule, + formatHelpers: { + formattedVariables, + fileHeader, + }, + }; +}); -// //Mock the default export and named export 'foo' -// return { -// __esModule: true, -// ...originalModule, -// formatHelpers: { -// createPropertyFormatter, -// fileHeader, -// }, -// }; -// }); +import { formatSCSS } from "./scss"; const mockTokens = [ { @@ -47,13 +47,14 @@ const mock = { file: { destination: "calciteLight.scss" }, - formattedTokenSet: `@mixin calcite-theme-Light() {`, + formattedTokenSet: [`@mixin calcite-theme-light() {`, '--core-token-example: blue'], options: {} }; describe("formatting CSS Variable output", () => { it("should format values", () => { const cssFile = formatSCSS({ dictionary: mock.dictionary, file: mock.file, options: mock.options }); - expect(cssFile).toContain(mock.formattedTokenSet); + expect(cssFile).toContain(mock.formattedTokenSet[0]); + expect(cssFile).toContain(mock.formattedTokenSet[1]); }); }); diff --git a/tools/token-transformer/format/scss.ts b/tools/token-transformer/format/scss.ts index 7cd8cafd5c1..dbe492b975c 100644 --- a/tools/token-transformer/format/scss.ts +++ b/tools/token-transformer/format/scss.ts @@ -6,6 +6,15 @@ const { formatHelpers } = sd; const regexThemeGroup = /calcite|brand/gi; const regexFileNameWithoutExtension = /\w+(?=\.\w+$)/gi; +/** + * + * @param {object} fileInfo the file object + * @param {Dictionary} fileInfo.dictionary the Style Dictionary object + * @param {File} fileInfo.file information about the file to be generated + * @param {Platform} [fileInfo.platform] the platform to generate the asset for + * @param {Options} fileInfo.options the Style Dictionary format options passed from the config + * @returns {string} a string that is passed to fs.writeFileSync + */ export function formatSCSS(fileInfo: { dictionary: Dictionary; file: File; @@ -19,8 +28,7 @@ export function formatSCSS(fileInfo: { .split(" ") .filter((n) => !regexThemeGroup.test(n)) .join(" ") - .toLocaleLowerCase() - ); + ).toLowerCase(); return ( formatHelpers.fileHeader({ file }) + `@mixin calcite-theme-${themeName}() {\n` + From 4f8ee9d50361cf1dc19b0feeba5cd0e879bba4b3 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 13:48:39 -0700 Subject: [PATCH 637/696] feat: add json platform --- tools/token-transformer/sd-run.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 075795dc657..0d9d9ea8efe 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -141,6 +141,29 @@ export const run = async ( options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options } ] + }, + json: { + transforms: [ + "ts/descriptionToComment", + "ts/size/px", + "ts/opacity", + "ts/size/lineheight", + "ts/type/fontWeight", + "ts/resolveMath", + "ts/size/css/letterspacing", + "ts/color/css/hexrgba", + "ts/color/modifiers", + "name/calcite/kebab" + ], + buildPath: `${buildPath}/json/`, + files: [ + { + destination: `${fileName}.json`, + format: "json", + filter: /headless/gi.test(fileName) ? null : "filterSource", + options: /headless/gi.test(fileName) ? { ...options, outputReferences: true } : options + } + ] } }, parsers: [ From fb92871ad5b6fed02cd70dca38241911e1848431 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 1 May 2023 13:50:48 -0700 Subject: [PATCH 638/696] docs: update CONTRIBUTING --- CONTRIBUTING.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 106749f1219..1e2bef1a357 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -40,6 +40,19 @@ or use the calcite default branching pattern git checkout -b [yourname]/[type]-[issue#] ``` +### Setup the project + +#### install + +`npm install` + +#### build + +Build the tokens to platform assets + +`npm run build` + + ### Understanding Token Files All token files may be updated by the Figma Token Studio plugin. These can also be updated in the code directly. Any changes to token files must be reviewed by the Calcite Design Team. From c03381773860496861f015cdbedbf1a472cacd6a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 2 May 2023 08:19:49 -0700 Subject: [PATCH 639/696] chore: clean up types --- tools/token-transformer/format/scss.test.ts | 2 -- .../parse/expandComposites.test.ts | 29 +++++++++++++++++++ .../parse/expandComposites.ts | 23 +++++++-------- 3 files changed, 40 insertions(+), 14 deletions(-) create mode 100644 tools/token-transformer/parse/expandComposites.test.ts diff --git a/tools/token-transformer/format/scss.test.ts b/tools/token-transformer/format/scss.test.ts index abacb76f3e8..7d1b2d98b59 100644 --- a/tools/token-transformer/format/scss.test.ts +++ b/tools/token-transformer/format/scss.test.ts @@ -4,8 +4,6 @@ const fileHeader = jest.fn(({file}) => ''); jest.mock('style-dictionary', () => { const originalModule = jest.requireActual('style-dictionary'); - - //Mock the default export and named export 'foo' return { __esModule: false, ...originalModule, diff --git a/tools/token-transformer/parse/expandComposites.test.ts b/tools/token-transformer/parse/expandComposites.test.ts new file mode 100644 index 00000000000..c16adc00bb5 --- /dev/null +++ b/tools/token-transformer/parse/expandComposites.test.ts @@ -0,0 +1,29 @@ +const createPropertyFormatterCallback = jest.fn((token, idx) => `--${token.name}: blue;`) +const formattedVariables = jest.fn((tokens) => tokens.dictionary.allTokens.map(createPropertyFormatterCallback)); +const fileHeader = jest.fn(({file}) => ''); + +jest.mock('../utils/compositeTokens.js', () => { + const originalModule = jest.requireActual('../utils/compositeTokens.js'); + return { + __esModule: false, + ...originalModule, + shouldExpand, + expandToken + }; +}); + +jest.mock('../utils/compositeTokens.js', () => { + const originalModule = jest.requireActual('../utils/compositeTokens.js'); + return { + __esModule: false, + ...originalModule, + shouldExpand, + expandToken + }; +}); + + +it("should loop through a dictionary and run \"convertTokenToStyleDictionary\" on each composite token", () => { + + expect() +}) diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index 879fc94f9d2..6b2ba9cf32f 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -1,22 +1,22 @@ -import { DeepKeyTokenMap, SingleToken } from "@tokens-studio/types"; +import { DeepKeyTokenMap, SingleToken, TokenTypes } from "@tokens-studio/types"; import { TransformOptions, Expandables, ExpandablesAsStrings, expandablesAsStrings } from "../TransformOptions.js"; import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from "../utils/regex.js"; import { shouldExpand, expandToken } from "../utils/compositeTokens.js"; import { convertTokenToStyleDictionaryFormat } from "../utils/convertTokenToStyleDictionaryFormat.js"; /** - * Figma Token Studio creates an odd type of composite token where the value may contain an object of "key: value" pairs. + * Figma Token Studio creates an odd type of composite token where the "value" may contain an object of "key: value" pairs rather than a sting. * Here we will lift these composite tokens up to match the Style Dictionary format. - * @param {DeepKeyTokenMap} dictionary the raw JSON object in the token files. We will assume this is a token object generated by Figma Token Studio and may require composite tokens to be expanded. + * @param {DeepKeyTokenMap} dictionary the raw JSON object in the token files. We will assume this is a token object generated by Figma Token Studio and may require composite tokens to be expanded. * @param {string} filePath the absolute file path to the JSON token file. * @param {TransformOptions} transformOpts the options passed in from the Style Dictionary config and runner - * @returns {DeepKeyTokenMap} a token object where any Figma Token Studio composite tokens now match the Style Dictionary token format + * @returns {DeepKeyTokenMap} a token object where any Figma Token Studio composite tokens now match the Style Dictionary token format */ export function expandComposites( - dictionary: DeepKeyTokenMap, + dictionary: DeepKeyTokenMap, filePath: string, transformOpts: TransformOptions = {} -): DeepKeyTokenMap { +): DeepKeyTokenMap { const opts = { ...transformOpts, expand: { @@ -27,7 +27,7 @@ export function expandComposites( ...transformOpts.expand } }; - const returnSlice: DeepKeyTokenMap = {}; + const returnSlice: DeepKeyTokenMap = {}; const handleTokenStudioVariables = convertTokenToStyleDictionaryFormat(tokenStudioCustomVariableIndicator); const newDictionary = Object.entries(dictionary).reduce((acc, [key, token]) => { const { type } = token; @@ -36,24 +36,23 @@ export function expandComposites( } if (token.value && type) { - // @ts-expect-error - we can count on this type being a string - if (typeof type === "string" && expandablesAsStrings.includes(type)) { + if (typeof type === "string" && expandablesAsStrings.includes(TokenTypes[type])) { const expandType = (type as ExpandablesAsStrings) === "boxShadow" ? "shadow" : type; const expand = shouldExpand(token as Expandables, opts.expand[expandType], filePath); if (expand) { const expandedToken = expandToken( - token as SingleToken, + token, expandType === "shadow", handleTokenStudioVariables ); - acc[key] = expandedToken; + acc[key] = expandedToken as SingleToken; } } else { token.value = handleTokenStudioVariables(token.value as string); acc[key] = token; } } else if (typeof token === "object") { - acc[key] = expandComposites(token as unknown as DeepKeyTokenMap, filePath, transformOpts); + acc[key] = expandComposites(token as DeepKeyTokenMap, filePath, transformOpts); } return acc; }, returnSlice); From 5a9de7413455ac3738b0360b9b5249815bed2c2b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 2 May 2023 09:18:17 -0700 Subject: [PATCH 640/696] refactor: remove unnecessary TokenOptions --- tools/token-transformer/TransformOptions.ts | 34 -------------- .../parse/expandComposites.test.ts | 45 +++++++++++++++---- .../parse/expandComposites.ts | 4 +- .../transform/nameCamelCase.ts | 2 +- .../transform/nameKebabCase.ts | 2 +- .../utils/compositeTokens.ts | 2 +- 6 files changed, 41 insertions(+), 48 deletions(-) delete mode 100644 tools/token-transformer/TransformOptions.ts diff --git a/tools/token-transformer/TransformOptions.ts b/tools/token-transformer/TransformOptions.ts deleted file mode 100644 index 3342ea09d1f..00000000000 --- a/tools/token-transformer/TransformOptions.ts +++ /dev/null @@ -1,34 +0,0 @@ -// This file exists because these types were not exported by Style Dictionary but types need to match. - -import { - SingleBorderToken, - SingleBoxShadowToken, - SingleCompositionToken, - SingleToken, - SingleTypographyToken -} from "@tokens-studio/types"; - -export type Expandables = SingleCompositionToken | SingleTypographyToken | SingleBorderToken | SingleBoxShadowToken; - -export const expandablesAsStrings = ["composition", "typography", "border", "boxShadow"] as const; -export type ExpandablesAsStrings = (typeof expandablesAsStrings)[number]; - -export type ExpandFilter = (token: T, filePath: string) => boolean; - -/** - * @param {boolean} [typography=false] - * @param {boolean} [border=false] - * @param {boolean} [shadow=false] - * @param {boolean} [composition=true] - */ -export interface ExpandOptions { - typography?: boolean | ExpandFilter; - border?: boolean | ExpandFilter; - shadow?: boolean | ExpandFilter; - composition?: boolean | ExpandFilter; -} - -export interface TransformOptions { - expand?: ExpandOptions | false; - excludeParentKeys?: boolean; -} diff --git a/tools/token-transformer/parse/expandComposites.test.ts b/tools/token-transformer/parse/expandComposites.test.ts index c16adc00bb5..9e529639a75 100644 --- a/tools/token-transformer/parse/expandComposites.test.ts +++ b/tools/token-transformer/parse/expandComposites.test.ts @@ -1,6 +1,31 @@ -const createPropertyFormatterCallback = jest.fn((token, idx) => `--${token.name}: blue;`) -const formattedVariables = jest.fn((tokens) => tokens.dictionary.allTokens.map(createPropertyFormatterCallback)); -const fileHeader = jest.fn(({file}) => ''); +import { DeepKeyTokenMap } from "@tokens-studio/types"; + +const mockCompoundToken = { + compound: { + type: 'color', + value: { + token1: '$compound.token2', + token2: '#fff' + } + } +}; +const mockTransformedCompoundTokens = { + compound: { + token1: { + type: 'color', + value: '{compound.token2}' + }, + token2: { + type: 'color', + value: '#fff' + } + } +}; + +const handleTokenStudioVariables = jest.fn((token) => `{${token.replace(/\$/g, '')}}`); +const convertTokenToStyleDictionaryFormat = jest.fn((customToken) => handleTokenStudioVariables) +const shouldExpand = jest.fn().mockReturnValue(true); +const expandToken = jest.fn().mockReturnValue(mockTransformedCompoundTokens); jest.mock('../utils/compositeTokens.js', () => { const originalModule = jest.requireActual('../utils/compositeTokens.js'); @@ -12,18 +37,20 @@ jest.mock('../utils/compositeTokens.js', () => { }; }); -jest.mock('../utils/compositeTokens.js', () => { - const originalModule = jest.requireActual('../utils/compositeTokens.js'); +jest.mock('../utils/convertTokenToStyleDictionaryFormat.js', () => { + const originalModule = jest.requireActual('../utils/convertTokenToStyleDictionaryFormat.js'); return { __esModule: false, ...originalModule, - shouldExpand, - expandToken + convertTokenToStyleDictionaryFormat }; }); +import { expandComposites } from "./expandComposites"; it("should loop through a dictionary and run \"convertTokenToStyleDictionary\" on each composite token", () => { - - expect() + + // @ts-expect-error - it's fine. + const testExpandComposite = expandComposites(mockCompoundToken, './fakePath') + expect(handleTokenStudioVariables).toBeCalled(); }) diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index 6b2ba9cf32f..67b3f578923 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -1,5 +1,5 @@ import { DeepKeyTokenMap, SingleToken, TokenTypes } from "@tokens-studio/types"; -import { TransformOptions, Expandables, ExpandablesAsStrings, expandablesAsStrings } from "../TransformOptions.js"; +import { TransformOptions, ExpandablesAsStrings, Expandables, expandablesAsStringsArr } from "@tokens-studio/sd-transforms/dist/TransformOptions.js"; import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from "../utils/regex.js"; import { shouldExpand, expandToken } from "../utils/compositeTokens.js"; import { convertTokenToStyleDictionaryFormat } from "../utils/convertTokenToStyleDictionaryFormat.js"; @@ -36,7 +36,7 @@ export function expandComposites( } if (token.value && type) { - if (typeof type === "string" && expandablesAsStrings.includes(TokenTypes[type])) { + if (typeof type === "string" && expandablesAsStringsArr.includes(TokenTypes[type])) { const expandType = (type as ExpandablesAsStrings) === "boxShadow" ? "shadow" : type; const expand = shouldExpand(token as Expandables, opts.expand[expandType], filePath); if (expand) { diff --git a/tools/token-transformer/transform/nameCamelCase.ts b/tools/token-transformer/transform/nameCamelCase.ts index 256546eb54c..9bc316c5302 100644 --- a/tools/token-transformer/transform/nameCamelCase.ts +++ b/tools/token-transformer/transform/nameCamelCase.ts @@ -1,7 +1,7 @@ import { camelCase } from "change-case"; -import { parseTokenPath } from "../utils/parseTokenPath.js"; import { TransformedToken } from "style-dictionary/types/TransformedToken.js"; import { Options } from "style-dictionary/types/Options.js"; +import { parseTokenPath } from "../utils/parseTokenPath.js"; /** * diff --git a/tools/token-transformer/transform/nameKebabCase.ts b/tools/token-transformer/transform/nameKebabCase.ts index e19726f7ffe..63f83b87813 100644 --- a/tools/token-transformer/transform/nameKebabCase.ts +++ b/tools/token-transformer/transform/nameKebabCase.ts @@ -1,7 +1,7 @@ import { paramCase } from "change-case"; -import { parseTokenPath } from "../utils/parseTokenPath.js"; import { TransformedToken } from "style-dictionary/types/TransformedToken.js"; import { Options } from "style-dictionary/types/Options.js"; +import { parseTokenPath } from "../utils/parseTokenPath.js"; /** * diff --git a/tools/token-transformer/utils/compositeTokens.ts b/tools/token-transformer/utils/compositeTokens.ts index 03b134e788e..ea3a2f62913 100644 --- a/tools/token-transformer/utils/compositeTokens.ts +++ b/tools/token-transformer/utils/compositeTokens.ts @@ -1,5 +1,5 @@ import { SingleToken } from "@tokens-studio/types"; -import { ExpandFilter } from "../TransformOptions.js"; +import { ExpandFilter } from "@tokens-studio/sd-transforms/dist/TransformOptions.js"; import { matchPlaceholderElement } from "./regex.js"; // A customized type map based off Token Studio. From 7933c0632f52b9db781a8a31270701f367639408 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 2 May 2023 11:26:28 -0700 Subject: [PATCH 641/696] test: add expandComposites tests --- .../parse/expandComposites.test.ts | 107 +++++++++++++++--- tools/token-transformer/sd-run.ts | 2 +- 2 files changed, 92 insertions(+), 17 deletions(-) diff --git a/tools/token-transformer/parse/expandComposites.test.ts b/tools/token-transformer/parse/expandComposites.test.ts index 9e529639a75..a799cb6e57c 100644 --- a/tools/token-transformer/parse/expandComposites.test.ts +++ b/tools/token-transformer/parse/expandComposites.test.ts @@ -1,22 +1,32 @@ -import { DeepKeyTokenMap } from "@tokens-studio/types"; - -const mockCompoundToken = { +const mockCorrectTypeCompoundToken = { + core: { + 1: { + type: 'sizing', + value: "10", + } + }, compound: { - type: 'color', + type: 'composition', value: { - token1: '$compound.token2', - token2: '#fff' + fontWeight: '$core.1', + lineHeight: '2' } } }; const mockTransformedCompoundTokens = { + core: { + 1: { + type: 'sizing', + value: "10", + } + }, compound: { - token1: { - type: 'color', - value: '{compound.token2}' + fontWeight: { + type: 'font-weight', + value: '{core.1}' }, - token2: { - type: 'color', + lineHeight: { + type: 'line-height', value: '#fff' } } @@ -46,11 +56,76 @@ jest.mock('../utils/convertTokenToStyleDictionaryFormat.js', () => { }; }); -import { expandComposites } from "./expandComposites"; +const expandCompositesSpy = jest.spyOn(expandComposites, 'expandComposites'); + +import * as expandComposites from "./expandComposites"; -it("should loop through a dictionary and run \"convertTokenToStyleDictionary\" on each composite token", () => { +describe("expand token dictionary", () => { - // @ts-expect-error - it's fine. - const testExpandComposite = expandComposites(mockCompoundToken, './fakePath') - expect(handleTokenStudioVariables).toBeCalled(); + beforeEach(()=>{ + jest.clearAllMocks(); + }); + + it("should not add placeholder elements", () => { + const placeolderToken = { + "[placeholder-component]": { + type: 'other', + value: '#333' + } + }; + const placeholderValue = { + "compoonent": { + type: 'other', + value: '[placholder-value]' + } + } + + // @ts-expect-error - it's fine. + const testExpandPlaceholderKey = expandComposites.expandComposites(placeolderToken, './fakePath'); + // @ts-expect-error - it's fine. + const testExpandPlaceholderValue = expandComposites.expandComposites(placeholderValue, './fakePath'); + + expect(testExpandPlaceholderKey).toMatchObject({}); + expect(testExpandPlaceholderValue).toMatchObject({}); + }) + + it("should recursively call itself when dealing with neseted objects", () => { + const nestedTokens = { + "component": { + "nested1": { + type: 'other', + value: '1' + }, + "nested2": { + type: 'other', + value: '2' + } + } + } + // @ts-expect-error - it's fine. + const testNestedToken = expandComposites.expandComposites(nestedTokens, './fakePath'); + expect(expandCompositesSpy).toBeCalledTimes(2); + }) + + it("should loop through a dictionary and run \"shouldExpand\" and \"expandToken\" on each composite token", () => { + // @ts-expect-error - it's fine. + const testExpandComposite = expandComposites.expandComposites(mockCorrectTypeCompoundToken, './fakePath') + expect(shouldExpand).toBeCalledTimes(1); + expect(expandToken).toBeCalledTimes(1); + expect(testExpandComposite).toMatchObject(mockTransformedCompoundTokens); + }) + + it("should not run expand token on unrecognized types", () => { + const mockDictionary = { + 'core': { + type: 'customType', + value: '#333' + } + }; + // @ts-expect-error - it's fine this is a test + const testExpandComposite = expandComposites.expandComposites(mockDictionary, './fakePath') + expect(shouldExpand).not.toBeCalled(); + expect(expandToken).not.toBeCalled(); + expect(testExpandComposite).toMatchObject(mockDictionary) + }) }) diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 0d9d9ea8efe..3bceaf55eac 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -65,7 +65,7 @@ export const run = async ( matcher: (token) => token.isSource }); - // We are programtically creating the Style Dictionary configuration here + // We are programmatically creating the Style Dictionary configuration here // https://amzn.github.io/style-dictionary/#/config const sd = StyleDictionary.extend({ source, From 1a2aee944585c9e4bfcd5018b6b0c337a38c9c91 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 2 May 2023 11:33:16 -0700 Subject: [PATCH 642/696] test: add tests for transformations --- .../transform/nameCamelCase.test.ts | 36 +++++++++++++++++++ .../transform/nameKebabCase.test.ts | 36 +++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 tools/token-transformer/transform/nameCamelCase.test.ts create mode 100644 tools/token-transformer/transform/nameKebabCase.test.ts diff --git a/tools/token-transformer/transform/nameCamelCase.test.ts b/tools/token-transformer/transform/nameCamelCase.test.ts new file mode 100644 index 00000000000..cfee199609c --- /dev/null +++ b/tools/token-transformer/transform/nameCamelCase.test.ts @@ -0,0 +1,36 @@ +import { nameCamelCase } from "./nameCamelCase" + +describe("transform names to camel case", () => { + it("should transform a token path to token name in a camel case format", () => { + const mockToken = { + name: 'current-name', + path: ['test', 'token', 'name'], + value: 'fake-value', + filePath: './fakePath.json', + original: { + value: 'fake-value', + type: 'composite', + }, + isSource: true + }; + expect(nameCamelCase(mockToken, {})).toBe('testTokenName'); + }); + + it("should add prefix to token name", () => { + const mockToken = { + name: 'current-name', + path: ['test', 'token', 'name'], + value: 'fake-value', + filePath: './fakePath.json', + original: { + value: 'fake-value', + type: 'composite', + }, + isSource: true + }; + const mockOptions = { + prefix: 'calcite' + }; + expect(nameCamelCase(mockToken, mockOptions)).toBe('calciteTestTokenName'); + }) +}) diff --git a/tools/token-transformer/transform/nameKebabCase.test.ts b/tools/token-transformer/transform/nameKebabCase.test.ts new file mode 100644 index 00000000000..ea165d4f791 --- /dev/null +++ b/tools/token-transformer/transform/nameKebabCase.test.ts @@ -0,0 +1,36 @@ +import { nameKebabCase } from "./nameKebabCase" + +describe("transform names to kebab case", () => { + it("should transform a token path to token name in a kebab case format", () => { + const mockToken = { + name: 'current-name', + path: ['test', 'token', 'name'], + value: 'fake-value', + filePath: './fakePath.json', + original: { + value: 'fake-value', + type: 'composite', + }, + isSource: true + }; + expect(nameKebabCase(mockToken, {})).toBe('test-token-name'); + }); + + it("should add prefix to token name", () => { + const mockToken = { + name: 'current-name', + path: ['test', 'token', 'name'], + value: 'fake-value', + filePath: './fakePath.json', + original: { + value: 'fake-value', + type: 'composite', + }, + isSource: true + }; + const mockOptions = { + prefix: 'calcite' + }; + expect(nameKebabCase(mockToken, mockOptions)).toBe('calcite-test-token-name'); + }) +}) From 10a2d019200028f59459882e681eefc7bb22b051 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 2 May 2023 13:33:54 -0700 Subject: [PATCH 643/696] chore: add back transformerOptions file --- .../parse/expandComposites.ts | 3 +- .../utils/compositeTokens.ts | 2 +- .../utils/transformOptions.ts | 35 +++++++++++++++++++ 3 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 tools/token-transformer/utils/transformOptions.ts diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index 67b3f578923..11433f81674 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -1,5 +1,5 @@ import { DeepKeyTokenMap, SingleToken, TokenTypes } from "@tokens-studio/types"; -import { TransformOptions, ExpandablesAsStrings, Expandables, expandablesAsStringsArr } from "@tokens-studio/sd-transforms/dist/TransformOptions.js"; +import { TransformOptions, ExpandablesAsStrings, Expandables, expandablesAsStringsArr } from "../utils/transformOptions.js"; import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from "../utils/regex.js"; import { shouldExpand, expandToken } from "../utils/compositeTokens.js"; import { convertTokenToStyleDictionaryFormat } from "../utils/convertTokenToStyleDictionaryFormat.js"; @@ -31,6 +31,7 @@ export function expandComposites( const handleTokenStudioVariables = convertTokenToStyleDictionaryFormat(tokenStudioCustomVariableIndicator); const newDictionary = Object.entries(dictionary).reduce((acc, [key, token]) => { const { type } = token; + if (matchPlaceholderElement.test(`${key}`) || matchPlaceholderElement.test(`${token.value}`)) { return acc; } diff --git a/tools/token-transformer/utils/compositeTokens.ts b/tools/token-transformer/utils/compositeTokens.ts index ea3a2f62913..b7210d8d6a5 100644 --- a/tools/token-transformer/utils/compositeTokens.ts +++ b/tools/token-transformer/utils/compositeTokens.ts @@ -1,5 +1,5 @@ import { SingleToken } from "@tokens-studio/types"; -import { ExpandFilter } from "@tokens-studio/sd-transforms/dist/TransformOptions.js"; +import { ExpandFilter } from "../utils/transformOptions"; import { matchPlaceholderElement } from "./regex.js"; // A customized type map based off Token Studio. diff --git a/tools/token-transformer/utils/transformOptions.ts b/tools/token-transformer/utils/transformOptions.ts new file mode 100644 index 00000000000..d48130ab32e --- /dev/null +++ b/tools/token-transformer/utils/transformOptions.ts @@ -0,0 +1,35 @@ +import { + SingleBorderToken, + SingleBoxShadowToken, + SingleCompositionToken, + SingleToken, + SingleTypographyToken, +} from '@tokens-studio/types'; + +/** + * Copied from https://github.com/tokens-studio/sd-transforms/blob/main/src/TransformOptions.ts + * This is needed for correct type setting and is not exported by Token Studio SD Transforms. + */ + +export type Expandables = + | SingleCompositionToken + | SingleTypographyToken + | SingleBorderToken + | SingleBoxShadowToken; + +export const expandablesAsStringsArr = ['composition', 'typography', 'border', 'boxShadow']; +export type ExpandablesAsStrings = (typeof expandablesAsStringsArr)[number]; + +export type ExpandFilter = (token: T, filePath: string) => boolean; + +export interface ExpandOptions { + typography?: boolean | ExpandFilter; + border?: boolean | ExpandFilter; + shadow?: boolean | ExpandFilter; + composition?: boolean | ExpandFilter; +} + +export interface TransformOptions { + expand?: ExpandOptions | false; + excludeParentKeys?: boolean; +} From 3319d836c0e4d78cfd88a853933423f92e263868 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 2 May 2023 13:34:08 -0700 Subject: [PATCH 644/696] test: expandComposites tests --- tools/token-transformer/parse/expandComposites.test.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/token-transformer/parse/expandComposites.test.ts b/tools/token-transformer/parse/expandComposites.test.ts index a799cb6e57c..1fa0521f543 100644 --- a/tools/token-transformer/parse/expandComposites.test.ts +++ b/tools/token-transformer/parse/expandComposites.test.ts @@ -56,10 +56,10 @@ jest.mock('../utils/convertTokenToStyleDictionaryFormat.js', () => { }; }); -const expandCompositesSpy = jest.spyOn(expandComposites, 'expandComposites'); - import * as expandComposites from "./expandComposites"; +const expandCompositesSpy = jest.spyOn(expandComposites, 'expandComposites'); + describe("expand token dictionary", () => { beforeEach(()=>{ @@ -109,7 +109,9 @@ describe("expand token dictionary", () => { it("should loop through a dictionary and run \"shouldExpand\" and \"expandToken\" on each composite token", () => { // @ts-expect-error - it's fine. - const testExpandComposite = expandComposites.expandComposites(mockCorrectTypeCompoundToken, './fakePath') + const testExpandComposite = expandComposites.expandComposites(mockCorrectTypeCompoundToken, './fakePath'); + expect(expandCompositesSpy).toBeCalledTimes(1); + expect(handleTokenStudioVariables).toBeCalledTimes(1); expect(shouldExpand).toBeCalledTimes(1); expect(expandToken).toBeCalledTimes(1); expect(testExpandComposite).toMatchObject(mockTransformedCompoundTokens); From 34417af94bf5c718a19e4c03e8f5e817b0e362b1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 3 May 2023 14:36:13 -0700 Subject: [PATCH 645/696] docs: update jsdocs per PR comments --- CONTRIBUTING.md | 21 ++++++++----------- tools/token-transformer/format/scss.ts | 2 +- tools/token-transformer/sd-run.ts | 3 +-- .../transform/nameCamelCase.ts | 2 +- .../transform/nameKebabCase.ts | 2 +- tools/token-transformer/utils/matchList.ts | 1 + tools/token-transformer/utils/parseName.ts | 2 +- tsconfig.json | 2 -- 8 files changed, 15 insertions(+), 20 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1e2bef1a357..a00dc731eb2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -28,7 +28,7 @@ npm install ### Create a branch for your feature or fix -If you are a designer setting up a branch for FigmaTokens Plugin, make sure your branch name starts with `designer/`. +If you are a designer setting up a branch for Figma Tokens Plugin, make sure your branch name starts with `designer/`. ```bash git checkout -b designer/[yourname] @@ -53,37 +53,34 @@ Build the tokens to platform assets `npm run build` -### Understanding Token Files +## Understanding Token Files All token files may be updated by the Figma Token Studio plugin. These can also be updated in the code directly. Any changes to token files must be reviewed by the Calcite Design Team. -#### tokens/$metadata.json +### tokens/$metadata.json This file is used by Figma Token Studio but is not used to determine final token asset output. -#### tokens/$themes.json +### tokens/$themes.json Each theme defined in this file will output a token asset in each format defined in the token transformer config. -#### tokens/core.json +### tokens/core.json The core design tokens upon which the rest of the tokens are built. -#### tokens/semantic.json +### tokens/semantic.json The semantic design tokens used by theme files and components. -#### tokens/component/ +### tokens/component/ The component design tokens. These are used by themes. -#### tokens/calcite/ +### tokens/calcite/ The Calcite themes. This currently consists of a light and dark theme. -#### tokens/brand/ - -The Brand themes. This currently consists of a set of global tokens as well as a light and dark theme. ## Submitting Pull Requests @@ -110,7 +107,7 @@ git push origin [yourname]/[type]-[issue#] ### Open the pull request back to the token repo -Make sure to use a clear title and descritions. See [open a pull request](https://help.github.com/articles/using-pull-requests/) for more information. +Make sure to use a clear title and description. See [open a pull request](https://help.github.com/articles/using-pull-requests/) for more information. ## Bumping the Version diff --git a/tools/token-transformer/format/scss.ts b/tools/token-transformer/format/scss.ts index dbe492b975c..75f129ffc42 100644 --- a/tools/token-transformer/format/scss.ts +++ b/tools/token-transformer/format/scss.ts @@ -7,7 +7,7 @@ const regexThemeGroup = /calcite|brand/gi; const regexFileNameWithoutExtension = /\w+(?=\.\w+$)/gi; /** - * + * Exports SCSS style formats * @param {object} fileInfo the file object * @param {Dictionary} fileInfo.dictionary the Style Dictionary object * @param {File} fileInfo.file information about the file to be generated diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 3bceaf55eac..93730757816 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -173,10 +173,9 @@ export const run = async ( if (matchList(file.filePath, [...include, ...theme.source, ...theme.enabled], matchExclusions)) { const obj = JSON.parse(file.contents); const expanded = expandComposites(obj, file.filePath); - return expanded; } - + return {}; } } diff --git a/tools/token-transformer/transform/nameCamelCase.ts b/tools/token-transformer/transform/nameCamelCase.ts index 9bc316c5302..eb641d8bf38 100644 --- a/tools/token-transformer/transform/nameCamelCase.ts +++ b/tools/token-transformer/transform/nameCamelCase.ts @@ -4,7 +4,7 @@ import { Options } from "style-dictionary/types/Options.js"; import { parseTokenPath } from "../utils/parseTokenPath.js"; /** - * + * Convert token name to camel case * @param {TransformedToken} token Style Dictionary token object * @param {Options} options Style Dictionary format options * @returns {string} an updated name for the token which will be used for the final output diff --git a/tools/token-transformer/transform/nameKebabCase.ts b/tools/token-transformer/transform/nameKebabCase.ts index 63f83b87813..5c6919b37fd 100644 --- a/tools/token-transformer/transform/nameKebabCase.ts +++ b/tools/token-transformer/transform/nameKebabCase.ts @@ -4,7 +4,7 @@ import { Options } from "style-dictionary/types/Options.js"; import { parseTokenPath } from "../utils/parseTokenPath.js"; /** - * + * convert token name to kebab case * @param {TransformedToken} token Style Dictionary token object * @param {Options} options Style Dictionary format options * @returns {string} an updated name for the token which will be used for the final output diff --git a/tools/token-transformer/utils/matchList.ts b/tools/token-transformer/utils/matchList.ts index 874d7aed525..0ebfe185432 100644 --- a/tools/token-transformer/utils/matchList.ts +++ b/tools/token-transformer/utils/matchList.ts @@ -1,4 +1,5 @@ /** + * Find the string in a list * @param {string} str the string to find in the list * @param {string[]} list the list of strings to match with the provided string * @param {RegExp} regexExclude a regular expression defining strings that should always be excluded diff --git a/tools/token-transformer/utils/parseName.ts b/tools/token-transformer/utils/parseName.ts index 199267594ad..83cfa3ef24d 100644 --- a/tools/token-transformer/utils/parseName.ts +++ b/tools/token-transformer/utils/parseName.ts @@ -1,7 +1,7 @@ import { paramCase } from "change-case"; /** - * + * Used to set the file name for the generated theme file. * @param {string} name the file name passed from the themes object * @param {string} prefix an optional prefix for each file name * @returns {string} a kebab-case file name from the passed name, optionally starting with a prefix diff --git a/tsconfig.json b/tsconfig.json index 6228431fb5b..59786836ffd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,4 @@ { - "$schema": "https://json.schemastore.org/tsconfig", - "display": "Default", "compilerOptions": { "allowSyntheticDefaultImports": true, "allowUnreachableCode": false, From f8a61d3b16409b89a2a47bd54a91035c6a5510cc Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 09:54:35 -0700 Subject: [PATCH 646/696] chore: token key duplication --- tokens/component/accordion-item.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tokens/component/accordion-item.json b/tokens/component/accordion-item.json index ecfb4c3d442..85934a35821 100644 --- a/tokens/component/accordion-item.json +++ b/tokens/component/accordion-item.json @@ -31,9 +31,7 @@ "dark": { "value": "$semantic.ui.color.text.3.dark", "type": "color" - } - }, - "descrition": { + }, "sm": { "value": "$semantic.font.default.regular.-2h", "type": "typography" From dca9053a10a48e5414dd60dfb6c751a9bfcaa4e1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 09:54:53 -0700 Subject: [PATCH 647/696] chore: composite token parsing --- .../parse/expandComposites.test.ts | 94 ++++++------ .../parse/expandComposites.ts | 19 ++- .../utils/compositeTokens.test.ts | 134 ++++++++++++++++++ .../utils/compositeTokens.ts | 59 ++++---- 4 files changed, 234 insertions(+), 72 deletions(-) create mode 100644 tools/token-transformer/utils/compositeTokens.test.ts diff --git a/tools/token-transformer/parse/expandComposites.test.ts b/tools/token-transformer/parse/expandComposites.test.ts index 1fa0521f543..357fa44ac5f 100644 --- a/tools/token-transformer/parse/expandComposites.test.ts +++ b/tools/token-transformer/parse/expandComposites.test.ts @@ -6,11 +6,17 @@ const mockCorrectTypeCompoundToken = { } }, compound: { - type: 'composition', - value: { - fontWeight: '$core.1', - lineHeight: '2' - } + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" } }; const mockTransformedCompoundTokens = { @@ -21,19 +27,43 @@ const mockTransformedCompoundTokens = { } }, compound: { - fontWeight: { - type: 'font-weight', - value: '{core.1}' + "font-family": { + "value": "$core.font.font-family.primary", + "type": "font-family" + }, + "font-weight": { + "value": "$core.font.font-weight.light", + "type": "font-weights" + }, + "line-height": { + "value": "$core.font.line-height.fixed.0", + "type": "line-heights" + }, + "font-size": { + "value": "$core.font.font-size.0", + "type": "font-size" + }, + "letter-spacing": { + "value": "$core.font.letter-spacing.normal", + "type": "letter-spacing" + }, + "paragraph-spacing": { + "value": "$core.font.paragraph-spacing.normal", + "type": "paragraph-spacing" + }, + "text-decoration": { + "value": "$core.font.text-decoration.none", + "type": "font-style" + }, + "text-case": { + "value": "$core.font.text-case.none", + "type": "text-case" }, - lineHeight: { - type: 'line-height', - value: '#fff' - } } }; -const handleTokenStudioVariables = jest.fn((token) => `{${token.replace(/\$/g, '')}}`); -const convertTokenToStyleDictionaryFormat = jest.fn((customToken) => handleTokenStudioVariables) +const handleTokenStudioVariables = jest.fn((token) => token.includes('$') ? `{${token.replace(/\$/g, '')}}` : token); +const convertTokenToStyleDictionaryFormat = jest.fn(() => handleTokenStudioVariables) const shouldExpand = jest.fn().mockReturnValue(true); const expandToken = jest.fn().mockReturnValue(mockTransformedCompoundTokens); @@ -58,8 +88,6 @@ jest.mock('../utils/convertTokenToStyleDictionaryFormat.js', () => { import * as expandComposites from "./expandComposites"; -const expandCompositesSpy = jest.spyOn(expandComposites, 'expandComposites'); - describe("expand token dictionary", () => { beforeEach(()=>{ @@ -89,31 +117,12 @@ describe("expand token dictionary", () => { expect(testExpandPlaceholderValue).toMatchObject({}); }) - it("should recursively call itself when dealing with neseted objects", () => { - const nestedTokens = { - "component": { - "nested1": { - type: 'other', - value: '1' - }, - "nested2": { - type: 'other', - value: '2' - } - } - } - // @ts-expect-error - it's fine. - const testNestedToken = expandComposites.expandComposites(nestedTokens, './fakePath'); - expect(expandCompositesSpy).toBeCalledTimes(2); - }) - it("should loop through a dictionary and run \"shouldExpand\" and \"expandToken\" on each composite token", () => { // @ts-expect-error - it's fine. const testExpandComposite = expandComposites.expandComposites(mockCorrectTypeCompoundToken, './fakePath'); - expect(expandCompositesSpy).toBeCalledTimes(1); - expect(handleTokenStudioVariables).toBeCalledTimes(1); - expect(shouldExpand).toBeCalledTimes(1); - expect(expandToken).toBeCalledTimes(1); + expect(handleTokenStudioVariables).toHaveBeenCalledTimes(1); + expect(shouldExpand).toHaveBeenCalledTimes(1); + expect(expandToken).toHaveBeenCalledTimes(1); expect(testExpandComposite).toMatchObject(mockTransformedCompoundTokens); }) @@ -121,13 +130,16 @@ describe("expand token dictionary", () => { const mockDictionary = { 'core': { type: 'customType', - value: '#333' + value: { + fontFamily: 'Avanir', + fontSize: '12px' + } } }; // @ts-expect-error - it's fine this is a test const testExpandComposite = expandComposites.expandComposites(mockDictionary, './fakePath') - expect(shouldExpand).not.toBeCalled(); - expect(expandToken).not.toBeCalled(); + expect(shouldExpand).not.toHaveBeenCalled(); + expect(expandToken).not.toHaveBeenCalled(); expect(testExpandComposite).toMatchObject(mockDictionary) }) }) diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index 11433f81674..60b702e520b 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -1,4 +1,5 @@ import { DeepKeyTokenMap, SingleToken, TokenTypes } from "@tokens-studio/types"; +import { DesignToken } from "style-dictionary/types/DesignToken.js"; import { TransformOptions, ExpandablesAsStrings, Expandables, expandablesAsStringsArr } from "../utils/transformOptions.js"; import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from "../utils/regex.js"; import { shouldExpand, expandToken } from "../utils/compositeTokens.js"; @@ -32,24 +33,28 @@ export function expandComposites( const newDictionary = Object.entries(dictionary).reduce((acc, [key, token]) => { const { type } = token; - if (matchPlaceholderElement.test(`${key}`) || matchPlaceholderElement.test(`${token.value}`)) { + if (matchPlaceholderElement.test(`${key}`) || (typeof token.value === 'string' && matchPlaceholderElement.test(`${token.value}`))) { return acc; } if (token.value && type) { - if (typeof type === "string" && expandablesAsStringsArr.includes(TokenTypes[type])) { + const includesType = expandablesAsStringsArr.includes(`${type}`); + + if (includesType) { const expandType = (type as ExpandablesAsStrings) === "boxShadow" ? "shadow" : type; - const expand = shouldExpand(token as Expandables, opts.expand[expandType], filePath); + const expand = shouldExpand(token as Expandables, opts.expand[`${expandType}`], filePath); if (expand) { const expandedToken = expandToken( - token, + token as DesignToken, expandType === "shadow", handleTokenStudioVariables ); - acc[key] = expandedToken as SingleToken; + return expandedToken; } + } else if (typeof token.value === 'string') { + token.value = handleTokenStudioVariables(token.value); + acc[key] = token; } else { - token.value = handleTokenStudioVariables(token.value as string); acc[key] = token; } } else if (typeof token === "object") { @@ -58,5 +63,5 @@ export function expandComposites( return acc; }, returnSlice); - return newDictionary; + return newDictionary || {}; } diff --git a/tools/token-transformer/utils/compositeTokens.test.ts b/tools/token-transformer/utils/compositeTokens.test.ts new file mode 100644 index 00000000000..51f5c18b35d --- /dev/null +++ b/tools/token-transformer/utils/compositeTokens.test.ts @@ -0,0 +1,134 @@ +import { TokenTypes } from "@tokens-studio/types"; +import { expandToken, shouldExpand } from "./compositeTokens"; + +const mockHandleValue = jest.fn((val) => val); + +describe('expand composite token', () => { + it('should expand a non-shadow token', () => { + const mockTypographyToken = { + "value": { + "fontFamily": "$core.font.font-family.primary", + "fontWeight": "$core.font.font-weight.light", + "lineHeight": "$core.font.line-height.fixed.0", + "fontSize": "$core.font.font-size.0", + "letterSpacing": "$core.font.letter-spacing.normal", + "paragraphSpacing": "$core.font.paragraph-spacing.normal", + "textDecoration": "$core.font.text-decoration.none", + "textCase": "$core.font.text-case.none" + }, + "type": "typography" + }; + const mockExpandedTypographyToken = { + "font-family": { + "value": "$core.font.font-family.primary", + "type": "font-family" + }, + "font-weight": { + "value": "$core.font.font-weight.light", + "type": "font-weights" + }, + "line-height": { + "value": "$core.font.line-height.fixed.0", + "type": "line-heights" + }, + "font-size": { + "value": "$core.font.font-size.0", + "type": "font-size" + }, + "letter-spacing": { + "value": "$core.font.letter-spacing.normal", + "type": "letter-spacing" + }, + "paragraph-spacing": { + "value": "$core.font.paragraph-spacing.normal", + "type": "paragraph-spacing" + }, + "text-decoration": { + "value": "$core.font.text-decoration.none", + "type": "font-style" + }, + "text-case": { + "value": "$core.font.text-case.none", + "type": "text-case" + }, + } + const testExpandToken = expandToken(mockTypographyToken, false, mockHandleValue); + expect(testExpandToken).toMatchObject(mockExpandedTypographyToken) + }) + it('should expand a shadow token', () => { + const mockShadowToken = { + "value": [ + { + "x": "0", + "y": "2", + "blur": "8", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + "type": "dropShadow" + }, + { + "x": "0", + "y": "4", + "blur": "16", + "spread": "0", + "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", + "type": "dropShadow" + } + ], + "type": "boxShadow" + }; + const mockExpandedShadowToken = { + "1": { + "x": { + "type": "dimension", + "value": "0" + }, + "y": { + "type": "dimension", + "value": "2", + }, + "blur": { + "type": "dimension", + "value": "8", + }, + "spread": { + "type": "dimension", + "value": "0", + }, + "color": { + "type": "color", + "value": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + } + } + } + const testExpandToken = expandToken(mockShadowToken, true, mockHandleValue); + expect(testExpandToken).toMatchObject(mockExpandedShadowToken); + }); +}) + +describe('shouldExpand', () => { + const filePath = './mockFile.json'; + const mockToken = { + name: 'testToken', + type: "fontFamilies", + value: 'san-serif' + }; + + it('should return true', () => { + // @ts-expect-error - type is fine here. + const testExpand = shouldExpand(mockToken, true, filePath); + expect(testExpand).toBe(true); + }) + it('should return false', () => { + // @ts-expect-error - type is fine here. + const testExpand = shouldExpand(mockToken, false, filePath); + expect(testExpand).toBe(false); + }) + it('should use condition function', () => { + const mockExpandFunction = jest.fn(() => true); + // @ts-expect-error - type is fine here. + const testExpand = shouldExpand(mockToken, mockExpandFunction, filePath); + expect(testExpand).toBe(true); + expect(mockExpandFunction).toHaveBeenCalled(); + }) +}) diff --git a/tools/token-transformer/utils/compositeTokens.ts b/tools/token-transformer/utils/compositeTokens.ts index b7210d8d6a5..7bac53e7c3d 100644 --- a/tools/token-transformer/utils/compositeTokens.ts +++ b/tools/token-transformer/utils/compositeTokens.ts @@ -1,6 +1,8 @@ -import { SingleToken } from "@tokens-studio/types"; import { ExpandFilter } from "../utils/transformOptions"; import { matchPlaceholderElement } from "./regex.js"; +import { DesignToken } from "style-dictionary/types/DesignToken"; +import { SingleToken } from "@tokens-studio/types"; +import { paramCase } from "change-case"; // A customized type map based off Token Studio. // This determines the applied "type" associated with each Style Dictionary token value @@ -10,64 +12,73 @@ const typeMaps = { y: "dimension", blur: "dimension", spread: "dimension", - type: "other" + type: "other", + color: "color", }, border: { - width: "borderWidth", + width: "border-width", style: "other" }, composition: { - typography: "fontSizes", - fontWeight: "fontWeights" + typography: "font-size", + fontWeight: "font-weight" }, typography: { - fontFamily: "fontFamilies", - fontWeight: "fontWeights", - lineHeight: "lineHeights", - fontSize: "fontSizes", - letterSpacing: "spacing", - paragraphSpacing: "spacing", - textDecoration: "fontStyle", - textCase: "textCase" + fontFamily: "font-family", + fontWeight: "font-weights", + lineHeight: "line-heights", + fontSize: "font-size", + letterSpacing: "letter-spacing", + paragraphSpacing: "paragraph-spacing", + textDecoration: "font-style", + textCase: "text-case" } }; +/** + * Get type from type map + * @param {string} key type + * @param {DesignToken} compositeToken a Style Dictionary token + * @returns a string + */ +export const getType = (key: string, compositeToken: DesignToken): string => typeMaps[compositeToken.type][key] ?? key; + /** * This is a recursive function to dig into composite tokens and lift up the token values in a Style Dictionary format. - * @param {SingleToken} compositeToken the composite token object + * @param {DesignToken} compositeToken the composite token object * @param {boolean} isShadow is a drop shadow? * @param {Function} handleValue a function to determine how the final token value string should be passed to Style Dictionary - * @returns {SingleToken} a single Style Dictionary token object + * @returns {DesignToken} a single Style Dictionary token object */ export function expandToken( - compositeToken: SingleToken, + compositeToken: DesignToken, isShadow = false, handleValue = (v) => v -): SingleToken { - const expandedObj = {} as SingleToken; - const getType = (key: string) => typeMaps[compositeToken.type][key] ?? key; +): DesignToken { + const expandedObj = {} as DesignToken; if (isShadow && Array.isArray(compositeToken.value)) { compositeToken.value.forEach((shadow, index) => { expandedObj[index + 1] = {}; Object.entries(shadow).forEach(([key, value]) => { - if (matchPlaceholderElement.test(`${value}`)) { + if (matchPlaceholderElement.test(`${value}`) || key === 'type') { return; } expandedObj[index + 1][key] = { value: `${handleValue(value)}`, - type: getType(key) + type: getType(key, compositeToken) }; }); }); } else { Object.entries(compositeToken.value).forEach(([key, value]) => { + const newKey = paramCase(key); if (matchPlaceholderElement.test(`${value}`)) { return; } - expandedObj[key] = { + expandedObj[newKey] = { value: `${handleValue(value)}`, - type: getType(key) + type: getType(key, compositeToken) }; }); } @@ -77,7 +88,7 @@ export function expandToken( /** * - * @param {SingleToken} token Style Dictionary token object + * @param {DesignToken} token Style Dictionary token object * @param {boolean | ExpandFilter} condition check if the token should be expanded or not * @param {string} filePath the file path where the token came from * @returns {boolean} if the token should be expanded From fa885c74f0281744d6dae38cccc6b97572d29c7b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 08:42:14 -0700 Subject: [PATCH 648/696] chore: remove "build" --- .eslintrc.json | 2 +- .gitignore | 1 - .npmignore | 4 +--- .prettierignore | 4 ++-- CONTRIBUTING.md | 2 +- bin/run.js | 2 +- package-lock.json | 2 +- package.json | 38 +++++++++++++++---------------- tools/token-transformer/sd-run.ts | 2 +- tsconfig.cjs.json | 2 +- tsconfig.json | 2 +- 11 files changed, 29 insertions(+), 32 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 1527294d4dd..8dccbafc56d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -8,7 +8,7 @@ "plugin:jsdoc/recommended", "prettier" ], - "ignorePatterns": ["build", "bin", "node_modules"], + "ignorePatterns": ["dist", "bin", "node_modules"], "parser": "@typescript-eslint/parser", "parserOptions": { "project": "./tsconfig.json", diff --git a/.gitignore b/.gitignore index e04b4346953..75e794e0d04 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,6 @@ node_modules .DS_Store # Node Package distribution -build dist # Transformation Directory diff --git a/.npmignore b/.npmignore index 4fd42cfc171..9b99bf20faa 100644 --- a/.npmignore +++ b/.npmignore @@ -9,10 +9,8 @@ node_modules # macOS metadata .DS_Store -# Pre-Build Folders -sd-example +# Pre-build Folders tokens -sd-transform # Documentation CONTRIBUTING.md diff --git a/.prettierignore b/.prettierignore index c680f387fb9..6f7059ffe21 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,4 +1,4 @@ bin/ -build/ -tools/build/ +dist/ +tools/dist/ node_modules/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a00dc731eb2..255b97da061 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -113,7 +113,7 @@ Make sure to use a clear title and description. See [open a pull request](https: 1. Following the rules of [SEMVER](https://semver.org/), change the version number in `package.json` to the appropriate version number. 2. Write a description of the changes, additions, and bug fixes in `CHANGELOG.md`. -3. Run `npm run build` to make sure the `build/` files are updated. +3. Run `npm run build` to make sure the `dist/` files are updated. 4. Make sure `Esri/calcite-design-tokens` is up-to-date with your changes (via Pull Request). 5. Run `npm run release`. If prompted enter your GitHub credentials. diff --git a/bin/run.js b/bin/run.js index eb1872099cb..88846ce552a 100644 --- a/bin/run.js +++ b/bin/run.js @@ -9,5 +9,5 @@ const rawData = readFileSync("tokens/$themes.json", { encoding: "utf-8" }); const data = JSON.parse(rawData); getThemes(data).then((themes) => - Promise.all(themes.map((theme) => run("tokens", "build", theme))) + Promise.all(themes.map((theme) => run("tokens", "dist", theme))) ); diff --git a/package-lock.json b/package-lock.json index a797aeb0f03..1ca7f25408b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5738,7 +5738,7 @@ "babel-jest": { "optional": true }, - "esbuild": { + "esdist": { "optional": true } } diff --git a/package.json b/package.json index 3ba0fe32fb6..a0c27febab0 100644 --- a/package.json +++ b/package.json @@ -9,27 +9,27 @@ "design tokens", "tokens" ], - "main": "./build/js/calcite-headless.js", + "main": "./dist/js/calcite-headless.js", "type": "module", "exports": { - ".": "./build/js/calcite-headless.js", - "./css": "./build/css/calcite-headless.css", - "./css/brand/dark": "./build/css/brand-dark.css", - "./css/brand/light": "./build/css/brand-light.css", - "./css/calcite/dark": "./build/css/calcite-dark.css", - "./css/calcite/light": "./build/css/calcite-light.css", - "./css/headless": "./build/css/calcite-headless.css", - "./scss": "./build/scss/calcite-headless.scss", - "./scss/brand/dark": "./build/scss/brand-dark.scss", - "./scss/brand/light": "./build/scss/brand-light.scss", - "./scss/calcite/dark": "./build/scss/calcite-dark.scss", - "./scss/calcite/light": "./build/scss/calcite-light.scss", - "./scss/headless": "./build/scss/calcite-headless.scss", - "./js/brand/dark": "./build/js/brand-dark.js", - "./js/brand/light": "./build/js/brand-light.js", - "./js/calcite/dark": "./build/js/calcite-dark.js", - "./js/calcite/light": "./build/js/calcite-light.js", - "./js/headless": "./build/js/calcite-headless.js" + ".": "./dist/js/calcite-headless.js", + "./css": "./dist/css/calcite-headless.css", + "./css/brand/dark": "./dist/css/brand-dark.css", + "./css/brand/light": "./dist/css/brand-light.css", + "./css/calcite/dark": "./dist/css/calcite-dark.css", + "./css/calcite/light": "./dist/css/calcite-light.css", + "./css/headless": "./dist/css/calcite-headless.css", + "./scss": "./dist/scss/calcite-headless.scss", + "./scss/brand/dark": "./dist/scss/brand-dark.scss", + "./scss/brand/light": "./dist/scss/brand-light.scss", + "./scss/calcite/dark": "./dist/scss/calcite-dark.scss", + "./scss/calcite/light": "./dist/scss/calcite-light.scss", + "./scss/headless": "./dist/scss/calcite-headless.scss", + "./js/brand/dark": "./dist/js/brand-dark.js", + "./js/brand/light": "./dist/js/brand-light.js", + "./js/calcite/dark": "./dist/js/calcite-dark.js", + "./js/calcite/light": "./dist/js/calcite-light.js", + "./js/headless": "./dist/js/calcite-headless.js" }, "repository": { "type": "git", diff --git a/tools/token-transformer/sd-run.ts b/tools/token-transformer/sd-run.ts index 93730757816..12ebf277339 100644 --- a/tools/token-transformer/sd-run.ts +++ b/tools/token-transformer/sd-run.ts @@ -21,7 +21,7 @@ import { Theme } from "./getThemes.js"; */ export const run = async ( tokenDir = "tokens", - buildPath = "build", + buildPath = "dist", theme: Pick ): Promise => { const fileName = parseName(theme.name); diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json index 0ff1267eed6..dd2ac37609d 100644 --- a/tsconfig.cjs.json +++ b/tsconfig.cjs.json @@ -2,7 +2,7 @@ "extends": "./tsconfig", "compilerOptions": { "target": "ES2018", - "outDir": "./tools/build", + "outDir": "./tools/dist", "sourceMap": true }, "exclude": ["**/*.test.*"] diff --git a/tsconfig.json b/tsconfig.json index 59786836ffd..44c99f30baf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,5 @@ "resolveJsonModule": true, "target": "ES2018" }, - "exclude": ["node_modules", "tokens", "build"] + "exclude": ["node_modules", "tokens", "dist"] } From bb066efa5869a0f58596dff9208b4095872ab9db Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 08:57:09 -0700 Subject: [PATCH 649/696] chore: add release scripts copied from calcite-components --- CONTRIBUTING.md | 4 + package-lock.json | 3786 +++++++++++++++++++- package.json | 27 +- support/.unreleased-changelog-context.json | 4 + support/checkSquashMergeableBranch.ts | 29 + support/cleanOnProcessExit.ts | 48 + support/deployNextFromCI.ts | 44 + support/isNextDeployable.ts | 77 + support/prepReleaseCommit.ts | 162 + support/prepublish.ts | 21 + support/releaseToGitHub.ts | 29 + 11 files changed, 4145 insertions(+), 86 deletions(-) create mode 100644 support/.unreleased-changelog-context.json create mode 100644 support/checkSquashMergeableBranch.ts create mode 100644 support/cleanOnProcessExit.ts create mode 100755 support/deployNextFromCI.ts create mode 100755 support/isNextDeployable.ts create mode 100644 support/prepReleaseCommit.ts create mode 100644 support/prepublish.ts create mode 100644 support/releaseToGitHub.ts diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 255b97da061..e7a64a2334d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -155,3 +155,7 @@ Automated Steps 1. Watch for pull requests with the label `automated-tokens-pr`. 1. Wait to confirm the pull request passes required checks. 1. Merge the pull request with the commit message `chore: automatic merge`. + +## Commit message format + +This project follows [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/), which are used to generate the changelog. Be sure to provide clear and sufficient information in commit messages. This is important because the commit messages are used to automatically update the changelog. diff --git a/package-lock.json b/package-lock.json index 1ca7f25408b..bf2c8b7a764 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,16 +20,20 @@ "eslint-plugin-jsdoc": "^43.1.1", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-unicorn": "^46.0.0", + "gh-release": "^7.0.2", "jest": "^29.5.0", "lodash-es": "^4.17.21", "markdownlint-cli": "^0.34.0", "prettier": "^2.8.8", + "rimraf": "^5.0.0", + "shell-quote": "^1.8.1", "style-dictionary": "^3.7.1", "token-transformer": "^0.0.27", "ts-jest": "^29.0.5", "ts-node": "^10.9.1", "tslib": "^2.5.0", - "typescript": "^5.0.2" + "typescript": "^5.0.2", + "yargs": "^17.7.2" } }, "node_modules/@ampproject/remapping": { @@ -1166,6 +1170,165 @@ "node": ">= 8" } }, + "node_modules/@octokit/auth-token": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.3.tgz", + "integrity": "sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA==", + "dev": true, + "dependencies": { + "@octokit/types": "^9.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/core": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.0.tgz", + "integrity": "sha512-AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg==", + "dev": true, + "dependencies": { + "@octokit/auth-token": "^3.0.0", + "@octokit/graphql": "^5.0.0", + "@octokit/request": "^6.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/endpoint": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.5.tgz", + "integrity": "sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA==", + "dev": true, + "dependencies": { + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/graphql": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.5.tgz", + "integrity": "sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ==", + "dev": true, + "dependencies": { + "@octokit/request": "^6.0.0", + "@octokit/types": "^9.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/openapi-types": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.1.0.tgz", + "integrity": "sha512-rnI26BAITDZTo5vqFOmA7oX4xRd18rO+gcK4MiTpJmsRMxAw0JmevNjPsjpry1bb9SVNo56P/0kbiyXXa4QluA==", + "dev": true + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.0.0.tgz", + "integrity": "sha512-Sq5VU1PfT6/JyuXPyt04KZNVsFOSBaYOAq2QRZUwzVlI10KFvcbUo8lR258AAQL1Et60b0WuVik+zOWKLuDZxw==", + "dev": true, + "dependencies": { + "@octokit/types": "^9.0.0" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "@octokit/core": ">=4" + } + }, + "node_modules/@octokit/plugin-request-log": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", + "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", + "dev": true, + "peerDependencies": { + "@octokit/core": ">=3" + } + }, + "node_modules/@octokit/plugin-rest-endpoint-methods": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.0.1.tgz", + "integrity": "sha512-pnCaLwZBudK5xCdrR823xHGNgqOzRnJ/mpC/76YPpNP7DybdsJtP7mdOwh+wYZxK5jqeQuhu59ogMI4NRlBUvA==", + "dev": true, + "dependencies": { + "@octokit/types": "^9.0.0", + "deprecation": "^2.3.1" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "@octokit/core": ">=3" + } + }, + "node_modules/@octokit/request": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-6.2.3.tgz", + "integrity": "sha512-TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA==", + "dev": true, + "dependencies": { + "@octokit/endpoint": "^7.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.7", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/request-error": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz", + "integrity": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==", + "dev": true, + "dependencies": { + "@octokit/types": "^9.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/rest": { + "version": "19.0.7", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.7.tgz", + "integrity": "sha512-HRtSfjrWmWVNp2uAkEpQnuGMJsu/+dBr47dRc5QVgsCbnIc1+GFEaoKBWkYG+zjrsHpSqcAElMio+n10c0b5JA==", + "dev": true, + "dependencies": { + "@octokit/core": "^4.1.0", + "@octokit/plugin-paginate-rest": "^6.0.0", + "@octokit/plugin-request-log": "^1.0.4", + "@octokit/plugin-rest-endpoint-methods": "^7.0.0" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/@octokit/types": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.0.tgz", + "integrity": "sha512-xySzJG4noWrIBFyMu4lg4tu9vAgNg9S0aoLRONhAEz6ueyi1evBzb40HitIosaYS4XOexphG305IVcLrIX/30g==", + "dev": true, + "dependencies": { + "@octokit/openapi-types": "^17.1.0" + } + }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", @@ -1182,6 +1345,15 @@ "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", "dev": true }, + "node_modules/@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/@sinonjs/commons": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", @@ -1200,6 +1372,18 @@ "@sinonjs/commons": "^2.0.0" } }, + "node_modules/@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "dependencies": { + "defer-to-connect": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/@tokens-studio/sd-transforms": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.2.tgz", @@ -1738,6 +1922,15 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "dependencies": { + "string-width": "^4.1.0" + } + }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -1790,6 +1983,32 @@ "node": ">= 8" } }, + "node_modules/application-config": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/application-config/-/application-config-2.0.0.tgz", + "integrity": "sha512-NC5/0guSZK3/UgUDfCk/riByXzqz0owL1L3r63JPSBzYk5QALrp3bLxbsR7qeSfvYfFmAhnp3dbqYsW3U9MpZQ==", + "dev": true, + "dependencies": { + "application-config-path": "^0.1.0", + "load-json-file": "^6.2.0", + "write-json-file": "^4.2.0" + }, + "engines": { + "node": ">=8.3" + } + }, + "node_modules/application-config-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", + "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==", + "dev": true + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, "node_modules/are-docs-informative": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", @@ -1823,6 +2042,12 @@ "node": ">=8" } }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + }, "node_modules/babel-jest": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", @@ -1920,6 +2145,89 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "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/before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "dev": true + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dev": true, + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -1991,6 +2299,30 @@ "node-int64": "^0.4.0" } }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "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": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -2009,6 +2341,48 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -2104,6 +2478,22 @@ "tslib": "^2.0.3" } }, + "node_modules/changelog-parser": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/changelog-parser/-/changelog-parser-3.0.1.tgz", + "integrity": "sha512-1AEVJgnFEO4v5ukfEH/j9cr2Z39Y/GCieNi605azhufAolXF4vQAwZBY8BrUVRkvlI3gwe3i621/PIAW0zmmEQ==", + "dev": true, + "dependencies": { + "line-reader": "^0.2.4", + "remove-markdown": "^0.5.0" + }, + "bin": { + "changelog-parser": "bin/cli.js" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -2113,6 +2503,12 @@ "node": ">=10" } }, + "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/ci-info": { "version": "3.8.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", @@ -2155,6 +2551,51 @@ "node": ">=0.8.0" } }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", + "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -2169,10 +2610,40 @@ "node": ">=12" } }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "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/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clone-response/node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, "engines": { "iojs": ">= 1.0.0", @@ -2203,6 +2674,15 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, "node_modules/color2k": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", @@ -2239,6 +2719,41 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, + "node_modules/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/configstore/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, "node_modules/constant-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", @@ -2256,6 +2771,12 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", @@ -2276,6 +2797,15 @@ "node": ">= 8" } }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -2293,6 +2823,21 @@ } } }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", @@ -2323,6 +2868,39 @@ "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/defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "node_modules/deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true + }, + "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-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -2384,6 +2962,36 @@ "tslib": "^2.0.3" } }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", + "dev": true + }, + "node_modules/duplexify": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", + "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" + } + }, "node_modules/electron-to-chromium": { "version": "1.4.367", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.367.tgz", @@ -2408,6 +3016,15 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, "node_modules/entities": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", @@ -2438,6 +3055,15 @@ "node": ">=6" } }, + "node_modules/escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/escape-string-regexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", @@ -2963,6 +3589,20 @@ "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", "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", @@ -3033,6 +3673,30 @@ "bser": "2.1.1" } }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/figures/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/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -3083,6 +3747,21 @@ "node": "^10.12.0 || >=12.0.0" } }, + "node_modules/flat-cache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/flatted": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", @@ -3157,6 +3836,37 @@ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, + "node_modules/gauge": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-5.0.1.tgz", + "integrity": "sha512-CmykPMJGuNan/3S4kZOpvvPYSNqSHANiWnh9XcMU2pSjtBfF0XzZ2p1bFAxTbnFxyBuPxQYHhzwaoOmUdqzvxQ==", + "dev": true, + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^4.0.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/gauge/node_modules/signal-exit": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", + "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -3208,6 +3918,69 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/gh-release": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/gh-release/-/gh-release-7.0.2.tgz", + "integrity": "sha512-5gVe+BHFa9OtsjOa72hFRBsfsCIIMYbba35wtEJIkAzZjPXQkUmpLhyrIYYdouh0JRTNNwZ4sDD7eiUhE8T/IQ==", + "dev": true, + "dependencies": { + "@octokit/rest": "^19.0.5", + "changelog-parser": "^3.0.0", + "deep-extend": "^0.6.0", + "gauge": "^v5.0.0", + "gh-release-assets": "^2.0.0", + "ghauth": "^5.0.0", + "github-url-to-object": "^4.0.4", + "inquirer": "^8.0.0", + "shelljs": "^0.8.4", + "update-notifier": "^5.0.0", + "yargs": "^17.0.0" + }, + "bin": { + "gh-release": "bin/cli.js" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/gh-release-assets": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/gh-release-assets/-/gh-release-assets-2.0.1.tgz", + "integrity": "sha512-KrhmYIA/5oQdfEl9vQ2yF6DOM2QOAjpCOsNKFkc7X3dOTefSixttW0ysot3noQ+3XL8NdkdC7z+mqfePzIwexg==", + "dev": true, + "dependencies": { + "async": "^3.2.0", + "mime": "^3.0.0", + "progress-stream": "^2.0.0", + "pumpify": "^2.0.1", + "simple-get": "^4.0.0", + "util-extend": "^1.0.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/ghauth": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ghauth/-/ghauth-5.0.1.tgz", + "integrity": "sha512-WzgL12dczZX/VrvVTkoFAJLU3pb6PDT+TS60kLlaU51fuNEv6VoYpRXlnwIjkMIhqWead9+dLBEzj0E1ghYMkg==", + "dev": true, + "dependencies": { + "application-config": "^2.0.0", + "node-fetch": "^2.6.0", + "ora": "^4.0.5", + "read": "^1.0.7" + } + }, + "node_modules/github-url-to-object": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/github-url-to-object/-/github-url-to-object-4.0.6.tgz", + "integrity": "sha512-NaqbYHMUAlPcmWFdrAB7bcxrNIiiJWJe8s/2+iOc9vlcHlwHqSGrPk+Yi3nu6ebTwgsZEa7igz+NH2vEq3gYwQ==", + "dev": true, + "dependencies": { + "is-url": "^1.1.0" + } + }, "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -3240,6 +4013,30 @@ "node": ">=10.13.0" } }, + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "dev": true, + "dependencies": { + "ini": "2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -3269,6 +4066,61 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/got/node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/got/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/got/node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", @@ -3302,6 +4154,21 @@ "node": ">=8" } }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "node_modules/has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", @@ -3324,7 +4191,13 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "node_modules/human-signals": { + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/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==", @@ -3333,6 +4206,38 @@ "node": ">=10.17.0" } }, + "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/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "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/ignore": { "version": "5.2.4", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", @@ -3367,6 +4272,15 @@ "node": ">=4" } }, + "node_modules/import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -3429,6 +4343,80 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/inquirer/node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/inquirer/node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -3450,6 +4438,24 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-ci/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, "node_modules/is-core-module": { "version": "2.12.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", @@ -3501,6 +4507,43 @@ "node": ">=0.10.0" } }, + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "dev": true, + "dependencies": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -3510,6 +4553,15 @@ "node": ">=0.12.0" } }, + "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-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", @@ -3519,6 +4571,24 @@ "node": ">=8" } }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "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-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -3531,6 +4601,42 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-url": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", + "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", + "dev": true + }, + "node_modules/is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "dev": true + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -4262,6 +5368,12 @@ "node": ">=4" } }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "dev": true + }, "node_modules/json-parse-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", @@ -4310,6 +5422,15 @@ "graceful-fs": "^4.1.6" } }, + "node_modules/keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", @@ -4319,6 +5440,18 @@ "node": ">=6" } }, + "node_modules/latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "dev": true, + "dependencies": { + "package-json": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -4341,6 +5474,12 @@ "node": ">= 0.8.0" } }, + "node_modules/line-reader": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/line-reader/-/line-reader-0.2.4.tgz", + "integrity": "sha512-342xzyZZS9uTiKwHJcMacopVl/WjrMMCZS1Qg4Uhl/WBknWRrGFdKOIS1Kec6SaiTcZMtmuxWvvIbPXj/+FMjA==", + "dev": true + }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", @@ -4356,6 +5495,30 @@ "uc.micro": "^1.0.1" } }, + "node_modules/load-json-file": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", + "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.15", + "parse-json": "^5.0.0", + "strip-bom": "^4.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/load-json-file/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/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -4392,71 +5555,163 @@ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "node_modules/log-symbols": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", + "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", "dev": true, "dependencies": { - "tslib": "^2.0.3" + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=8" } }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "node_modules/log-symbols/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": { - "yallist": "^3.0.2" + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/log-symbols/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": { - "semver": "^6.0.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "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/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "node_modules/log-symbols/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": { - "tmpl": "1.0.5" + "color-name": "1.1.3" } }, - "node_modules/markdown-it": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", - "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", + "node_modules/log-symbols/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/log-symbols/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, - "dependencies": { - "argparse": "^2.0.1", - "entities": "~3.0.1", - "linkify-it": "^4.0.1", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" - }, - "bin": { - "markdown-it": "bin/markdown-it.js" + "engines": { + "node": ">=0.8.0" } }, - "node_modules/markdown-it/node_modules/argparse": { + "node_modules/log-symbols/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/log-symbols/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/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/markdown-it": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", + "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it/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==", @@ -4614,6 +5869,18 @@ "node": ">=8.6" } }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", @@ -4623,6 +5890,18 @@ "node": ">=6" } }, + "node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "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", @@ -4668,6 +5947,12 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -4690,6 +5975,26 @@ "tslib": "^2.0.3" } }, + "node_modules/node-fetch": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", + "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", @@ -4732,6 +6037,15 @@ "node": ">=0.10.0" } }, + "node_modules/normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -4785,6 +6099,59 @@ "node": ">= 0.8.0" } }, + "node_modules/ora": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz", + "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==", + "dev": true, + "dependencies": { + "chalk": "^3.0.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.2.0", + "is-interactive": "^1.0.0", + "log-symbols": "^3.0.0", + "mute-stream": "0.0.8", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "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/p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -4836,6 +6203,21 @@ "node": ">=6" } }, + "node_modules/package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "dev": true, + "dependencies": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -5038,6 +6420,15 @@ "node": ">= 0.8.0" } }, + "node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/prettier": { "version": "2.8.8", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", @@ -5091,6 +6482,22 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/progress-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-2.0.0.tgz", + "integrity": "sha512-xJwOWR46jcXUq6EH9yYyqp+I52skPySOeHfkxOZ2IY1AiBi/sFJhbhAKHoV3OTw/omQ45KTio9215dRJ2Yxd3Q==", + "dev": true, + "dependencies": { + "speedometer": "~1.0.0", + "through2": "~2.0.3" + } + }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", @@ -5104,6 +6511,27 @@ "node": ">= 6" } }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-2.0.1.tgz", + "integrity": "sha512-m7KOje7jZxrmutanlkS1daj1dS6z6BgslzOXmcSEpIlCxM3VJH7lG5QLeck/6hgF6F4crFf01UtQmNsJfweTAw==", + "dev": true, + "dependencies": { + "duplexify": "^4.1.1", + "inherits": "^2.0.3", + "pump": "^3.0.0" + } + }, "node_modules/punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", @@ -5113,6 +6541,18 @@ "node": ">=6" } }, + "node_modules/pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "dev": true, + "dependencies": { + "escape-goat": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/pure-rand": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz", @@ -5149,12 +6589,54 @@ } ] }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/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/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, + "node_modules/read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", + "dev": true, + "dependencies": { + "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", @@ -5205,6 +6687,32 @@ "node": ">=8" } }, + "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/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, "node_modules/regexp-tree": { "version": "0.1.27", "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", @@ -5214,6 +6722,30 @@ "regexp-tree": "bin/regexp-tree" } }, + "node_modules/registry-auth-token": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", + "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", + "dev": true, + "dependencies": { + "rc": "1.2.8" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "dependencies": { + "rc": "^1.2.8" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/regjsparser": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", @@ -5235,6 +6767,12 @@ "jsesc": "bin/jsesc" } }, + "node_modules/remove-markdown": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/remove-markdown/-/remove-markdown-0.5.0.tgz", + "integrity": "sha512-x917M80K97K5IN1L8lUvFehsfhR8cYjGQ/yAMRI9E7JIKivtl5Emo5iD13DhMr+VojzMCiYk8V2byNPwT/oapg==", + "dev": true + }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -5291,10 +6829,32 @@ "node": ">=10" } }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "dev": true, + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "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", @@ -5302,20 +6862,78 @@ } }, "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.0.tgz", + "integrity": "sha512-Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g==", "dev": true, "dependencies": { - "glob": "^7.1.3" + "glob": "^10.0.0" }, "bin": { - "rimraf": "bin.js" + "rimraf": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/rimraf/node_modules/glob": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", + "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "minipass": "^5.0.0", + "path-scurry": "^1.7.0" + }, + "bin": { + "glob": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/rimraf/node_modules/minimatch": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", + "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, "node_modules/run-con": { "version": "1.2.11", "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.11.tgz", @@ -5354,6 +6972,35 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "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": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", @@ -5363,6 +7010,12 @@ "regexp-tree": "~0.1.1" } }, + "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": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -5372,6 +7025,18 @@ "semver": "bin/semver.js" } }, + "node_modules/semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "dev": true, + "dependencies": { + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", @@ -5404,12 +7069,83 @@ "node": ">=8" } }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dev": true, + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, "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/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "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/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "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": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -5435,6 +7171,21 @@ "tslib": "^2.0.3" } }, + "node_modules/sort-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz", + "integrity": "sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==", + "dev": true, + "dependencies": { + "is-plain-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -5486,6 +7237,12 @@ "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", "dev": true }, + "node_modules/speedometer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz", + "integrity": "sha512-lgxErLl/7A5+vgIIXsh9MbeukOaCb2axgQ+bKCdIE+ibNT4XNYGNCR1qFEGq6F+YDASXK3Fh/c5FgtZchFolxw==", + "dev": true + }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", @@ -5504,6 +7261,21 @@ "node": ">=10" } }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "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-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", @@ -5652,6 +7424,52 @@ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, "node_modules/tinycolor2": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", @@ -5661,6 +7479,18 @@ "node": "*" } }, + "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/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -5676,6 +7506,15 @@ "node": ">=4" } }, + "node_modules/to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -5700,6 +7539,12 @@ "token-transformer": "index.js" } }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, "node_modules/ts-jest": { "version": "29.1.0", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", @@ -5879,6 +7724,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, "node_modules/typescript": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", @@ -5898,6 +7752,24 @@ "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", "dev": true }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universal-user-agent": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", + "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", + "dev": true + }, "node_modules/universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -5937,6 +7809,67 @@ "browserslist": ">= 4.21.0" } }, + "node_modules/update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "dev": true, + "dependencies": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/yeoman/update-notifier?sponsor=1" + } + }, + "node_modules/update-notifier/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/update-notifier/node_modules/semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/update-notifier/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/upper-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", @@ -5964,6 +7897,30 @@ "punycode": "^2.1.0" } }, + "node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dev": true, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/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/util-extend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", + "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", + "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", @@ -6009,6 +7966,31 @@ "makeerror": "1.0.12" } }, + "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/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -6024,6 +8006,27 @@ "node": ">= 8" } }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", @@ -6069,6 +8072,56 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/write-json-file": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-4.3.0.tgz", + "integrity": "sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==", + "dev": true, + "dependencies": { + "detect-indent": "^6.0.0", + "graceful-fs": "^4.1.15", + "is-plain-obj": "^2.0.0", + "make-dir": "^3.0.0", + "sort-keys": "^4.0.0", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": ">=8.3" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/write-json-file/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -6085,9 +8138,9 @@ "dev": true }, "node_modules/yargs": { - "version": "17.6.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", - "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", + "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", @@ -6982,24 +9035,148 @@ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "@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" + } + }, + "@octokit/auth-token": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.3.tgz", + "integrity": "sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA==", + "dev": true, + "requires": { + "@octokit/types": "^9.0.0" + } + }, + "@octokit/core": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.0.tgz", + "integrity": "sha512-AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg==", + "dev": true, + "requires": { + "@octokit/auth-token": "^3.0.0", + "@octokit/graphql": "^5.0.0", + "@octokit/request": "^6.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/endpoint": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.5.tgz", + "integrity": "sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA==", + "dev": true, + "requires": { + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/graphql": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.5.tgz", + "integrity": "sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ==", + "dev": true, + "requires": { + "@octokit/request": "^6.0.0", + "@octokit/types": "^9.0.0", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/openapi-types": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.1.0.tgz", + "integrity": "sha512-rnI26BAITDZTo5vqFOmA7oX4xRd18rO+gcK4MiTpJmsRMxAw0JmevNjPsjpry1bb9SVNo56P/0kbiyXXa4QluA==", + "dev": true + }, + "@octokit/plugin-paginate-rest": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.0.0.tgz", + "integrity": "sha512-Sq5VU1PfT6/JyuXPyt04KZNVsFOSBaYOAq2QRZUwzVlI10KFvcbUo8lR258AAQL1Et60b0WuVik+zOWKLuDZxw==", + "dev": true, + "requires": { + "@octokit/types": "^9.0.0" + } + }, + "@octokit/plugin-request-log": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", + "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", + "dev": true, + "requires": {} + }, + "@octokit/plugin-rest-endpoint-methods": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.0.1.tgz", + "integrity": "sha512-pnCaLwZBudK5xCdrR823xHGNgqOzRnJ/mpC/76YPpNP7DybdsJtP7mdOwh+wYZxK5jqeQuhu59ogMI4NRlBUvA==", + "dev": true, + "requires": { + "@octokit/types": "^9.0.0", + "deprecation": "^2.3.1" + } + }, + "@octokit/request": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-6.2.3.tgz", + "integrity": "sha512-TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA==", + "dev": true, + "requires": { + "@octokit/endpoint": "^7.0.0", + "@octokit/request-error": "^3.0.0", + "@octokit/types": "^9.0.0", + "is-plain-object": "^5.0.0", + "node-fetch": "^2.6.7", + "universal-user-agent": "^6.0.0" + } + }, + "@octokit/request-error": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz", + "integrity": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==", + "dev": true, + "requires": { + "@octokit/types": "^9.0.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + } + }, + "@octokit/rest": { + "version": "19.0.7", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.7.tgz", + "integrity": "sha512-HRtSfjrWmWVNp2uAkEpQnuGMJsu/+dBr47dRc5QVgsCbnIc1+GFEaoKBWkYG+zjrsHpSqcAElMio+n10c0b5JA==", + "dev": true, + "requires": { + "@octokit/core": "^4.1.0", + "@octokit/plugin-paginate-rest": "^6.0.0", + "@octokit/plugin-request-log": "^1.0.4", + "@octokit/plugin-rest-endpoint-methods": "^7.0.0" } }, - "@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==", + "@octokit/types": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.0.tgz", + "integrity": "sha512-xySzJG4noWrIBFyMu4lg4tu9vAgNg9S0aoLRONhAEz6ueyi1evBzb40HitIosaYS4XOexphG305IVcLrIX/30g==", "dev": true, "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "@octokit/openapi-types": "^17.1.0" } }, "@pkgjs/parseargs": { @@ -7015,6 +9192,12 @@ "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", "dev": true }, + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true + }, "@sinonjs/commons": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", @@ -7033,6 +9216,15 @@ "@sinonjs/commons": "^2.0.0" } }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "requires": { + "defer-to-connect": "^1.0.1" + } + }, "@tokens-studio/sd-transforms": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.2.tgz", @@ -7437,6 +9629,15 @@ "uri-js": "^4.2.2" } }, + "ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "requires": { + "string-width": "^4.1.0" + } + }, "ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -7471,6 +9672,29 @@ "picomatch": "^2.0.4" } }, + "application-config": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/application-config/-/application-config-2.0.0.tgz", + "integrity": "sha512-NC5/0guSZK3/UgUDfCk/riByXzqz0owL1L3r63JPSBzYk5QALrp3bLxbsR7qeSfvYfFmAhnp3dbqYsW3U9MpZQ==", + "dev": true, + "requires": { + "application-config-path": "^0.1.0", + "load-json-file": "^6.2.0", + "write-json-file": "^4.2.0" + } + }, + "application-config-path": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", + "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==", + "dev": true + }, + "aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, "are-docs-informative": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", @@ -7498,6 +9722,12 @@ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true }, + "async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + }, "babel-jest": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", @@ -7574,6 +9804,59 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dev": true, + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -7623,6 +9906,16 @@ "node-int64": "^0.4.0" } }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, "buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -7635,6 +9928,38 @@ "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", "dev": true }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + } + } + }, "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -7704,12 +10029,28 @@ "tslib": "^2.0.3" } }, + "changelog-parser": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/changelog-parser/-/changelog-parser-3.0.1.tgz", + "integrity": "sha512-1AEVJgnFEO4v5ukfEH/j9cr2Z39Y/GCieNi605azhufAolXF4vQAwZBY8BrUVRkvlI3gwe3i621/PIAW0zmmEQ==", + "dev": true, + "requires": { + "line-reader": "^0.2.4", + "remove-markdown": "^0.5.0" + } + }, "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==", "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 + }, "ci-info": { "version": "3.8.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", @@ -7739,6 +10080,33 @@ } } }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", + "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", + "dev": true + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, "cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -7750,6 +10118,29 @@ "wrap-ansi": "^7.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 + }, + "clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + }, + "dependencies": { + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + } + } + }, "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", @@ -7777,6 +10168,12 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true + }, "color2k": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", @@ -7807,6 +10204,40 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dev": true, + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + } + } + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, "constant-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", @@ -7824,6 +10255,12 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, "create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", @@ -7841,6 +10278,12 @@ "which": "^2.0.1" } }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true + }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -7850,6 +10293,15 @@ "ms": "2.1.2" } }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "requires": { + "mimic-response": "^3.1.0" + } + }, "dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", @@ -7874,6 +10326,33 @@ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "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" + } + }, + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true + }, + "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-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -7920,6 +10399,33 @@ "tslib": "^2.0.3" } }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "duplexer3": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", + "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", + "dev": true + }, + "duplexify": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", + "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", + "dev": true, + "requires": { + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.0" + } + }, "electron-to-chromium": { "version": "1.4.367", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.367.tgz", @@ -7938,6 +10444,15 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, "entities": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", @@ -7959,6 +10474,12 @@ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true }, + "escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "dev": true + }, "escape-string-regexp": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", @@ -8313,6 +10834,17 @@ "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", "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", @@ -8379,6 +10911,23 @@ "bser": "2.1.1" } }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + }, + "dependencies": { + "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 + } + } + }, "file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -8415,6 +10964,17 @@ "requires": { "flatted": "^3.1.0", "rimraf": "^3.0.2" + }, + "dependencies": { + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } } }, "flatted": { @@ -8471,6 +11031,30 @@ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, + "gauge": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-5.0.1.tgz", + "integrity": "sha512-CmykPMJGuNan/3S4kZOpvvPYSNqSHANiWnh9XcMU2pSjtBfF0XzZ2p1bFAxTbnFxyBuPxQYHhzwaoOmUdqzvxQ==", + "dev": true, + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^4.0.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "dependencies": { + "signal-exit": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", + "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", + "dev": true + } + } + }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -8501,6 +11085,60 @@ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, + "gh-release": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/gh-release/-/gh-release-7.0.2.tgz", + "integrity": "sha512-5gVe+BHFa9OtsjOa72hFRBsfsCIIMYbba35wtEJIkAzZjPXQkUmpLhyrIYYdouh0JRTNNwZ4sDD7eiUhE8T/IQ==", + "dev": true, + "requires": { + "@octokit/rest": "^19.0.5", + "changelog-parser": "^3.0.0", + "deep-extend": "^0.6.0", + "gauge": "^v5.0.0", + "gh-release-assets": "^2.0.0", + "ghauth": "^5.0.0", + "github-url-to-object": "^4.0.4", + "inquirer": "^8.0.0", + "shelljs": "^0.8.4", + "update-notifier": "^5.0.0", + "yargs": "^17.0.0" + } + }, + "gh-release-assets": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/gh-release-assets/-/gh-release-assets-2.0.1.tgz", + "integrity": "sha512-KrhmYIA/5oQdfEl9vQ2yF6DOM2QOAjpCOsNKFkc7X3dOTefSixttW0ysot3noQ+3XL8NdkdC7z+mqfePzIwexg==", + "dev": true, + "requires": { + "async": "^3.2.0", + "mime": "^3.0.0", + "progress-stream": "^2.0.0", + "pumpify": "^2.0.1", + "simple-get": "^4.0.0", + "util-extend": "^1.0.1" + } + }, + "ghauth": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ghauth/-/ghauth-5.0.1.tgz", + "integrity": "sha512-WzgL12dczZX/VrvVTkoFAJLU3pb6PDT+TS60kLlaU51fuNEv6VoYpRXlnwIjkMIhqWead9+dLBEzj0E1ghYMkg==", + "dev": true, + "requires": { + "application-config": "^2.0.0", + "node-fetch": "^2.6.0", + "ora": "^4.0.5", + "read": "^1.0.7" + } + }, + "github-url-to-object": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/github-url-to-object/-/github-url-to-object-4.0.6.tgz", + "integrity": "sha512-NaqbYHMUAlPcmWFdrAB7bcxrNIiiJWJe8s/2+iOc9vlcHlwHqSGrPk+Yi3nu6ebTwgsZEa7igz+NH2vEq3gYwQ==", + "dev": true, + "requires": { + "is-url": "^1.1.0" + } + }, "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -8524,6 +11162,23 @@ "is-glob": "^4.0.3" } }, + "global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "dev": true, + "requires": { + "ini": "2.0.0" + }, + "dependencies": { + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true + } + } + }, "globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -8544,6 +11199,51 @@ "slash": "^3.0.0" } }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "dependencies": { + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + } + } + }, "graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", @@ -8571,6 +11271,18 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "dev": true + }, "header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", @@ -8593,12 +11305,33 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, + "http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, "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 }, + "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" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, "ignore": { "version": "5.2.4", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", @@ -8623,6 +11356,12 @@ } } }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", + "dev": true + }, "import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -8667,6 +11406,64 @@ "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", "dev": true }, + "inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + } + } + } + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -8682,6 +11479,23 @@ "builtin-modules": "^3.3.0" } }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": { + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + } + } + }, "is-core-module": { "version": "2.12.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", @@ -8718,24 +11532,94 @@ "is-extglob": "^2.1.1" } }, + "is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "dev": true, + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", + "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-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, "is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "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-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-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "is-url": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", + "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", + "dev": true + }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -9292,6 +12176,12 @@ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "dev": true + }, "json-parse-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", @@ -9332,12 +12222,30 @@ "universalify": "^2.0.0" } }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "requires": { + "json-buffer": "3.0.0" + } + }, "kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "dev": true, + "requires": { + "package-json": "^6.3.0" + } + }, "leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -9354,6 +12262,12 @@ "type-check": "~0.4.0" } }, + "line-reader": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/line-reader/-/line-reader-0.2.4.tgz", + "integrity": "sha512-342xzyZZS9uTiKwHJcMacopVl/WjrMMCZS1Qg4Uhl/WBknWRrGFdKOIS1Kec6SaiTcZMtmuxWvvIbPXj/+FMjA==", + "dev": true + }, "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", @@ -9369,6 +12283,26 @@ "uc.micro": "^1.0.1" } }, + "load-json-file": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", + "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.15", + "parse-json": "^5.0.0", + "strip-bom": "^4.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 + } + } + }, "locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -9402,6 +12336,73 @@ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, + "log-symbols": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", + "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", + "dev": true, + "requires": { + "chalk": "^2.4.2" + }, + "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" + } + }, + "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" + } + }, + "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 + }, + "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 + }, + "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 + }, + "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" + } + } + } + }, "lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -9411,6 +12412,12 @@ "tslib": "^2.0.3" } }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, "lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", @@ -9580,12 +12587,24 @@ "picomatch": "^2.3.1" } }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true + }, "mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true + }, "min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", @@ -9619,6 +12638,12 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -9641,6 +12666,15 @@ "tslib": "^2.0.3" } }, + "node-fetch": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", + "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + } + }, "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", @@ -9679,6 +12713,12 @@ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true }, + "normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", + "dev": true + }, "npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -9720,6 +12760,46 @@ "word-wrap": "^1.2.3" } }, + "ora": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz", + "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==", + "dev": true, + "requires": { + "chalk": "^3.0.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.2.0", + "is-interactive": "^1.0.0", + "log-symbols": "^3.0.0", + "mute-stream": "0.0.8", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "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 + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "dev": true + }, "p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -9755,6 +12835,18 @@ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "dev": true, + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + } + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -9908,6 +13000,12 @@ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", + "dev": true + }, "prettier": { "version": "2.8.8", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", @@ -9942,6 +13040,22 @@ } } }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-2.0.0.tgz", + "integrity": "sha512-xJwOWR46jcXUq6EH9yYyqp+I52skPySOeHfkxOZ2IY1AiBi/sFJhbhAKHoV3OTw/omQ45KTio9215dRJ2Yxd3Q==", + "dev": true, + "requires": { + "speedometer": "~1.0.0", + "through2": "~2.0.3" + } + }, "prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", @@ -9952,12 +13066,42 @@ "sisteransi": "^1.0.5" } }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-2.0.1.tgz", + "integrity": "sha512-m7KOje7jZxrmutanlkS1daj1dS6z6BgslzOXmcSEpIlCxM3VJH7lG5QLeck/6hgF6F4crFf01UtQmNsJfweTAw==", + "dev": true, + "requires": { + "duplexify": "^4.1.1", + "inherits": "^2.0.3", + "pump": "^3.0.0" + } + }, "punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", "dev": true }, + "pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "dev": true, + "requires": { + "escape-goat": "^2.0.0" + } + }, "pure-rand": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz", @@ -9970,12 +13114,47 @@ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true + } + } + }, "react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, + "read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", + "dev": true, + "requires": { + "mute-stream": "~0.0.4" + } + }, "read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", @@ -10015,12 +13194,50 @@ } } }, + "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" + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, "regexp-tree": { "version": "0.1.27", "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", "dev": true }, + "registry-auth-token": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", + "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", + "dev": true, + "requires": { + "rc": "1.2.8" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dev": true, + "requires": { + "rc": "^1.2.8" + } + }, "regjsparser": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", @@ -10038,6 +13255,12 @@ } } }, + "remove-markdown": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/remove-markdown/-/remove-markdown-0.5.0.tgz", + "integrity": "sha512-x917M80K97K5IN1L8lUvFehsfhR8cYjGQ/yAMRI9E7JIKivtl5Emo5iD13DhMr+VojzMCiYk8V2byNPwT/oapg==", + "dev": true + }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -10076,6 +13299,25 @@ "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", + "dev": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "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", @@ -10083,14 +13325,53 @@ "dev": true }, "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.0.tgz", + "integrity": "sha512-Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g==", "dev": true, "requires": { - "glob": "^7.1.3" + "glob": "^10.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", + "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.0.3", + "minimatch": "^9.0.0", + "minipass": "^5.0.0", + "path-scurry": "^1.7.0" + } + }, + "minimatch": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", + "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } } }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, "run-con": { "version": "1.2.11", "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.11.tgz", @@ -10112,6 +13393,21 @@ "queue-microtask": "^1.2.2" } }, + "rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + } + }, + "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": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", @@ -10121,12 +13417,27 @@ "regexp-tree": "~0.1.1" } }, + "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": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, + "semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "dev": true, + "requires": { + "semver": "^6.3.0" + } + }, "sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", @@ -10153,12 +13464,46 @@ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, + "shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true + }, + "shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dev": true, + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, "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 }, + "simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "dev": true + }, + "simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "dev": true, + "requires": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, "sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -10181,6 +13526,15 @@ "tslib": "^2.0.3" } }, + "sort-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz", + "integrity": "sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==", + "dev": true, + "requires": { + "is-plain-obj": "^2.0.0" + } + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -10229,6 +13583,12 @@ "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", "dev": true }, + "speedometer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz", + "integrity": "sha512-lgxErLl/7A5+vgIIXsh9MbeukOaCb2axgQ+bKCdIE+ibNT4XNYGNCR1qFEGq6F+YDASXK3Fh/c5FgtZchFolxw==", + "dev": true + }, "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", @@ -10244,6 +13604,21 @@ "escape-string-regexp": "^2.0.0" } }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "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-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", @@ -10350,12 +13725,69 @@ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "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": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "tinycolor2": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", "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" + } + }, "tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -10368,6 +13800,12 @@ "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", "dev": true }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true + }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -10386,6 +13824,12 @@ "yargs": "^17.4.1" } }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, "ts-jest": { "version": "29.1.0", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", @@ -10493,6 +13937,15 @@ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, "typescript": { "version": "5.0.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", @@ -10505,6 +13958,21 @@ "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", "dev": true }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "universal-user-agent": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", + "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", + "dev": true + }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -10521,6 +13989,54 @@ "picocolors": "^1.0.0" } }, + "update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "dev": true, + "requires": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "dependencies": { + "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" + } + }, + "semver": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, "upper-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", @@ -10548,6 +14064,27 @@ "punycode": "^2.1.0" } }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "dev": true, + "requires": { + "prepend-http": "^2.0.0" + } + }, + "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 + }, + "util-extend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", + "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", + "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", @@ -10592,6 +14129,31 @@ "makeerror": "1.0.12" } }, + "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" + } + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -10601,6 +14163,24 @@ "isexe": "^2.0.0" } }, + "wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "requires": { + "string-width": "^4.0.0" + } + }, "word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", @@ -10634,6 +14214,46 @@ "signal-exit": "^3.0.7" } }, + "write-json-file": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-4.3.0.tgz", + "integrity": "sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==", + "dev": true, + "requires": { + "detect-indent": "^6.0.0", + "graceful-fs": "^4.1.15", + "is-plain-obj": "^2.0.0", + "make-dir": "^3.0.0", + "sort-keys": "^4.0.0", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + } + } + }, + "xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, "y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -10647,9 +14267,9 @@ "dev": true }, "yargs": { - "version": "17.6.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", - "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", + "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", diff --git a/package.json b/package.json index a0c27febab0..2e2c0659d5c 100644 --- a/package.json +++ b/package.json @@ -73,9 +73,26 @@ "lint:prettier": "prettier --write .", "lint:staged": "lint-staged", "lint": "npm run lint:eslint && npm run lint:markdown && npm run lint:prettier", + "prepare": "husky install", + "prepublishOnly": "ts-node --esm ./support/prepublish.ts", "release": "echo 'release is still TBD. Please message Ali Stump for more information.", - "test:dev": "jest --watch", - "test": "jest" + "release:next": "npm ci && npm test && npm run util:deploy-next", + "release:prepare": "npm run util:is-working-tree-clean && npm ci && npm test && standard-version && npm run build", + "release:publish": "npm run util:test-types && npm run util:push-tags && npm publish && ts-node --esm ./support/releaseToGitHub.ts", + "test": "jest", + "util:clean-tested-build": "npm ci && npm test && npm run build", + "util:deploy-next": "npm run util:prep-next && npm run util:publish-next", + "util:deploy-next-from-ci": "ts-node --esm support/deployNextFromCI.ts", + "util:is-next-deployable": "ts-node --esm support/isNextDeployable.ts", + "util:patch": "npm run util:patch-esm-resolution && npm run util:patch-tree-shaking", + "util:patch-esm-resolution": "ts-node --esm support/patchESMResolution.ts", + "util:patch-tree-shaking": "ts-node --esm support/patchTreeShaking.ts", + "util:prep-next": "npm run util:is-working-tree-clean && standard-version --prerelease next && npm run build", + "util:publish-next": "npm run util:test-types && npm publish --tag next && npm run util:push-tags", + "util:check-squash-mergeable-branch": "ts-node --esm support/checkSquashMergeableBranch.ts", + "util:push-tags": "git push --atomic origin master \"$(git describe --tags --abbrev=0)\"", + "util:test-types": "tsc --esModuleInterop dist/types/**/*.d.ts dist/components/*.d.ts && ! grep -rnw 'dist/types' -e ' { + return runGit("rev-parse", branch); + } + + async function mostRecentTag(branch: string): Promise { + return runGit("describe", "--tags", `--abbrev=0 ${branch}`); + } + + async function runGit(command: string, ...args: string[]): Promise { + return (await exec(`git ${command} ${args.join(" ")}`, { encoding: "utf-8" })).stdout.trim(); + } + + try { + await isNextDeployable(); + } catch (error) { + console.log( + `An error occurred during deployment ❌: +${error}` + ); + process.exit(1); + } +})(); diff --git a/support/prepReleaseCommit.ts b/support/prepReleaseCommit.ts new file mode 100644 index 00000000000..beb7379cc41 --- /dev/null +++ b/support/prepReleaseCommit.ts @@ -0,0 +1,162 @@ +(async function prepReleaseCommit(): Promise { + const childProcess = await import("child_process"); + const { promisify } = await import("util"); + const { promises: fs } = await import("fs"); + const { default: semver } = await import("semver"); + const { dirname, normalize } = await import("path"); + const prettier = await import("prettier"); + const { quote } = await import("shell-quote"); + const { fileURLToPath } = await import("url"); + const exec = promisify(childProcess.exec); + + const header = `# Changelog\n\nThis document maintains a list of released versions and changes introduced by them.\nThis project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)\n\n`; + const unreleasedSectionTokenStart = ""; + const unreleasedSectionTokenEnd = ""; + const __filename = fileURLToPath(import.meta.url); + const __dirname = dirname(__filename); + const changelogPath = quote([normalize(`${__dirname}/../CHANGELOG.md`)]); + const readmePath = quote([normalize(`${__dirname}/../README.md`)]); + const packagePath = quote([normalize(`${__dirname}/../package.json`)]); + + // git sanity checks to prevent unapproved changes from making it into a release + if ((await exec("git rev-parse --abbrev-ref HEAD")).stdout.trim() !== "master") { + throw new Error("The master branch must be checked out before releasing."); + } + if ( + (await exec("git rev-parse master")).stdout.trim() !== (await exec("git rev-parse origin/master")).stdout.trim() + ) { + throw new Error("The master branch must be in sync with origin before releasing."); + } + + // deepen the history when fetching tags due to shallow clone + await exec("git fetch --deepen=250 --tags"); + + const prereleaseVersionPattern = /-next\.\d+$/; + + const currentLatestVersion = (await exec("npm view @esri/calcite-design-tokens dist-tags.latest")).stdout.trim(); + const currentNextVersion = (await exec("npm view @esri/calcite-design-tokens dist-tags.next")).stdout.trim(); + const releaseVersion = JSON.parse(await fs.readFile(packagePath, "utf8"))?.version; + const next = prereleaseVersionPattern.test(releaseVersion); + + if ( + !semver.valid(releaseVersion) || + (!next && semver.gte(currentLatestVersion, releaseVersion)) || + (next && semver.gte(currentNextVersion, releaseVersion)) + ) { + throw new Error("Version was not incremented correctly"); + } + + const baseErrorMessage = "an error occurred generating the changelog"; + + const changelogGenerationErrorMessage = `${baseErrorMessage} (releasing as: ${releaseVersion})`; + + try { + if (next) { + await appendUnreleasedNotesToChangelog(); + } else { + await convertUnreleasedChangelogContent(releaseVersion); + await updateReadmeCdnUrls(releaseVersion); + await exec(`git add ${readmePath}`); + } + await exec(`git add ${changelogPath}`); + } catch (error) { + console.log(changelogGenerationErrorMessage); + process.exitCode = 1; + } + + async function convertUnreleasedChangelogContent(version: string): Promise { + const changelogContent: string = await fs.readFile(changelogPath, { encoding: "utf8" }); + const date = new Date(); + const adjustedDate = new Date(date.getTime() - date.getTimezoneOffset() * 60 * 1000).toISOString().split("T")[0]; + const versionHeader = `## [v${version}](https://github.com/Esri/calcite-design-tokens/compare/v${currentLatestVersion}...v${version}) (${adjustedDate})`; + const unreleasedSectionPatternStart = new RegExp(`${unreleasedSectionTokenStart}.*## Unreleased`, "s"); + const updatedChangelogContent = `${header}${versionHeader}\n${changelogContent + .replace(header, "") + .replace(unreleasedSectionPatternStart, "") + .replace(unreleasedSectionTokenEnd, "")}`; + await fs.writeFile(changelogPath, updatedChangelogContent); + } + + async function appendUnreleasedNotesToChangelog(): Promise { + let changelogContent: string = await fs.readFile(changelogPath, { encoding: "utf8" }); + + const needsUnreleasedSectionTokens = !changelogContent.includes(unreleasedSectionTokenStart); + + if (needsUnreleasedSectionTokens) { + changelogContent = changelogContent.replace( + header, + `${header}\n${unreleasedSectionTokenStart}${unreleasedSectionTokenEnd}\n` + ); + } + + const unreleasedSectionPattern = new RegExp( + `(${unreleasedSectionTokenStart})(.*)(${unreleasedSectionTokenEnd})`, + "s" + ); + const unreleasedSectionContent = await getUnreleasedChangelogContents(); + const unreleasedHeaderPattern = /## Unreleased \(\d{4}-\d{2}-\d{2}\)/; + const hasUnreleasedContent = unreleasedSectionContent.replace(unreleasedHeaderPattern, "").trim().length > 0; + + if (hasUnreleasedContent) { + const getChangelogSection = (changes: string, startPattern: string, endPattern: string): string => { + if (!startPattern || !endPattern || !changes) { + return ""; + } + const match = changes.match(new RegExp(`${startPattern}(.*?)${endPattern}`, "s")); + return match && match.length > 1 ? match[1] : ""; + }; + + const combineUnreleasedChangelogContent = (existingChanges: string, newChanges: string): string => + ["### ⚠ BREAKING CHANGES", "### Features", "### Bug Fixes", "### Reverts"] + .map((sectionHeader) => { + const newSection = getChangelogSection(newChanges, sectionHeader, "##"); + const existingSection = getChangelogSection(existingChanges, sectionHeader, "##"); + return `${newSection || existingSection ? sectionHeader : ""}\n${newSection}\n${existingSection}`; + }) + .join(""); + + const existingUnreleasedSectionContent = getChangelogSection( + changelogContent, + unreleasedSectionTokenStart, + unreleasedSectionTokenEnd + ); + const combinedUnreleasedContent = combineUnreleasedChangelogContent( + // append the endPattern used for determining sections + `${existingUnreleasedSectionContent}\n##`, + `${unreleasedSectionContent}\n##` + ); + + changelogContent = changelogContent.replace( + unreleasedSectionPattern, + `$1\n## Unreleased\n${combinedUnreleasedContent}\n$3` + ); + } + + changelogContent = prettier.format(changelogContent, { parser: "markdown" }); + + await fs.writeFile(changelogPath, changelogContent); + } + + async function getUnreleasedChangelogContents(): Promise { + // invoking this way since we want the CLI module behavior, which doesn't provide a way to programmatically use it + return ( + await exec( + "npx conventional-changelog --release-count 1 --output-unreleased --preset conventionalcommits --context support/.unreleased-changelog-context.json", + { encoding: "utf-8" } + ) + ).stdout.trim(); + } + + async function updateReadmeCdnUrls(version: string): Promise { + const scriptTagPattern = /(<\/script>)/m; + const linkTagPattern = /()/m; + const baseCdnUrl = `https://cdn.jsdelivr.net/npm/@esri/calcite-design-tokens@${version}/dist/calcite/calcite.`; + + const readmeContent: string = await fs.readFile(readmePath, { encoding: "utf8" }); + const updatedReadmeContent = readmeContent + .replace(scriptTagPattern, `$1${baseCdnUrl}esm.js$2`) + .replace(linkTagPattern, `$1${baseCdnUrl}css$2`); + + await fs.writeFile(readmePath, updatedReadmeContent); + } +})(); diff --git a/support/prepublish.ts b/support/prepublish.ts new file mode 100644 index 00000000000..18fa98db13b --- /dev/null +++ b/support/prepublish.ts @@ -0,0 +1,21 @@ +import chalk from "chalk"; + +(async function () { + const childProcess = await import("child_process"); + const branch = childProcess.execSync("git rev-parse --abbrev-ref HEAD"); + + if (branch.toString().trim() === "master") { + process.exit(); + } else { + const message = chalk.red( + `Error: ${chalk.white( + `You may only run ${chalk.green("npm publish")} from the ${chalk.yellow( + "master" + )} branch. You are on ${chalk.yellow(branch)}.` + )}` + ); + + console.error(message); + process.exit(1); + } +})(); diff --git a/support/releaseToGitHub.ts b/support/releaseToGitHub.ts new file mode 100644 index 00000000000..fcdae84c5cb --- /dev/null +++ b/support/releaseToGitHub.ts @@ -0,0 +1,29 @@ +import rimraf from "rimraf"; + +(async function () { + const childProcess = await import("child_process"); + const { promisify } = await import("util"); + const { default: githubRelease } = await import("gh-release"); + const exec = promisify(childProcess.exec); + + const packageFileName = (await exec("npm pack", { encoding: "utf-8" })).stdout.trim(); + const packageScope = "esri-"; + + const options = { + assets: [ + { + name: packageFileName.replace(packageScope, ""), + path: packageFileName + } + ], + auth: { + token: process.env.GH_RELEASE_GITHUB_API_TOKEN + }, + yes: true // skips prompt + }; + + promisify(githubRelease)(options) + .then(() => console.info("Released on GitHub! 🎉")) + .catch((error) => console.error("Could not create GitHub release", error)) + .then(() => rimraf.sync(packageFileName)); +})(); From bc043d5c43f1bd4dbd20c6b0ef25cbc1634e204e Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 10:10:17 -0700 Subject: [PATCH 650/696] chore(release): 1.0.0-beta.0 --- CHANGELOG.md | 11 ++++++++--- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d013ff92fa..56ca4035239 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog -All notable changes to this project will be documented in this file. +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.0-beta.0](https://github.com/Esri/calcite-styles/compare/v0.1.0...v1.0.0-beta.0) (2023-05-04) + + +### Features + +* add json platform ([4f8ee9d](https://github.com/Esri/calcite-styles/commit/4f8ee9d50361cf1dc19b0feeba5cd0e879bba4b3)) +* add scss platform ([5624b4e](https://github.com/Esri/calcite-styles/commit/5624b4e0f59171a57b49a4ce48cab996d981e54a)) diff --git a/package-lock.json b/package-lock.json index bf2c8b7a764..55a23343e4c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@esri/calcite-design-tokens", - "version": "0.1.0", + "version": "1.0.0-beta.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@esri/calcite-design-tokens", - "version": "0.1.0", + "version": "1.0.0-beta.0", "license": "SEE LICENSE IN README.md", "devDependencies": { "@tokens-studio/sd-transforms": "^0.8.2", diff --git a/package.json b/package.json index 2e2c0659d5c..6002641f7ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-design-tokens", - "version": "0.1.0", + "version": "1.0.0-beta.0", "description": "Esri's Calcite Design System Tokens", "homepage": "https://github.com/Esri/calcite-design-tokens", "keywords": [ From 9401000d0050472bb7269b08ca77c360097320a8 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 10:22:06 -0700 Subject: [PATCH 651/696] chore: fix dependencies --- .npmignore | 11 +- package-lock.json | 2583 +++++++++-------- package.json | 2 +- .../parse/expandComposites.ts | 2 +- tsconfig.prod.json | 2 +- 5 files changed, 1306 insertions(+), 1294 deletions(-) diff --git a/.npmignore b/.npmignore index 9b99bf20faa..1dd6078249b 100644 --- a/.npmignore +++ b/.npmignore @@ -11,13 +11,18 @@ node_modules # Pre-build Folders tokens +tools +support # Documentation CONTRIBUTING.md # Configurations .editorconfig +.eslintrc.json .gitignore -config.bak.json -config.json - +.lintstagedrc.json +.prettierignore +.prettierrc +jest.config.json +tsconfig* diff --git a/package-lock.json b/package-lock.json index 55a23343e4c..ebbb49c37ea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21,8 +21,8 @@ "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-unicorn": "^46.0.0", "gh-release": "^7.0.2", + "husky": "^8.0.3", "jest": "^29.5.0", - "lodash-es": "^4.17.21", "markdownlint-cli": "^0.34.0", "prettier": "^2.8.8", "rimraf": "^5.0.0", @@ -62,30 +62,30 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.4.tgz", - "integrity": "sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==", + "version": "7.21.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz", + "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", - "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", + "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helpers": "^7.21.0", - "@babel/parser": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-compilation-targets": "^7.21.5", + "@babel/helper-module-transforms": "^7.21.5", + "@babel/helpers": "^7.21.5", + "@babel/parser": "^7.21.8", "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.4", - "@babel/types": "^7.21.4", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -106,13 +106,22 @@ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/generator": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", - "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", + "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", "dev": true, "dependencies": { - "@babel/types": "^7.21.4", + "@babel/types": "^7.21.5", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -121,13 +130,25 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/generator/node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz", - "integrity": "sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz", + "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.21.4", + "@babel/compat-data": "^7.21.5", "@babel/helper-validator-option": "^7.21.0", "browserslist": "^4.21.3", "lru-cache": "^5.1.1", @@ -140,10 +161,19 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz", + "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==", "dev": true, "engines": { "node": ">=6.9.0" @@ -187,40 +217,40 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", - "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz", + "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-environment-visitor": "^7.21.5", + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-simple-access": "^7.21.5", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.19.1", "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.2", - "@babel/types": "^7.21.2" + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz", + "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", + "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", "dev": true, "dependencies": { - "@babel/types": "^7.20.2" + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -239,9 +269,9 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", + "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", "dev": true, "engines": { "node": ">=6.9.0" @@ -266,14 +296,14 @@ } }, "node_modules/@babel/helpers": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz", - "integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", + "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", "dev": true, "dependencies": { "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.0", - "@babel/types": "^7.21.0" + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5" }, "engines": { "node": ">=6.9.0" @@ -365,9 +395,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.4.tgz", - "integrity": "sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==", + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", + "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -568,19 +598,19 @@ } }, "node_modules/@babel/traverse": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.4.tgz", - "integrity": "sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", + "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", "dev": true, "dependencies": { "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-environment-visitor": "^7.18.9", + "@babel/generator": "^7.21.5", + "@babel/helper-environment-visitor": "^7.21.5", "@babel/helper-function-name": "^7.21.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.4", - "@babel/types": "^7.21.4", + "@babel/parser": "^7.21.5", + "@babel/types": "^7.21.5", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -588,13 +618,22 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/types": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.4.tgz", - "integrity": "sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", + "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-string-parser": "^7.21.5", "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" }, @@ -691,51 +730,6 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/@eslint/eslintrc/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/@eslint/eslintrc/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/eslintrc/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/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@eslint/js": { "version": "8.39.0", "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz", @@ -778,6 +772,102 @@ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/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/@isaacs/cliui/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/@isaacs/cliui/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/@isaacs/cliui/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/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/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/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -794,6 +884,89 @@ "node": ">=8" } }, + "node_modules/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/load-nyc-config/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/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", @@ -1385,9 +1558,9 @@ } }, "node_modules/@tokens-studio/sd-transforms": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.2.tgz", - "integrity": "sha512-X++MFWn3NaLOgmN1cHSW41ER9Xq8w8ioCM8+K2OjXYbPWKdPI18zFQf9ZxGcKpz/AxCs5zV2v/ZdvX5V3IfPSA==", + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.5.tgz", + "integrity": "sha512-fqojhdPuELoNBFlo3LsUmEVnvGAiczyF8R94OIKhjcRRoNGvFKEAFETxb61Nn4SFT+nRXLQ0D339xlD4BVjhEQ==", "dev": true, "dependencies": { "@tokens-studio/types": "^0.2.1", @@ -1402,9 +1575,9 @@ } }, "node_modules/@tokens-studio/types": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", - "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.2.tgz", + "integrity": "sha512-M4vgkDMZLQU/tlud9glZyAGYzjEh7qHoqC6tCDBFsA+qhdRPvBCs5J43XIr/YLFHxI1Zj0Qy0rWAxkCuv9JThw==", "dev": true }, "node_modules/@tsconfig/node10": { @@ -1464,9 +1637,9 @@ } }, "node_modules/@types/babel__traverse": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", - "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", + "version": "7.18.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz", + "integrity": "sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==", "dev": true, "dependencies": { "@babel/types": "^7.3.0" @@ -1506,9 +1679,9 @@ } }, "node_modules/@types/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==", + "version": "29.5.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.1.tgz", + "integrity": "sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ==", "dev": true, "dependencies": { "expect": "^29.0.0", @@ -1522,9 +1695,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "18.15.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", - "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", + "version": "18.16.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.3.tgz", + "integrity": "sha512-OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q==", "dev": true }, "node_modules/@types/normalize-package-data": { @@ -1600,39 +1773,6 @@ } } }, - "node_modules/@typescript-eslint/eslint-plugin/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/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/eslint-plugin/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/@typescript-eslint/parser": { "version": "5.59.2", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.2.tgz", @@ -1745,39 +1885,6 @@ } } }, - "node_modules/@typescript-eslint/typescript-estree/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/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/typescript-estree/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/@typescript-eslint/utils": { "version": "5.59.2", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.2.tgz", @@ -1804,61 +1911,6 @@ "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/@typescript-eslint/utils/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/@typescript-eslint/utils/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/utils/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/@typescript-eslint/visitor-keys": { "version": "5.59.2", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz", @@ -1946,6 +1998,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -2025,13 +2089,10 @@ "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" - } + "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/array-union": { "version": "2.1.0", @@ -2216,18 +2277,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/boxen/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -2412,9 +2461,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001480", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001480.tgz", - "integrity": "sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ==", + "version": "1.0.30001482", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz", + "integrity": "sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==", "dev": true, "funding": [ { @@ -2696,12 +2745,12 @@ "dev": true }, "node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true, "engines": { - "node": ">= 12" + "node": ">=14" } }, "node_modules/comment-parser": { @@ -2992,10 +3041,16 @@ "stream-shift": "^1.0.0" } }, + "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/electron-to-chromium": { - "version": "1.4.367", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.367.tgz", - "integrity": "sha512-mNuDxb+HpLhPGUKrg0hSxbTjHWw8EziwkwlJNkFUj3W60ypigLDRVz04vU+VRsJPi8Gub+FDhYUpuTm9xiEwRQ==", + "version": "1.4.382", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.382.tgz", + "integrity": "sha512-czMavlW52VIPgutbVL9JnZIZuFijzsG1ww/1z2Otu1r1q+9Qe2bTsH3My3sZarlvwyqHM6+mnZfEnt2Vr4dsIg==", "dev": true }, "node_modules/emittery": { @@ -3065,12 +3120,15 @@ } }, "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==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint": { @@ -3173,294 +3231,123 @@ "dev": true, "dependencies": { "@es-joy/jsdoccomment": "~0.37.1", - "are-docs-informative": "^0.0.2", - "comment-parser": "1.3.1", - "debug": "^4.3.4", - "escape-string-regexp": "^4.0.0", - "esquery": "^1.5.0", - "semver": "^7.5.0", - "spdx-expression-parse": "^3.0.1" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - } - }, - "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint-plugin-jsdoc/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/eslint-plugin-jsdoc/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint-plugin-jsdoc/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/eslint-plugin-prettier": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", - "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", - "dev": true, - "dependencies": { - "prettier-linter-helpers": "^1.0.0" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "eslint": ">=7.28.0", - "prettier": ">=2.0.0" - }, - "peerDependenciesMeta": { - "eslint-config-prettier": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-unicorn": { - "version": "46.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", - "integrity": "sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.19.1", - "@eslint-community/eslint-utils": "^4.1.2", - "ci-info": "^3.6.1", - "clean-regexp": "^1.0.0", - "esquery": "^1.4.0", - "indent-string": "^4.0.0", - "is-builtin-module": "^3.2.0", - "jsesc": "^3.0.2", - "lodash": "^4.17.21", - "pluralize": "^8.0.0", - "read-pkg-up": "^7.0.1", - "regexp-tree": "^0.1.24", - "regjsparser": "^0.9.1", - "safe-regex": "^2.1.1", - "semver": "^7.3.8", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=14.18" - }, - "funding": { - "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" - }, - "peerDependencies": { - "eslint": ">=8.28.0" - } - }, - "node_modules/eslint-plugin-unicorn/node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/eslint-plugin-unicorn/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/eslint-plugin-unicorn/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint-plugin-unicorn/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/eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", - "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/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/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, + "are-docs-informative": "^0.0.2", + "comment-parser": "1.3.1", + "debug": "^4.3.4", + "escape-string-regexp": "^4.0.0", + "esquery": "^1.5.0", + "semver": "^7.5.0", + "spdx-expression-parse": "^3.0.1" + }, "engines": { - "node": ">=10" + "node": ">=16" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" } }, - "node_modules/eslint/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==", + "node_modules/eslint-plugin-prettier": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", "dev": true, "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "prettier-linter-helpers": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">=12.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "eslint": ">=7.28.0", + "prettier": ">=2.0.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "node_modules/eslint-plugin-unicorn": { + "version": "46.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", + "integrity": "sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA==", "dev": true, "dependencies": { - "type-fest": "^0.20.2" + "@babel/helper-validator-identifier": "^7.19.1", + "@eslint-community/eslint-utils": "^4.1.2", + "ci-info": "^3.6.1", + "clean-regexp": "^1.0.0", + "esquery": "^1.4.0", + "indent-string": "^4.0.0", + "is-builtin-module": "^3.2.0", + "jsesc": "^3.0.2", + "lodash": "^4.17.21", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.24", + "regjsparser": "^0.9.1", + "safe-regex": "^2.1.1", + "semver": "^7.3.8", + "strip-indent": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.18" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" + }, + "peerDependencies": { + "eslint": ">=8.28.0" } }, - "node_modules/eslint/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==", + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=8.0.0" } }, - "node_modules/eslint/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==", + "node_modules/eslint-visitor-keys": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", + "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/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==", + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": ">=10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/eslint/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4.0" } }, "node_modules/espree": { @@ -3505,6 +3392,15 @@ "node": ">=0.10" } }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, "node_modules/esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", @@ -3517,7 +3413,7 @@ "node": ">=4.0" } }, - "node_modules/estraverse": { + "node_modules/esrecurse/node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", @@ -3526,6 +3422,15 @@ "node": ">=4.0" } }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -3722,16 +3627,19 @@ } }, "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==", + "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": "^5.0.0", + "locate-path": "^6.0.0", "path-exists": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/flat-cache": { @@ -4038,12 +3946,18 @@ } }, "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/globby": { @@ -4122,9 +4036,9 @@ } }, "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "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": { @@ -4206,6 +4120,21 @@ "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", @@ -4263,15 +4192,6 @@ "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/import-lazy": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", @@ -4668,6 +4588,15 @@ "node": ">=8" } }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/istanbul-lib-report": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", @@ -4710,12 +4639,12 @@ } }, "node_modules/jackspeak": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.1.tgz", - "integrity": "sha512-juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.0.tgz", + "integrity": "sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ==", "dev": true, "dependencies": { - "cliui": "^8.0.1" + "@isaacs/cliui": "^8.0.2" }, "engines": { "node": ">=14" @@ -5190,39 +5119,6 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-snapshot/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/jest-snapshot/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jest-snapshot/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/jest-util": { "version": "29.5.0", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", @@ -5335,13 +5231,12 @@ "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==", + "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": "^1.0.7", - "esprima": "^4.0.0" + "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" @@ -5357,15 +5252,15 @@ } }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "dev": true, "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-buffer": { @@ -5520,15 +5415,18 @@ } }, "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==", + "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": "^4.1.0" + "p-locate": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/lodash": { @@ -5537,12 +5435,6 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", - "dev": true - }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", @@ -5680,6 +5572,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -5711,12 +5612,6 @@ "markdown-it": "bin/markdown-it.js" } }, - "node_modules/markdown-it/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/markdownlint": { "version": "0.28.2", "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.28.2.tgz", @@ -5753,12 +5648,6 @@ "node": ">=14" } }, - "node_modules/markdownlint-cli/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/markdownlint-cli/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -5768,15 +5657,6 @@ "balanced-match": "^1.0.0" } }, - "node_modules/markdownlint-cli/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true, - "engines": { - "node": ">=14" - } - }, "node_modules/markdownlint-cli/node_modules/glob": { "version": "10.2.2", "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", @@ -5799,18 +5679,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/markdownlint-cli/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/markdownlint-cli/node_modules/minimatch": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", @@ -6168,27 +6036,15 @@ } }, "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/p-locate/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==", + "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-try": "^2.0.0" + "p-limit": "^3.0.2" }, "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -6218,6 +6074,15 @@ "node": ">=8" } }, + "node_modules/package-json/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -6384,6 +6249,58 @@ "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-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/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/pluralize": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", @@ -6554,9 +6471,9 @@ } }, "node_modules/pure-rand": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz", - "integrity": "sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", "dev": true, "funding": [ { @@ -6669,6 +6586,58 @@ "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-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/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", @@ -6811,7 +6780,7 @@ "node": ">=8" } }, - "node_modules/resolve-from": { + "node_modules/resolve-cwd/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==", @@ -6820,6 +6789,15 @@ "node": ">=8" } }, + "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/resolve.exports": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", @@ -7017,12 +6995,18 @@ "dev": true }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, "bin": { "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/semver-diff": { @@ -7037,6 +7021,33 @@ "node": ">=8" } }, + "node_modules/semver-diff/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/semver/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/semver/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/sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", @@ -7261,6 +7272,15 @@ "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-shift": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", @@ -7303,6 +7323,21 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "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/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -7315,6 +7350,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "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/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -7358,9 +7406,9 @@ } }, "node_modules/style-dictionary": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", - "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.8.0.tgz", + "integrity": "sha512-wHlB/f5eO3mDcYv6WtOz6gvQC477jBKrwuIXe+PtHskTCBsJdAOvL8hCquczJxDui2TnwpeNE+2msK91JJomZg==", "dev": true, "dependencies": { "chalk": "^4.0.0", @@ -7368,7 +7416,7 @@ "commander": "^8.3.0", "fs-extra": "^10.0.0", "glob": "^7.2.0", - "json5": "^2.2.0", + "json5": "^2.2.2", "jsonc-parser": "^3.0.0", "lodash": "^4.17.15", "tinycolor2": "^1.4.1" @@ -7380,6 +7428,15 @@ "node": ">=12.0.0" } }, + "node_modules/style-dictionary/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -7470,15 +7527,12 @@ "safe-buffer": "~5.1.0" } }, - "node_modules/tinycolor2": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", - "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", - "dev": true, - "engines": { - "node": "*" - } - }, + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", + "dev": true + }, "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -7583,44 +7637,11 @@ "babel-jest": { "optional": true }, - "esdist": { + "esbuild": { "optional": true } } }, - "node_modules/ts-jest/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/ts-jest/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ts-jest/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/ts-node": { "version": "10.9.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", @@ -7713,9 +7734,9 @@ } }, "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "engines": { "node": ">=10" @@ -7837,39 +7858,6 @@ "url": "https://github.com/yeoman/update-notifier?sponsor=1" } }, - "node_modules/update-notifier/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/update-notifier/node_modules/semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/update-notifier/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/upper-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", @@ -8053,6 +8041,24 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "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/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -8207,27 +8213,27 @@ } }, "@babel/compat-data": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.4.tgz", - "integrity": "sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==", + "version": "7.21.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz", + "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==", "dev": true }, "@babel/core": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.4.tgz", - "integrity": "sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==", + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", + "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", "dev": true, "requires": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-compilation-targets": "^7.21.4", - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helpers": "^7.21.0", - "@babel/parser": "^7.21.4", + "@babel/generator": "^7.21.5", + "@babel/helper-compilation-targets": "^7.21.5", + "@babel/helper-module-transforms": "^7.21.5", + "@babel/helpers": "^7.21.5", + "@babel/parser": "^7.21.8", "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.4", - "@babel/types": "^7.21.4", + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -8240,38 +8246,60 @@ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, "@babel/generator": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.4.tgz", - "integrity": "sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", + "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", "dev": true, "requires": { - "@babel/types": "^7.21.4", + "@babel/types": "^7.21.5", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" + }, + "dependencies": { + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + } } }, "@babel/helper-compilation-targets": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.4.tgz", - "integrity": "sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz", + "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==", "dev": true, "requires": { - "@babel/compat-data": "^7.21.4", + "@babel/compat-data": "^7.21.5", "@babel/helper-validator-option": "^7.21.0", "browserslist": "^4.21.3", "lru-cache": "^5.1.1", "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz", + "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==", "dev": true }, "@babel/helper-function-name": { @@ -8303,34 +8331,34 @@ } }, "@babel/helper-module-transforms": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", - "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz", + "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==", "dev": true, "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-environment-visitor": "^7.21.5", + "@babel/helper-module-imports": "^7.21.4", + "@babel/helper-simple-access": "^7.21.5", "@babel/helper-split-export-declaration": "^7.18.6", "@babel/helper-validator-identifier": "^7.19.1", "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.2", - "@babel/types": "^7.21.2" + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5" } }, "@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz", + "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==", "dev": true }, "@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", + "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", "dev": true, "requires": { - "@babel/types": "^7.20.2" + "@babel/types": "^7.21.5" } }, "@babel/helper-split-export-declaration": { @@ -8343,9 +8371,9 @@ } }, "@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", + "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", "dev": true }, "@babel/helper-validator-identifier": { @@ -8361,14 +8389,14 @@ "dev": true }, "@babel/helpers": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz", - "integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", + "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", "dev": true, "requires": { "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.0", - "@babel/types": "^7.21.0" + "@babel/traverse": "^7.21.5", + "@babel/types": "^7.21.5" } }, "@babel/highlight": { @@ -8441,9 +8469,9 @@ } }, "@babel/parser": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.4.tgz", - "integrity": "sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==", + "version": "7.21.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", + "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==", "dev": true }, "@babel/plugin-syntax-async-generators": { @@ -8584,30 +8612,38 @@ } }, "@babel/traverse": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.4.tgz", - "integrity": "sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", + "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", "dev": true, "requires": { "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.4", - "@babel/helper-environment-visitor": "^7.18.9", + "@babel/generator": "^7.21.5", + "@babel/helper-environment-visitor": "^7.21.5", "@babel/helper-function-name": "^7.21.0", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.4", - "@babel/types": "^7.21.4", + "@babel/parser": "^7.21.5", + "@babel/types": "^7.21.5", "debug": "^4.1.0", "globals": "^11.1.0" + }, + "dependencies": { + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + } } }, "@babel/types": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.4.tgz", - "integrity": "sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", + "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", "dev": true, "requires": { - "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-string-parser": "^7.21.5", "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" } @@ -8680,38 +8716,6 @@ "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" - }, - "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 - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "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" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } } }, "@eslint/js": { @@ -8743,6 +8747,71 @@ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "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 + }, + "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 + }, + "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" + } + }, + "strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "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" + } + } + } + }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -8754,6 +8823,70 @@ "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" + }, + "dependencies": { + "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" + } + }, + "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" + } + }, + "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" + } + }, + "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-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "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 + } } }, "@istanbuljs/schema": { @@ -9226,9 +9359,9 @@ } }, "@tokens-studio/sd-transforms": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.2.tgz", - "integrity": "sha512-X++MFWn3NaLOgmN1cHSW41ER9Xq8w8ioCM8+K2OjXYbPWKdPI18zFQf9ZxGcKpz/AxCs5zV2v/ZdvX5V3IfPSA==", + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.5.tgz", + "integrity": "sha512-fqojhdPuELoNBFlo3LsUmEVnvGAiczyF8R94OIKhjcRRoNGvFKEAFETxb61Nn4SFT+nRXLQ0D339xlD4BVjhEQ==", "dev": true, "requires": { "@tokens-studio/types": "^0.2.1", @@ -9240,9 +9373,9 @@ } }, "@tokens-studio/types": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.1.tgz", - "integrity": "sha512-yuSgYbKM7yU/r3Dx5UqG2s/L31ZNA/o232Gk7ayQpcSDHAIrVAoR4rYV3XMKNbuLv9xHjrFa7OnqEjAghFgqWQ==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.2.tgz", + "integrity": "sha512-M4vgkDMZLQU/tlud9glZyAGYzjEh7qHoqC6tCDBFsA+qhdRPvBCs5J43XIr/YLFHxI1Zj0Qy0rWAxkCuv9JThw==", "dev": true }, "@tsconfig/node10": { @@ -9302,9 +9435,9 @@ } }, "@types/babel__traverse": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", - "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", + "version": "7.18.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz", + "integrity": "sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==", "dev": true, "requires": { "@babel/types": "^7.3.0" @@ -9344,9 +9477,9 @@ } }, "@types/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==", + "version": "29.5.1", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.1.tgz", + "integrity": "sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ==", "dev": true, "requires": { "expect": "^29.0.0", @@ -9360,9 +9493,9 @@ "dev": true }, "@types/node": { - "version": "18.15.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", - "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", + "version": "18.16.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.3.tgz", + "integrity": "sha512-OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q==", "dev": true }, "@types/normalize-package-data": { @@ -9420,32 +9553,6 @@ "natural-compare-lite": "^1.4.0", "semver": "^7.3.7", "tsutils": "^3.21.0" - }, - "dependencies": { - "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" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } } }, "@typescript-eslint/parser": { @@ -9497,37 +9604,11 @@ "requires": { "@typescript-eslint/types": "5.59.2", "@typescript-eslint/visitor-keys": "5.59.2", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "dependencies": { - "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" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" } }, "@typescript-eslint/utils": { @@ -9544,48 +9625,6 @@ "@typescript-eslint/typescript-estree": "5.59.2", "eslint-scope": "^5.1.1", "semver": "^7.3.7" - }, - "dependencies": { - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - }, - "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" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } } }, "@typescript-eslint/visitor-keys": { @@ -9645,6 +9684,14 @@ "dev": true, "requires": { "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } } }, "ansi-regex": { @@ -9708,13 +9755,10 @@ "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" - } + "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 }, "array-union": { "version": "2.1.0", @@ -9848,12 +9892,6 @@ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true } } }, @@ -9983,9 +10021,9 @@ "dev": true }, "caniuse-lite": { - "version": "1.0.30001480", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001480.tgz", - "integrity": "sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ==", + "version": "1.0.30001482", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz", + "integrity": "sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==", "dev": true }, "capital-case": { @@ -10187,9 +10225,9 @@ "dev": true }, "commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true }, "comment-parser": { @@ -10426,10 +10464,16 @@ "stream-shift": "^1.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 + }, "electron-to-chromium": { - "version": "1.4.367", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.367.tgz", - "integrity": "sha512-mNuDxb+HpLhPGUKrg0hSxbTjHWw8EziwkwlJNkFUj3W60ypigLDRVz04vU+VRsJPi8Gub+FDhYUpuTm9xiEwRQ==", + "version": "1.4.382", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.382.tgz", + "integrity": "sha512-czMavlW52VIPgutbVL9JnZIZuFijzsG1ww/1z2Otu1r1q+9Qe2bTsH3My3sZarlvwyqHM6+mnZfEnt2Vr4dsIg==", "dev": true }, "emittery": { @@ -10481,9 +10525,9 @@ "dev": true }, "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==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true }, "eslint": { @@ -10534,68 +10578,20 @@ "text-table": "^0.2.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 - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "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" - } - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "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" - } - }, - "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" - } - }, - "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==", + "eslint-scope": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", "dev": true, "requires": { - "p-limit": "^3.0.2" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" } }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true } } @@ -10630,38 +10626,6 @@ "esquery": "^1.5.0", "semver": "^7.5.0", "spdx-expression-parse": "^3.0.1" - }, - "dependencies": { - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "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" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } } }, "eslint-plugin-prettier": { @@ -10695,48 +10659,16 @@ "safe-regex": "^2.1.1", "semver": "^7.3.8", "strip-indent": "^3.0.0" - }, - "dependencies": { - "jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "dev": true - }, - "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" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } } }, "eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "requires": { "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "estraverse": "^4.1.1" } }, "eslint-visitor-keys": { @@ -10769,6 +10701,14 @@ "dev": true, "requires": { "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, "esrecurse": { @@ -10778,12 +10718,20 @@ "dev": true, "requires": { "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true }, "esutils": { @@ -10947,12 +10895,12 @@ } }, "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "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": "^5.0.0", + "locate-path": "^6.0.0", "path-exists": "^4.0.0" } }, @@ -11180,10 +11128,13 @@ } }, "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } }, "globby": { "version": "11.1.0", @@ -11245,9 +11196,9 @@ } }, "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "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": { @@ -11317,6 +11268,12 @@ "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", @@ -11346,14 +11303,6 @@ "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - } } }, "import-lazy": { @@ -11643,6 +11592,14 @@ "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "istanbul-lib-report": { @@ -11678,13 +11635,13 @@ } }, "jackspeak": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.1.1.tgz", - "integrity": "sha512-juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.0.tgz", + "integrity": "sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ==", "dev": true, "requires": { - "@pkgjs/parseargs": "^0.11.0", - "cliui": "^8.0.1" + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" } }, "jest": { @@ -12039,32 +11996,6 @@ "natural-compare": "^1.4.0", "pretty-format": "^29.5.0", "semver": "^7.3.5" - }, - "dependencies": { - "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" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } } }, "jest-util": { @@ -12155,13 +12086,12 @@ "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==", + "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": "^1.0.7", - "esprima": "^4.0.0" + "argparse": "^2.0.1" } }, "jsdoc-type-pratt-parser": { @@ -12171,9 +12101,9 @@ "dev": true }, "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "dev": true }, "json-buffer": { @@ -12304,12 +12234,12 @@ } }, "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "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": "^4.1.0" + "p-locate": "^5.0.0" } }, "lodash": { @@ -12318,12 +12248,6 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", - "dev": true - }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", @@ -12434,6 +12358,14 @@ "dev": true, "requires": { "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "make-error": { @@ -12462,14 +12394,6 @@ "linkify-it": "^4.0.1", "mdurl": "^1.0.1", "uc.micro": "^1.0.5" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - } } }, "markdownlint": { @@ -12499,12 +12423,6 @@ "run-con": "~1.2.11" }, "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 - }, "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -12514,12 +12432,6 @@ "balanced-match": "^1.0.0" } }, - "commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true - }, "glob": { "version": "10.2.2", "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", @@ -12533,15 +12445,6 @@ "path-scurry": "^1.7.0" } }, - "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" - } - }, "minimatch": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", @@ -12810,23 +12713,12 @@ } }, "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==", + "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": "^2.2.0" - }, - "dependencies": { - "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-limit": "^3.0.2" } }, "p-try": { @@ -12845,6 +12737,14 @@ "registry-auth-token": "^4.0.0", "registry-url": "^5.0.0", "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "param-case": { @@ -12971,6 +12871,45 @@ "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-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + } } }, "pluralize": { @@ -13103,9 +13042,9 @@ } }, "pure-rand": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.1.tgz", - "integrity": "sha512-t+x1zEHDjBwkDGY5v5ApnZ/utcd4XYDiJsaQQoptTXgUXX95sDg1elCdJghzicm7n2mbCBJ3uYWr6M22SO19rg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", "dev": true }, "queue-microtask": { @@ -13186,6 +13125,43 @@ "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-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, "type-fest": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", @@ -13285,12 +13261,20 @@ "dev": true, "requires": { "resolve-from": "^5.0.0" + }, + "dependencies": { + "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-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "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 }, "resolve.exports": { @@ -13424,10 +13408,30 @@ "dev": true }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", + "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + }, + "dependencies": { + "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" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } }, "semver-diff": { "version": "3.1.1", @@ -13436,6 +13440,14 @@ "dev": true, "requires": { "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "sentence-case": { @@ -13602,6 +13614,14 @@ "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-shift": { @@ -13640,6 +13660,17 @@ "strip-ansi": "^6.0.1" } }, + "string-width-cjs": { + "version": "npm:string-width@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", @@ -13649,6 +13680,15 @@ "ansi-regex": "^5.0.1" } }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, "strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -13677,9 +13717,9 @@ "dev": true }, "style-dictionary": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", - "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.8.0.tgz", + "integrity": "sha512-wHlB/f5eO3mDcYv6WtOz6gvQC477jBKrwuIXe+PtHskTCBsJdAOvL8hCquczJxDui2TnwpeNE+2msK91JJomZg==", "dev": true, "requires": { "chalk": "^4.0.0", @@ -13687,10 +13727,18 @@ "commander": "^8.3.0", "fs-extra": "^10.0.0", "glob": "^7.2.0", - "json5": "^2.2.0", + "json5": "^2.2.2", "jsonc-parser": "^3.0.0", "lodash": "^4.17.15", "tinycolor2": "^1.4.1" + }, + "dependencies": { + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true + } } }, "supports-color": { @@ -13774,9 +13822,9 @@ } }, "tinycolor2": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", - "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", "dev": true }, "tmp": { @@ -13844,32 +13892,6 @@ "make-error": "1.x", "semver": "7.x", "yargs-parser": "^21.0.1" - }, - "dependencies": { - "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" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } } }, "ts-node": { @@ -13932,9 +13954,9 @@ "dev": true }, "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true }, "typedarray-to-buffer": { @@ -14009,32 +14031,6 @@ "semver": "^7.3.4", "semver-diff": "^3.1.1", "xdg-basedir": "^4.0.0" - }, - "dependencies": { - "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" - } - }, - "semver": { - "version": "7.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } } }, "upper-case": { @@ -14198,6 +14194,17 @@ "strip-ansi": "^6.0.0" } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@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" + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/package.json b/package.json index 6002641f7ce..0c298d775e1 100644 --- a/package.json +++ b/package.json @@ -107,8 +107,8 @@ "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-unicorn": "^46.0.0", "gh-release": "^7.0.2", + "husky": "^8.0.3", "jest": "^29.5.0", - "lodash-es": "^4.17.21", "markdownlint-cli": "^0.34.0", "prettier": "^2.8.8", "rimraf": "^5.0.0", diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index 60b702e520b..d62ea9b62f9 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -1,4 +1,4 @@ -import { DeepKeyTokenMap, SingleToken, TokenTypes } from "@tokens-studio/types"; +import { DeepKeyTokenMap } from "@tokens-studio/types"; import { DesignToken } from "style-dictionary/types/DesignToken.js"; import { TransformOptions, ExpandablesAsStrings, Expandables, expandablesAsStringsArr } from "../utils/transformOptions.js"; import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from "../utils/regex.js"; diff --git a/tsconfig.prod.json b/tsconfig.prod.json index dd2ac37609d..1c9541b9de6 100644 --- a/tsconfig.prod.json +++ b/tsconfig.prod.json @@ -5,5 +5,5 @@ "outDir": "./tools/dist", "sourceMap": true }, - "exclude": ["**/*.test.*"] + "exclude": ["**/*.test.*", "support/**"] } From 3ff178713573c41eb5e8915bdcc2cfa91d1d4d5c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 10:30:05 -0700 Subject: [PATCH 652/696] ci: add husky --- .husky/.gitignore | 1 + .husky/pre-commit | 4 ++++ .husky/pre-push | 19 +++++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 .husky/.gitignore create mode 100755 .husky/pre-commit create mode 100755 .husky/pre-push diff --git a/.husky/.gitignore b/.husky/.gitignore new file mode 100644 index 00000000000..31354ec1389 --- /dev/null +++ b/.husky/.gitignore @@ -0,0 +1 @@ +_ diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 00000000000..36af219892f --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +npx lint-staged diff --git a/.husky/pre-push b/.husky/pre-push new file mode 100755 index 00000000000..22e4fb831bd --- /dev/null +++ b/.husky/pre-push @@ -0,0 +1,19 @@ +#!/bin/bash +# from https://riptutorial.com/git/example/16164/pre-push + +protected_branch="main" +current_branch=$(git rev-parse --abbrev-ref HEAD) + +if [ "$protected_branch" = "$current_branch" ] && bash -c ': >/dev/tty' +then + read -p "You're about to push main, is that what you intended? [y|n] " -n 1 -r < /dev/tty + echo + if echo "$REPLY" | grep -E "^[Yy]$" > /dev/null + then + exit 0 + fi + exit 1 +else + npm run util:check-squash-mergeable-branch + exit +fi From 636905064efb53542c1d1dfdbf8fe363d76483f5 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 10:33:26 -0700 Subject: [PATCH 653/696] =?UTF-8?q?chore:=20set=20primary=20branch=20to=20?= =?UTF-8?q?=E2=80=9Cmain=E2=80=9D=20in=20support=20checks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- support/checkSquashMergeableBranch.ts | 4 ++-- support/deployNextFromCI.ts | 2 +- support/isNextDeployable.ts | 7 +++---- support/prepReleaseCommit.ts | 10 ++++------ support/prepublish.ts | 4 ++-- 6 files changed, 13 insertions(+), 16 deletions(-) diff --git a/package.json b/package.json index 0c298d775e1..b08e8902aa6 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,7 @@ "util:prep-next": "npm run util:is-working-tree-clean && standard-version --prerelease next && npm run build", "util:publish-next": "npm run util:test-types && npm publish --tag next && npm run util:push-tags", "util:check-squash-mergeable-branch": "ts-node --esm support/checkSquashMergeableBranch.ts", - "util:push-tags": "git push --atomic origin master \"$(git describe --tags --abbrev=0)\"", + "util:push-tags": "git push --atomic origin main \"$(git describe --tags --abbrev=0)\"", "util:test-types": "tsc --esModuleInterop dist/types/**/*.d.ts dist/components/*.d.ts && ! grep -rnw 'dist/types' -e '/dev/tty' -then - read -p "You're about to push main, is that what you intended? [y|n] " -n 1 -r < /dev/tty - echo - if echo "$REPLY" | grep -E "^[Yy]$" > /dev/null - then - exit 0 - fi - exit 1 -else - npm run util:check-squash-mergeable-branch - exit -fi diff --git a/package.json b/package.json index 6d97c079b0c..aeec84fe5f4 100644 --- a/package.json +++ b/package.json @@ -77,19 +77,7 @@ "prepare": "husky install", "prepublishOnly": "ts-node --esm ./support/prepublish.ts", "release": "echo 'release is still TBD. Please message Ali Stump for more information.", - "release:next": "npm ci && npm test && npm run util:deploy-next", - "release:prepare": "npm run util:is-working-tree-clean && npm ci && npm test && standard-version && npm run build", - "release:publish": "npm run util:push-tags && npm publish && ts-node --esm ./support/releaseToGitHub.ts", - "test": "jest", - "util:clean-tested-build": "npm ci && npm test && npm run build", - "util:deploy-next": "npm run util:prep-next && npm run util:publish-next", - "util:deploy-next-from-ci": "ts-node --esm support/deployNextFromCI.ts", - "util:is-next-deployable": "ts-node --esm support/isNextDeployable.ts", - "util:prep-next": "npm run util:is-working-tree-clean && standard-version --prerelease next && npm run build", - "util:publish-next": "npm publish --tag next && npm run util:push-tags", - "util:check-squash-mergeable-branch": "ts-node --esm support/checkSquashMergeableBranch.ts", - "util:push-tags": "git push --atomic origin main \"$(git describe --tags --abbrev=0)\"", - "util:is-working-tree-clean": "[ -z \"$(git status --porcelain=v1)\" ]" + "test": "jest" }, "devDependencies": { "@tokens-studio/sd-transforms": "^0.8.2", diff --git a/support/.unreleased-changelog-context.json b/support/.unreleased-changelog-context.json deleted file mode 100644 index eed4c5ea6c4..00000000000 --- a/support/.unreleased-changelog-context.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "linkCompare": false, - "version": "Unreleased" -} diff --git a/support/checkSquashMergeableBranch.ts b/support/checkSquashMergeableBranch.ts deleted file mode 100644 index d18d3baae12..00000000000 --- a/support/checkSquashMergeableBranch.ts +++ /dev/null @@ -1,29 +0,0 @@ -/* -This script checks how many commits there are on a branch; -if there is only one commit it makes sure the message is in the conventional format. -This ensures a conventional commit message when PRs are squash-merged. -*/ - -(async function runner(): Promise { - const childProcess = await import("child_process"); - const { promisify } = await import("util"); - const exec = promisify(childProcess.exec); - - const conventionalCommitRegex = - /^((build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\([\w ,-]+\))?(!)?: [\w ])+([\s\S]*)/; - - const currentBranch = (await exec(`git rev-parse --abbrev-ref HEAD`, { encoding: "utf-8" })).stdout.trim(); - - const commits = (await exec(`git log --format=%B ${currentBranch} --not main`, { encoding: "utf-8" })).stdout - .trim() - .split("\n") - .filter((commit: string) => !!commit); - - process.exitCode = commits.length === 1 ? (conventionalCommitRegex.test(commits[0]) ? 0 : 1) : 0; - - if (process.exitCode === 1) { - console.log( - `https://github.com/Esri/calcite-design-tokens/blob/main/CONTRIBUTING.md#commit-message-format\nError: please amend your commit message using the conventional commit format\n\ngit commit --amend -m "conventional commit message"\n` - ); - } -})(); diff --git a/support/cleanOnProcessExit.ts b/support/cleanOnProcessExit.ts deleted file mode 100644 index 28629b07d76..00000000000 --- a/support/cleanOnProcessExit.ts +++ /dev/null @@ -1,48 +0,0 @@ -import rimraf from "rimraf"; -import yargs from "yargs"; - -(async function () { - const { resolve } = await import("path"); - - // 👇 based on https://stackoverflow.com/a/14032965 - - process.stdin.resume(); // so the program will not close instantly - - interface CleanupOptions { - cleanup: boolean; - } - - interface ExitOptions { - exit: boolean; - } - - const { path } = yargs(process.argv.slice(2)) - .options({ path: { type: "string" } }) - .parseSync(); - - const exitHandler = (options: CleanupOptions | ExitOptions): void => { - if ("cleanup" in options) { - rimraf.sync(resolve(`${process.cwd()}/${path}`)); - } - if ("exit" in options) { - process.exit(); - } - }; - - // do something when app is closing - process.on("exit", exitHandler.bind(null, { cleanup: true })); - - // catches ctrl+c event - process.on("SIGINT", exitHandler.bind(null, { exit: true })); - - // catches other kill process signals (e.g., concurrently --kill-others ...) - process.on("SIGHUP", exitHandler.bind(null, { exit: true })); - process.on("SIGTERM", exitHandler.bind(null, { exit: true })); - - // catches "kill pid" (for example: nodemon restart) - process.on("SIGUSR1", exitHandler.bind(null, { exit: true })); - process.on("SIGUSR2", exitHandler.bind(null, { exit: true })); - - // catches uncaught exceptions - process.on("uncaughtException", exitHandler.bind(null, { exit: true })); -})(); diff --git a/support/deployNextFromCI.ts b/support/deployNextFromCI.ts deleted file mode 100755 index c186a18358e..00000000000 --- a/support/deployNextFromCI.ts +++ /dev/null @@ -1,44 +0,0 @@ -/* - * This script is meant to be run by a CI environment during the deploy phase. - * - * Based on https://github.com/conventional-changelog/standard-version/issues/192#issuecomment-610494804 - */ -(async function runner(): Promise { - const childProcess = await import("child_process"); - const { promisify } = await import("util"); - const exec = promisify(childProcess.exec); - const maxBuffer = 1024 * 2048; - - async function deployNextFromCI(): Promise { - console.log("Deploying @next 🚧"); - - // the setup-node gh action handles the token - // https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages#publishing-packages-to-the-npm-registry - - console.log(" - prepping and building package..."); - await exec(`npm run util:prep-next`, { maxBuffer }); - - const changesCommitted = - (await exec(`git rev-parse HEAD`, { maxBuffer })) !== (await exec(`git rev-parse origin/main`, { maxBuffer })); - if (!changesCommitted) { - throw new Error("Failed to commit changes"); - } - - // github token provided by the checkout action - // https://github.com/actions/checkout#usage - console.log(" - pushes tags and publishing @next..."); - await exec(`npm run util:publish-next`, { maxBuffer }); - - console.log("@next deployed! 🚀"); - } - - try { - await deployNextFromCI(); - } catch (error) { - console.log( - `An error occurred during deployment ❌: -${error}` - ); - process.exit(1); - } -})(); diff --git a/support/isNextDeployable.ts b/support/isNextDeployable.ts deleted file mode 100755 index e5ffad939fd..00000000000 --- a/support/isNextDeployable.ts +++ /dev/null @@ -1,76 +0,0 @@ -/* - * This script is meant to be run by a CI environment during the deploy phase. - * It throws an error if there are not release-worthy (deployable) changes. - * - * Based on https://github.com/conventional-changelog/standard-version/issues/192#issuecomment-610494804 - */ -(async function runner(): Promise { - const childProcess = await import("child_process"); - const { promisify } = await import("util"); - const exec = promisify(childProcess.exec); - - async function isNextDeployable(): Promise { - console.log("Determining @next deployability 🔍"); - - if (!(await deployable(await mostRecentTag("HEAD")))) { - throw new Error("No deployable changes since the previous release, skipping ⛔"); - } - - await runGit("checkout", "main", "--quiet"); - await runGit("fetch", "--tags", "--quiet"); - - if ( - (await latestCommit("main")) != (await latestCommit("origin/main")) && - (await deployable("main", "origin/main")) - ) { - throw new Error("There is a more recent deployable install, aborting ⛔️"); - } - } - - /** - * Determines if the changes between from and to refs are deployable. - * - * Deployable scenarios: - * - * 1. there is a feat or fix type commit in the ref range - * 2. there is a commit type that introduced a breaking change - * @param fromRef - * @param toRef - */ - async function deployable(fromRef = "HEAD", toRef = "HEAD"): Promise { - const subjectLog = await runGit("log", `${fromRef}..${toRef} --format='%s'`); - const bodyLog = await runGit("log", `${fromRef}..${toRef} --format='%b'`); - - const deployableCommitTypeHeaderPattern = /^(feat|fix)(\(.*\))?:.+$/im; - const breakingChangesCommitTypeHeaderPattern = /^(.+)(\(.*\))?\!:.+$/im; - const breakingChangesCommitFooterPattern = /^BREAKING CHANGE:/i; - - return ( - deployableCommitTypeHeaderPattern.test(subjectLog) || - breakingChangesCommitTypeHeaderPattern.test(subjectLog) || - breakingChangesCommitFooterPattern.test(bodyLog) - ); - } - - async function latestCommit(branch: string): Promise { - return runGit("rev-parse", branch); - } - - async function mostRecentTag(branch: string): Promise { - return runGit("describe", "--tags", `--abbrev=0 ${branch}`); - } - - async function runGit(command: string, ...args: string[]): Promise { - return (await exec(`git ${command} ${args.join(" ")}`, { encoding: "utf-8" })).stdout.trim(); - } - - try { - await isNextDeployable(); - } catch (error) { - console.log( - `An error occurred during deployment ❌: -${error}` - ); - process.exit(1); - } -})(); diff --git a/support/prepReleaseCommit.ts b/support/prepReleaseCommit.ts deleted file mode 100644 index 43fea727f53..00000000000 --- a/support/prepReleaseCommit.ts +++ /dev/null @@ -1,160 +0,0 @@ -(async function prepReleaseCommit(): Promise { - const childProcess = await import("child_process"); - const { promisify } = await import("util"); - const { promises: fs } = await import("fs"); - const { default: semver } = await import("semver"); - const { dirname, normalize } = await import("path"); - const prettier = await import("prettier"); - const { quote } = await import("shell-quote"); - const { fileURLToPath } = await import("url"); - const exec = promisify(childProcess.exec); - - const header = `# Changelog\n\nThis document maintains a list of released versions and changes introduced by them.\nThis project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)\n\n`; - const unreleasedSectionTokenStart = ""; - const unreleasedSectionTokenEnd = ""; - const __filename = fileURLToPath(import.meta.url); - const __dirname = dirname(__filename); - const changelogPath = quote([normalize(`${__dirname}/../CHANGELOG.md`)]); - const readmePath = quote([normalize(`${__dirname}/../README.md`)]); - const packagePath = quote([normalize(`${__dirname}/../package.json`)]); - - // git sanity checks to prevent unapproved changes from making it into a release - if ((await exec("git rev-parse --abbrev-ref HEAD")).stdout.trim() !== "main") { - throw new Error("The main branch must be checked out before releasing."); - } - if ((await exec("git rev-parse main")).stdout.trim() !== (await exec("git rev-parse origin/main")).stdout.trim()) { - throw new Error("The main branch must be in sync with origin before releasing."); - } - - // deepen the history when fetching tags due to shallow clone - await exec("git fetch --deepen=250 --tags"); - - const prereleaseVersionPattern = /-next\.\d+$/; - - const currentLatestVersion = (await exec("npm view @esri/calcite-design-tokens dist-tags.latest")).stdout.trim(); - const currentNextVersion = (await exec("npm view @esri/calcite-design-tokens dist-tags.next")).stdout.trim(); - const releaseVersion = JSON.parse(await fs.readFile(packagePath, "utf8"))?.version; - const next = prereleaseVersionPattern.test(releaseVersion); - - if ( - !semver.valid(releaseVersion) || - (!next && semver.gte(currentLatestVersion, releaseVersion)) || - (next && semver.gte(currentNextVersion, releaseVersion)) - ) { - throw new Error("Version was not incremented correctly"); - } - - const baseErrorMessage = "an error occurred generating the changelog"; - - const changelogGenerationErrorMessage = `${baseErrorMessage} (releasing as: ${releaseVersion})`; - - try { - if (next) { - await appendUnreleasedNotesToChangelog(); - } else { - await convertUnreleasedChangelogContent(releaseVersion); - await updateReadmeCdnUrls(releaseVersion); - await exec(`git add ${readmePath}`); - } - await exec(`git add ${changelogPath}`); - } catch (error) { - console.log(changelogGenerationErrorMessage); - process.exitCode = 1; - } - - async function convertUnreleasedChangelogContent(version: string): Promise { - const changelogContent: string = await fs.readFile(changelogPath, { encoding: "utf8" }); - const date = new Date(); - const adjustedDate = new Date(date.getTime() - date.getTimezoneOffset() * 60 * 1000).toISOString().split("T")[0]; - const versionHeader = `## [v${version}](https://github.com/Esri/calcite-design-tokens/compare/v${currentLatestVersion}...v${version}) (${adjustedDate})`; - const unreleasedSectionPatternStart = new RegExp(`${unreleasedSectionTokenStart}.*## Unreleased`, "s"); - const updatedChangelogContent = `${header}${versionHeader}\n${changelogContent - .replace(header, "") - .replace(unreleasedSectionPatternStart, "") - .replace(unreleasedSectionTokenEnd, "")}`; - await fs.writeFile(changelogPath, updatedChangelogContent); - } - - async function appendUnreleasedNotesToChangelog(): Promise { - let changelogContent: string = await fs.readFile(changelogPath, { encoding: "utf8" }); - - const needsUnreleasedSectionTokens = !changelogContent.includes(unreleasedSectionTokenStart); - - if (needsUnreleasedSectionTokens) { - changelogContent = changelogContent.replace( - header, - `${header}\n${unreleasedSectionTokenStart}${unreleasedSectionTokenEnd}\n` - ); - } - - const unreleasedSectionPattern = new RegExp( - `(${unreleasedSectionTokenStart})(.*)(${unreleasedSectionTokenEnd})`, - "s" - ); - const unreleasedSectionContent = await getUnreleasedChangelogContents(); - const unreleasedHeaderPattern = /## Unreleased \(\d{4}-\d{2}-\d{2}\)/; - const hasUnreleasedContent = unreleasedSectionContent.replace(unreleasedHeaderPattern, "").trim().length > 0; - - if (hasUnreleasedContent) { - const getChangelogSection = (changes: string, startPattern: string, endPattern: string): string => { - if (!startPattern || !endPattern || !changes) { - return ""; - } - const match = changes.match(new RegExp(`${startPattern}(.*?)${endPattern}`, "s")); - return match && match.length > 1 ? match[1] : ""; - }; - - const combineUnreleasedChangelogContent = (existingChanges: string, newChanges: string): string => - ["### ⚠ BREAKING CHANGES", "### Features", "### Bug Fixes", "### Reverts"] - .map((sectionHeader) => { - const newSection = getChangelogSection(newChanges, sectionHeader, "##"); - const existingSection = getChangelogSection(existingChanges, sectionHeader, "##"); - return `${newSection || existingSection ? sectionHeader : ""}\n${newSection}\n${existingSection}`; - }) - .join(""); - - const existingUnreleasedSectionContent = getChangelogSection( - changelogContent, - unreleasedSectionTokenStart, - unreleasedSectionTokenEnd - ); - const combinedUnreleasedContent = combineUnreleasedChangelogContent( - // append the endPattern used for determining sections - `${existingUnreleasedSectionContent}\n##`, - `${unreleasedSectionContent}\n##` - ); - - changelogContent = changelogContent.replace( - unreleasedSectionPattern, - `$1\n## Unreleased\n${combinedUnreleasedContent}\n$3` - ); - } - - changelogContent = prettier.format(changelogContent, { parser: "markdown" }); - - await fs.writeFile(changelogPath, changelogContent); - } - - async function getUnreleasedChangelogContents(): Promise { - // invoking this way since we want the CLI module behavior, which doesn't provide a way to programmatically use it - return ( - await exec( - "npx conventional-changelog --release-count 1 --output-unreleased --preset conventionalcommits --context support/.unreleased-changelog-context.json", - { encoding: "utf-8" } - ) - ).stdout.trim(); - } - - async function updateReadmeCdnUrls(version: string): Promise { - const scriptTagPattern = /(<\/script>)/m; - const linkTagPattern = /()/m; - const baseCdnUrl = `https://cdn.jsdelivr.net/npm/@esri/calcite-design-tokens@${version}/dist/calcite/calcite.`; - - const readmeContent: string = await fs.readFile(readmePath, { encoding: "utf8" }); - const updatedReadmeContent = readmeContent - .replace(scriptTagPattern, `$1${baseCdnUrl}esm.js$2`) - .replace(linkTagPattern, `$1${baseCdnUrl}css$2`); - - await fs.writeFile(readmePath, updatedReadmeContent); - } -})(); diff --git a/support/prepublish.ts b/support/prepublish.ts deleted file mode 100644 index 538f42996dd..00000000000 --- a/support/prepublish.ts +++ /dev/null @@ -1,21 +0,0 @@ -import chalk from "chalk"; - -(async function () { - const childProcess = await import("child_process"); - const branch = childProcess.execSync("git rev-parse --abbrev-ref HEAD"); - - if (branch.toString().trim() === "main") { - process.exit(); - } else { - const message = chalk.red( - `Error: ${chalk.white( - `You may only run ${chalk.green("npm publish")} from the ${chalk.yellow( - "main" - )} branch. You are on ${chalk.yellow(branch)}.` - )}` - ); - - console.error(message); - process.exit(1); - } -})(); diff --git a/support/releaseToGitHub.ts b/support/releaseToGitHub.ts deleted file mode 100644 index fcdae84c5cb..00000000000 --- a/support/releaseToGitHub.ts +++ /dev/null @@ -1,29 +0,0 @@ -import rimraf from "rimraf"; - -(async function () { - const childProcess = await import("child_process"); - const { promisify } = await import("util"); - const { default: githubRelease } = await import("gh-release"); - const exec = promisify(childProcess.exec); - - const packageFileName = (await exec("npm pack", { encoding: "utf-8" })).stdout.trim(); - const packageScope = "esri-"; - - const options = { - assets: [ - { - name: packageFileName.replace(packageScope, ""), - path: packageFileName - } - ], - auth: { - token: process.env.GH_RELEASE_GITHUB_API_TOKEN - }, - yes: true // skips prompt - }; - - promisify(githubRelease)(options) - .then(() => console.info("Released on GitHub! 🎉")) - .catch((error) => console.error("Could not create GitHub release", error)) - .then(() => rimraf.sync(packageFileName)); -})(); From 4be6c9758615055baaa6af9afa4210f565653156 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 4 May 2023 11:46:33 -0700 Subject: [PATCH 659/696] chore: remove unnecessary prepublish script --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index aeec84fe5f4..fc3f0137223 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,6 @@ "lint:staged": "lint-staged", "lint": "npm run lint:eslint && npm run lint:markdown && npm run lint:prettier", "prepare": "husky install", - "prepublishOnly": "ts-node --esm ./support/prepublish.ts", "release": "echo 'release is still TBD. Please message Ali Stump for more information.", "test": "jest" }, From 185aa2603c6fa1d9bfbaf256c9b354204bdb1bd4 Mon Sep 17 00:00:00 2001 From: Ben Elan Date: Thu, 4 May 2023 11:51:17 -0700 Subject: [PATCH 660/696] chore: change calcite-styles to calcite-design-tokens --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fc3f0137223..ed90a0aaaab 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ }, "repository": { "type": "git", - "url": "git://github.com/Esri/calcite-styles.git" + "url": "git://github.com/Esri/calcite-design-tokens.git" }, "author": { "name": "Esri" @@ -62,7 +62,7 @@ ], "license": "SEE LICENSE IN README.md", "bugs": { - "url": "https://github.com/esri/calcite-design-tokens/issues" + "url": "https://github.com/Esri/calcite-design-tokens/issues" }, "scripts": { "build:tokens": "node bin/run.js", From c9195baf5800c56cd6c6a7cc7cd649630080269c Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Fri, 5 May 2023 10:04:11 +0200 Subject: [PATCH 661/696] Updates --- tokens/$themes.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tokens/$themes.json b/tokens/$themes.json index 7dfd22756c3..2079bb6ef33 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -6,8 +6,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/light": "enabled", - "component/select": "disabled" + "brand/light": "enabled" }, "$figmaStyleReferences": {} }, @@ -18,8 +17,7 @@ "core": "source", "semantic": "source", "brand/global": "enabled", - "brand/dark": "enabled", - "component/select": "disabled" + "brand/dark": "enabled" }, "$figmaStyleReferences": {} }, From d95bea45dff545418cf0aae2cb40531993e58095 Mon Sep 17 00:00:00 2001 From: Jacques Keet <117104798+jacqueskeet@users.noreply.github.com> Date: Fri, 5 May 2023 10:08:50 +0200 Subject: [PATCH 662/696] Updates --- tokens/component/select.json | 30 ++++++------------------------ 1 file changed, 6 insertions(+), 24 deletions(-) diff --git a/tokens/component/select.json b/tokens/component/select.json index fc9976a92a3..605ec59d330 100644 --- a/tokens/component/select.json +++ b/tokens/component/select.json @@ -45,25 +45,13 @@ } }, "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.foreground.1.light", + "type": "color" }, - "item-container": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } + "dark": { + "value": "$semantic.ui.color.foreground.1.dark", + "type": "color" } }, "icon-size": { @@ -157,12 +145,6 @@ "lg": "[object Object]" }, "type": "other" - }, - "item-container": { - "shadow": { - "value": "{core.box-shadow.2}", - "type": "boxShadow" - } } } } \ No newline at end of file From 6a47721a790cf8b3c1794ab238e69dfc6e82f1e4 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 8 May 2023 16:52:47 -0700 Subject: [PATCH 663/696] Revert "Merge pull request #103 from Esri/designer/jacqueskeet" This reverts commit 06a51812f678bfdacfd6ec7113098a39485a163f, reversing changes made to 185aa2603c6fa1d9bfbaf256c9b354204bdb1bd4. --- tokens/$metadata.json | 9 +- tokens/$themes.json | 679 ------------------- tokens/calcite/dark.json | 266 +------- tokens/calcite/light.json | 266 +------- tokens/component/button.json | 32 +- tokens/component/combobox-item.json | 356 ---------- tokens/component/combobox.json | 198 +++--- tokens/component/dropdown-item.json | 74 +- tokens/component/dropdown.json | 2 +- tokens/component/flow-header.json | 88 --- tokens/component/link.json | 6 - tokens/component/list-item.json | 214 ------ tokens/component/segmented-control-item.json | 222 ------ tokens/component/segmented-control.json | 96 ++- tokens/component/select.json | 150 ---- tokens/component/split-button.json | 28 +- 16 files changed, 236 insertions(+), 2450 deletions(-) delete mode 100644 tokens/component/combobox-item.json delete mode 100644 tokens/component/flow-header.json delete mode 100644 tokens/component/list-item.json delete mode 100644 tokens/component/segmented-control-item.json delete mode 100644 tokens/component/select.json diff --git a/tokens/$metadata.json b/tokens/$metadata.json index 8562d2b0445..be4d1de1ab8 100644 --- a/tokens/$metadata.json +++ b/tokens/$metadata.json @@ -10,8 +10,6 @@ "component/fab", "component/checkbox", "component/chip", - "component/combobox", - "component/combobox-item", "component/dropdown", "component/dropdown-item", "component/action-bar", @@ -23,9 +21,8 @@ "component/block", "component/block-section", "component/card", - "component/list-item", + "component/combobox", "component/date-picker", - "component/select", "component/color-picker", "component/input-date-picker", "component/input-datetime-local", @@ -55,11 +52,9 @@ "component/tip-manager", "component/tooltip", "component/panel-header", - "component/flow-header", - "component/segmented-control", - "component/segmented-control-item", "component/popover", "component/pagination", + "component/segmented-control", "component/slider", "component/slider-histogram", "component/slider-histogram-range", diff --git a/tokens/$themes.json b/tokens/$themes.json index efb085ca99c..a7c5376264c 100644 --- a/tokens/$themes.json +++ b/tokens/$themes.json @@ -89,15 +89,6 @@ "component/tip": "source", "component/tooltip": "source", "component/tree-item": "source", - "component/split-button": "source", - "component/dropdown-item": "source", - "component/combobox-item": "source", - "component/flow-header": "source", - "component/notice": "source", - "component/alert": "source", - "component/list-item": "source", - "component/segmented-control-item": "source", - "component/select": "source" "core": "source", "semantic": "source" }, @@ -159,529 +150,6 @@ "color.text.link": "S:29e00fdf7c59933ccd5f6b6fa4b1affe85fb04b7,", "color.warning.default": "S:8e6eae59c25bdbc0871221e6581b112b127f608c,", "color.warning.hover": "S:51d34d48b0994c4c7e3554f0d10f599704742d7b,", - "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a,", - "color.danger.default": "S:d0f902c03b5eba16e36ddf55e9f9ea2d2d75fc9b,", - "color.danger.hover": "S:3498bf797dd95ff7740a85fedf2c71b3227cb6d0,", - "color.danger.press": "S:95cefddc413c4a35a47562871b80261ecf1da642,", - "color.inverse.default": "S:38bb53cb8950170a464c2c48d6ac84102f9cd893,", - "color.component.avatar.font": "S:ed7416d3e4329b342ab2b4445d9b9fe5a3ec0bec,", - "color.component.avatar.icon": "S:b2ee6af51144f4ebcb241d7533c6f934e465f7a9,", - "color.component.avatar.background.default": "S:3e15d33e4e613128731e257a297158519a0867e3,", - "color.component.avatar.background.red": "S:8201984ce70dd96e17ecf094495fb6ff84b9abdf,", - "color.component.avatar.background.teal": "S:c2d6a3451d6afe1db88f13efb6f19326c5e9de88,", - "color.component.avatar.background.blue": "S:64ff455cb9703578b7e7b903b4ae694872e32cc3,", - "color.component.avatar.background.green": "S:90b1667b189d1eba24eaa558bff130b38f1c148a,", - "color.component.avatar.background.yellow": "S:751fd19d88078815098550b4e08ea5166e693a73,", - "avatar.font.light": "S:d2e5af5950b590e4fe1bf9bfacc0396b2becc6e0,", - "avatar.font.dark": "S:059f3a598ad40dc425229b56b3707b92c3b9edcc,", - "avatar.icon.light": "S:40f0f7ce73f1ee5373bacee49c5bb5f2cf62f161,", - "avatar.icon.dark": "S:0ff6bb1b6446005a8f19a439176f5be3577a2d81,", - "avatar.background.default.light": "S:07e7246a6f68a2e784ff5863d7bbd62ab9b10374,", - "avatar.background.default.dark": "S:3fe6caf2c16005180bdf56fc1973cb71d930ce05,", - "avatar.background.red.light": "S:dc2ed13e55b410f025b96f314ca3f0c08714c89a,", - "avatar.background.red.dark": "S:6a2a95cac48bdd7f912b68a91b19aa415422a601,", - "avatar.background.teal.light": "S:32a5570d250de432dbee8487aa07649ea0968a1d,", - "avatar.background.teal.dark": "S:9ab31e07a296b45185db32fcafb76c67b03eed6e,", - "avatar.background.blue.light": "S:d5b4987addab42650b6841042f867b662d99fd3d,", - "avatar.background.blue.dark": "S:f55b5063803cb7b8c47f821fc8fc6aad9a0a76e2,", - "avatar.background.green.light": "S:fd438ba50050f98e6f45a09730464b712b30e8ad,", - "avatar.background.green.dark": "S:755ebf1aecade2424d5422fa9fd7fe34c3c1561d,", - "avatar.background.yellow.light": "S:a7bc46963e781aa9efbfce2554ada92b984e1acd,", - "avatar.background.yellow.dark": "S:2a376b0ec0a524b3209ef9b7738af7a2afe30bdc,", - "color.component.checkbox.font": "S:0a53f46f8f093092bf2b04b3ba2ed96894431521,", - "color.component.checkbox.background.default": "S:f117ae12de004938e01565991d327345562bf8e5,", - "color.component.checkbox.background.selected": "S:49563bc20e686d51e17f95c48ddb6dec634bd7b2,", - "color.component.checkbox.icon": "S:2cd2d72b045e427cce635b47eedca442a910c09d,", - "color.component.checkbox.border": "S:e699073db7724f2aebdbc1dc28d0189e69c19202,", - "color.component.radio.font": "S:28367cca73d3c156bac98b8a1301c03133aa602b,", - "color.component.radio.background": "S:685dc063b371b9d8d58b9232e00a9e50d63bbd8f,", - "color.component.radio.border.unchecked": "S:f16a1ea9e4cc252f5fe368f0c4d259130c37a8ce,", - "color.component.radio.border.checked": "S:2c8b7f4025cd54659d9fec4373d5e25906ce8927,", - "color.component.chip.font.clear": "S:82e2e52caeab327eb3c1faf012a372a746948aa0,", - "color.component.chip.font.solid.grey": "S:37523ddbb8699c51bc212d5a8ae22a60f3db7227,", - "color.component.chip.font.solid.blue": "S:83017e42f4e22a9225765c9517f6c00b0d41e3af,", - "color.component.chip.font.solid.red": "S:33d35beefdc46bf3f0d865f538e20936aa497881,", - "color.component.chip.font.solid.yellow": "S:b211e1022e6b8416fd17c9b60563c26cfcf820d3,", - "color.component.chip.font.solid.green": "S:c8c8f5ce4bb6b1d0e91ab2e9255f50addcb7346d,", - "color.component.chip.icon.clear": "S:ddcd5912435ca0e39810ad6a69282de28631fce8,", - "color.component.chip.icon.solid.grey": "S:5a8848133b2e0c677661f4837b6d0878ff73e9dc,", - "color.component.chip.icon.solid.blue": "S:b9d0fc946e276056c493e2856c3f77bc424a7e49,", - "color.component.chip.icon.solid.red": "S:690f5bfed99621eb36f8e6fe069c3ce80ed1ab77,", - "color.component.chip.icon.solid.yellow": "S:f5d816446db2aa49e1c7c6d67217ac6b27908afa,", - "color.component.chip.icon.solid.green": "S:2174ecabcb3895263247165a2f12a21d3f712912,", - "color.component.chip.closable-icon": "S:93f7ba7fdcf9c61dd383645ffc3d05d5da3b5080,", - "color.component.chip.background.solid.grey": "S:29e55875055a1a4b7d22a1231dc79eafe135b9b3,", - "color.component.chip.background.solid.blue": "S:3eb5dda1dc28795b8d94b897bb0b684ea475fd29,", - "color.component.chip.background.solid.red": "S:a0dc90c6bcc70c8e6eca1a33d0ed93a2d8d1b1b0,", - "color.component.chip.background.solid.yellow": "S:b2d4082f2d28056182e04f00fa2acf73dbcc3d85,", - "color.component.chip.background.solid.green": "S:6b9e4f9854fa13ad688bc534429e68281561cfd7,", - "color.component.chip.border.clear.grey": "S:364b4ed6969619a21c19f975ed62584aa14fa666,", - "color.component.chip.border.clear.blue": "S:afd0add3ded3e0330e2dce4336b3d3f7025438bc,", - "color.component.chip.border.clear.red": "S:f3e723d0326816354f02220e19b0ff9a0ddf6fb7,", - "color.component.chip.border.clear.yellow": "S:9002906e4f7a157b1254adb9fa5c50b838254720,", - "color.component.chip.border.clear.green": "S:c1961f02d925e85abb3f7cd0d207986707cd5a1c,", - "color.component.label.font": "S:b4e0e68c6c23df8fb865b29e5d14a008b0a02728,", - "color.component.loader.font": "S:d62b208187740cc61a07579cc8f2380c7c638554,", - "color.component.loader.default.foreground": "S:cc65fb1fff3bd373fe7d17f48355a9771bfe13c9,", - "color.component.loader.inline.foreground.indeterminate": "S:beea9a55dd607d8d49b71a6ff25ada827db4bc0d,", - "color.component.loader.inline.foreground.determinate": "S:9cb29760c84899ae7ed17fbb1dbe9a8cba18b990,", - "color.component.rating.star.background.default": "S:8b34a162f4b45b935e7a71241ffc3fe4d600d31d,", - "color.component.rating.star.background.active": "S:f467e80f60e3308e11fb49ed2b19117d0a598434,", - "color.component.rating.star.background.average": "S:53ad72fb051908befe6881225d2500ce73d9346f,", - "color.component.rating.chip.value-text.font": "S:8de25d50497e356e1034b8eb15771e1d489a2687,", - "color.component.rating.chip.count.font": "S:76095738a949ccb77e1b2b887484a92c00703180,", - "color.component.rating.chip.foreground": "S:2c4cedc4ef7cee78326e34d2a99d64f61e87299d,", - "color.component.tooltip.foreground": "S:ea78e0278626b595d9bd8ff070e9fdbd089a594b,", - "color.component.tooltip.border": "S:a653ed836362fa7cbb8927da570562871187d6d6,", - "color.component.tooltip.font": "S:31a865bdddc9246c165026e9316e4351abe70149,", - "color.component.accordion-item.font.heading": "S:f6a7ceb45dc523ad8c267ece146ae767ed3d3bd6,", - "color.component.accordion-item.font.description": "S:7f3c0b94e29829b22536b3e1b4a120ae64f2e52a,", - "color.component.accordion-item.icon.default": "S:2ab111c59e92fbe87aa3a31f7c8eafca04c348f7,", - "color.component.accordion-item.icon.expanded": "S:297d5150a52d1c40e79d375ed7cc4227bbea7c50,", - "color.component.accordion-item.background": "S:f33afd73daca2b1707d66711afcf22bef6b8c052,", - "color.component.accordion-item.border": "S:dcba1d58e8c8b966e5c56fdfc46599a21b7f4c8c,", - "color.component.input-message.font": "S:6d4ddfad1fa9e367f9d3fb9fb2c61e48904f2c48,", - "color.component.input-message.icon.idle": "S:763e7e66e2cbe4dee7d5f47e841ab4847d08ee5a,", - "color.component.input-message.icon.invalid": "S:ee291b1e3592cf175f3ab22c1aeb4de4074acff8,", - "color.component.input-message.icon.valid": "S:6e2c602895be9baf7739eafffb4af4f100aac4a3,", - "color.component.alert.font.title": "S:3fe992b4776b7b498a35470e91a6a15e59715e79,", - "color.component.alert.font.message": "S:56ce688122e0f8961c2b08b60be9dbc4e5c3fea6,", - "color.component.alert.background": "S:ea7479a9d45b3b59c24971e380da7bb66a818b0c,", - "color.component.alert.border": "S:b13075aa87a5bda465c79f50d04b62ba3cd5308e,", - "color.component.alert.icon.blue": "S:553582caa5cd81f8c24b65e74a4d92a949b1dee3,", - "color.component.alert.icon.green": "S:14a72cac5bde15b49127d6a65c762c5744026ecf,", - "color.component.alert.icon.yellow": "S:27d0a984f07861ea57e78a4491db12feaa29ef9d,", - "color.component.alert.icon.red": "S:3d9465c857cfe8ddb6bc72d0deedf6702ae50d6c,", - "color.component.alert.highlight.blue": "S:af42060d4b3a1d838c8d43cfbc779785048e88b4,", - "color.component.alert.highlight.green": "S:a6d7b79458245faf37cb4f9661c86c7e3aaad526,", - "color.component.alert.highlight.yellow": "S:44728da690f1d8815638c7cca9e21e9ff37545ea,", - "color.component.alert.highlight.red": "S:84d71fce7deabd5b8499eeb2950f5ba9497b25b5,", - "color.component.color-picker.font.label": "S:ae00cde6a8f341514914c599f73def1510d5675d,", - "color.component.color-picker.icon": "S:3d38013a329c613fd4b64473d5eaba50697f0f15,", - "color.component.color-picker.border": "S:c2683963a67628dd633cb5ed2cd4a623244b9f90,", - "color.component.color-picker.background.default": "S:41e8da24d42dff3d9b697ac0354cf6d5e9dc1493,", - "color.component.date-picker.font.date": "S:ecd7e4b30e4a787c688f08c58fc3f905d3f7f219,", - "color.component.date-picker.font.day": "S:ff811d0c255d3fd3061b1ca232eafaa199132cb3,", - "color.component.date-picker.font.month": "S:2c14af60350c9d07529ce000c430a9efd6f0f373,", - "color.component.date-picker.font.range.date": "S:dc490f031a3a55974fbafea34311c6dd81ef562c,", - "color.component.date-picker.font.selected.date": "S:ec1c3fd78661afe8ad4dbff3074f452601841a84,", - "color.component.date-picker.font.active.date": "S:703b8f7a7e4eaee282b2b53dc721493883efec59,", - "color.component.date-picker.icon": "S:276587829a546542a2ad54b2cc09582d2f8e0b1c,", - "color.component.date-picker.border": "S:0a8d6f6c02617c5a98aad0195be1d3c542497194,", - "color.component.date-picker.date.active.border": "S:eba437115f16d03a200cd8e796e8a5d1c4ef08d8,", - "color.component.date-picker.background.default": "S:863d8699a17624c25a7f28071e68f23f26b9174a,", - "color.component.date-picker.background.date.range": "S:63a658f6dd1079b658f2ca634503a742dc379e19,", - "color.component.date-picker.background.date.active": "S:6c84995570a9ef51d154eb4e1f3ddf333a96546f,", - "color.component.input-date-picker.font.placeholder-value": "S:5edf7873a5256c11377903deba8fc7a0419eb66a,", - "color.component.input-date-picker.font.label": "S:933961a00c061377cc8c11f1ab44a5d0a46998f5,", - "color.component.input-date-picker.icon": "S:224d5ad2aa497ddd44589637e1586b718261fc84,", - "color.component.input-date-picker.border": "S:579a7cf0b825ff7281678924add12c1da7806041,", - "color.component.input-date-picker.background.default": "S:d41981a3b8893551c3c1bf9358533ddf8bbed8fa,", - "color.component.input-date-picker.background.arrow": "S:b32f6d9a140dc1dc7c7886edc8c541441123e8e4,", - "color.component.input-date-picker.background.read-only": "S:61192eb951c1661598c2ce2ae314fdeeb2e50fe9,", - "color.component.input-datetime-local.font.placeholder-value": "S:11caa4b6bf2f7607a508c791cd3193c81f70fd20,", - "color.component.input-datetime-local.font.label": "S:e659063659df79fb526f524ce4fb590a40dff397,", - "color.component.input-datetime-local.font.prefix-suffix": "S:d5454374407acacfbf49c9f01e309d28d6efee32,", - "color.component.input-datetime-local.icon": "S:27e85f23e9100734c12ba3e7cf6be60bcb43a00e,", - "color.component.input-datetime-local.background.default": "S:d4b4814e6c3f5feeb88f75a278813a820ffbfeec,", - "color.component.input-datetime-local.background.prefix-sufix": "S:376c73231137df2cae694e87ee73c3c9240ac213,", - "color.component.input-datetime-local.background.read-only": "S:db9f5f33469731e38a61c451d4365d802b84f24b,", - "color.component.input-datetime-local.border.default": "S:8c63a9c9c1bb78ddd3d2446a0e1d4bb2b459eee8,", - "color.component.input-datetime-local.border.invalid": "S:7157e8ecf2fb43679e8ba98224bc96d29710eeb9,", - "color.component.input-email.font.placeholder-value": "S:c8ec4f1140efdc064b547f3a1120f17bc9c5c5e0,", - "color.component.input-email.font.label": "S:e2efb919bfd6c18c3d8399b8cd0a43664fb15ca4,", - "color.component.input-email.font.prefix-suffix": "S:56fe77d37c0d635056dda4fadf95b9721af96f98,", - "color.component.input-email.icon": "S:686446981d7fb411b027bbec1a47fb9bbb1bbe06,", - "color.component.input-email.background.default": "S:89408bc79c1cb8fb073b4226346967e4c9a5a568,", - "color.component.input-email.background.prefix-sufix": "S:a4aaa81ba1e957ad240872dedfc70c7c86524fc5,", - "color.component.input-email.background.read-only": "S:9c594798596db12a89fb47ed0a3301287bf7e849,", - "color.component.input-email.border.default": "S:c789828b3202e7bbd3d09e2375bacf337d1f4e21,", - "color.component.input-email.border.invalid": "S:fb22e8db8e157fad52330746a932b74bb891115f,", - "color.component.input-file.font.placeholder-value": "S:6cc4765b7edba0df0119ea4f6e481dde602bb346,", - "color.component.input-file.font.label": "S:becf50bac6c8151409468da9ad0c41509ef3e1ba,", - "color.component.input-file.font.prefix-suffix": "S:1b98997abc18e919b7b88004cb45ab9ec68074be,", - "color.component.input-file.icon": "S:08e849b3577741c4d0f5b14b570b3dedd0409ae0,", - "color.component.input-file.background.default": "S:90bc55b0c0eac769b975310cbaf84bbfe403ef18,", - "color.component.input-file.background.prefix-sufix": "S:9af88d8b9bf8c5fd63e5557afa9f03358ab23432,", - "color.component.input-file.background.read-only": "S:51bb552cbc7b9a3e2ad8dea746ae4074910ae0e1,", - "color.component.input-file.border.default": "S:716fda3caa1dd63980435252f94965e8ebf4352d,", - "color.component.input-file.border.invalid": "S:129378eb8acdb34dc0499977d1e6f5061b9ccd7b,", - "color.component.input-month.font.placeholder-value": "S:31c69f501d49f7bc5589a6757367d48516491915,", - "color.component.input-month.font.label": "S:37353b65c15c9d02899c1620d21d28756e2e90ee,", - "color.component.input-month.font.prefix-suffix": "S:e2d806652a25ae5d2737d4932c83826ea94db95f,", - "color.component.input-month.icon": "S:f51e98513a30af39a2d003314fc2a9c55893f0d0,", - "color.component.input-month.background.default": "S:6687ac9d177c478619fd9545e6816f1629ce96b7,", - "color.component.input-month.background.prefix-sufix": "S:292c4c830a2d92f3ce4deb2d6b43b732f94a704c,", - "color.component.input-month.background.read-only": "S:dc93eae3ed727b01f9539be8c9ec03bb9fe58046,", - "color.component.input-month.border.default": "S:4f61e39454e82f3a42e8212dd397300956a696f4,", - "color.component.input-month.border.invalid": "S:1c9690d175f0b2cb76ff5544e1d0ea1128906eba,", - "color.component.input-number.font.placeholder-value": "S:f284516bf010fe8c94cecdd268fb3f0fb4c8cb3c,", - "color.component.input-number.font.label": "S:ab48c32a7915afcebcb11754266cb29fec0c8ca1,", - "color.component.input-number.icon": "S:504b31c0b16c3dd61c5ab8900cedf8e692a7ff74,", - "color.component.input-number.background.default": "S:904fdd03c036cd15598ae9787496db66569049b2,", - "color.component.input-number.background.prefix-sufix": "S:1468d63ae8c04df44cc0da994f39031f039d1d8e,", - "color.component.input-number.background.read-only": "S:d724df13e46bf81c5c3fc5b7616e772d75d9a783,", - "color.component.input-number.border.default": "S:cb11ce8ec7145a057972c04ea151cd1898f47629,", - "color.component.input-number.border.invalid": "S:67a8bc93e9867a69a58f95bf123186922e0d0202,", - "color.component.input-password.font.placeholder-value": "S:7e3cda5b0854795861a55eb1cede7aa767bac790,", - "color.component.input-password.font.label": "S:460c4251d3df389f478b2f52c4245247ffa35faa,", - "color.component.input-password.font.prefix-suffix": "S:0b9eee41b5d2e6969ebfec062f15553b98348624,", - "color.component.input-password.icon": "S:30bbeb9fe38e622ef4e395dd6e538dd4015a6d5e,", - "color.component.input-password.background.default": "S:4ff277c156a53608fc13f4efb9786e11a9680784,", - "color.component.input-password.background.prefix-sufix": "S:0e07cf212380e510a3ee75f6ce1cc34251471bf8,", - "color.component.input-password.background.read-only": "S:f72baefca07ed3a988ceeb37220c35cb8a346fea,", - "color.component.input-password.border.default": "S:30ec1938415d8cab48bfb8685e0ad3e3261f9efe,", - "color.component.input-password.border.invalid": "S:275a948863aed5a876850f65a8b4e41a88562620,", - "color.component.input-search.font.placeholder-value": "S:e44422fba65b0b4cf34779e0d83cf73bce3c6838,", - "color.component.input-search.font.label": "S:4d8e74b2652d43452ed766abb39dbd0ba7b5e8c2,", - "color.component.input-search.font.prefix-suffix": "S:c79aaa3d62acd70f718dc80d3b57db0b6b735d6d,", - "color.component.input-search.icon": "S:f248eec88bea03299449cd6911ddf0d5d2d02c15,", - "color.component.input-search.background.default": "S:c5e1490180a318e0482da2f401064044f4fcb6ed,", - "color.component.input-search.background.prefix-sufix": "S:2a8f333cc4ab06628d2532537f122b2201a875be,", - "color.component.input-search.background.read-only": "S:9e43d25b6a4cabab8534ef1a9c56aee0a2cf4da4,", - "color.component.input-search.border.default": "S:508529ce76c68340f2438dc73ba2161a9d7e5b4e,", - "color.component.input-search.border.invalid": "S:168db285acc469546e2dd3fda9830970dca72ea0,", - "color.component.input-telephone.font.placeholder-value": "S:80e113e120d3ab21516053df1478e7f3eba1016d,", - "color.component.input-telephone.font.label": "S:52a8d4d761df2a719ed6fc8137e6ff7b9a288ba3,", - "color.component.input-telephone.font.prefix-suffix": "S:73a9f6f0d216faa2355108da1f98e684f8531978,", - "color.component.input-telephone.icon": "S:fcaea19392582be1e983877a52babccc8af39361,", - "color.component.input-telephone.background.default": "S:199cf956a41f1acc4024b49781d834029a1e689c,", - "color.component.input-telephone.background.prefix-sufix": "S:d96c0b8bb94cb1a1dbbc89f6a3075765cf59760f,", - "color.component.input-telephone.background.read-only": "S:7324c2fc4154e10bbf29769cb56b59518fe85397,", - "color.component.input-telephone.border.default": "S:9ea4b66309f342a90c9d045ae2cc30ccbac5d841,", - "color.component.input-telephone.border.invalid": "S:a5e325e6391431f3fda3ee72048264978d993afb,", - "color.component.input-text.font.placeholder-value": "S:b848d034f46231b6433743e958f334cfb1683358,", - "color.component.input-text.font.label": "S:8ec7a538918197d146d0790d0bf2cfd457fa4792,", - "color.component.input-text.font.prefix-suffix": "S:5933daf6ec40e5bebbafd267c1beb86ac99bdbfb,", - "color.component.input-text.icon": "S:9d63b96ad2fa40b81e07c8f24374acc796846b3a,", - "color.component.input-text.background.default": "S:fcdf2c58534792c41b48483ea5b6d0d6d1360336,", - "color.component.input-text.background.prefix-sufix": "S:ce719064951b9fba6a110a0316bbf2f0291efae5,", - "color.component.input-text.background.read-only": "S:d5afc1545959fc24f56667a6820a4bf9f362e23d,", - "color.component.input-text.border.default": "S:9c3d227902f790faa4aaee759ce3e3b2e57a0193,", - "color.component.input-text.border.invalid": "S:66d6331a0abb39375e90d960b1457bfe49c85c88,", - "color.component.input-week.font.placeholder-value": "S:2b968b4e738bcc9e1bd54ac707c193b35ea0313a,", - "color.component.input-week.font.label": "S:b026be6ea5726a437f285db5aa9e715c7188846f,", - "color.component.input-week.font.prefix-suffix": "S:8fd34fe54d379a8872d2c402e16131d48cd0de5a,", - "color.component.input-week.icon": "S:9f87d63dcdb87de433866898e1813a5e61115391,", - "color.component.input-week.background.default": "S:2e7b4bf2595839a8c285334b58e727d71d7a06c7,", - "color.component.input-week.background.prefix-sufix": "S:573ca758f96c759c6d65b4cf3acd47deda9ea8a7,", - "color.component.input-week.background.read-only": "S:233bd34a25bc7e103712af9c08227d6ad1c71090,", - "color.component.input-week.border.default": "S:60b0c4c7ccfb8c3f6cccb1f51dd0cbb761896f24,", - "color.component.input-week.border.invalid": "S:83c5ea6783335164d5d309e63a8bcb3874abbbed,", - "color.component.textarea.font.placeholder-value": "S:abd7ffdd16b69f78421bdebe488f550304f748e7,", - "color.component.textarea.font.label": "S:2e04dc92a8b9fb56b376a27af36f8114c33b168d,", - "color.component.textarea.font.chat-limit": "S:9eebc1ae3b8311932f52bb77da325913dab7fd4f,", - "color.component.textarea.icon": "S:b10036f31696035040f81a4d488c3f73429fc0a3,", - "color.component.textarea.background.default": "S:06bb99c409364198a7b44ac2a79e46a3c9b10170,", - "color.component.textarea.background.read-only": "S:13598ab71b7f5cafc677b0752ed71acc31e9f1a7,", - "color.component.textarea.border.default": "S:2d5deb78b4ef6b945fa79d2e4ae63a7df57c6cf7,", - "color.component.tab-title.font.default": "S:51a13105951132a602cd8ea92f5f6660001c152e,", - "color.component.tab-title.font.active": "S:24ffb4e8c673c4a0975b128edd256025235e6f02,", - "color.component.tab-title.icon.default": "S:c92f59f139b1fa761d47f9780ba734135610287c,", - "color.component.tab-title.icon.active": "S:d23bbe84b72209e72d3bffd83ba8c5eea9a4b9a8,", - "color.component.tab-title.bordered.border": "S:58e223f1e372de01adf0c114d01bb21222f354e0,", - "color.component.tab-title.bordered.background.default": "S:21733973d73eabc52b32dd4603cf7a16887ec07c,", - "color.component.tab-title.border.active": "S:6d089d948aabcf507143c09f8a108979a3ac65d7,", - "color.component.tabs.bordered.border": "S:de2e8e0fcda90e018dba60fc37014c6f04e71eeb,", - "color.component.tabs.bordered.background": "S:f1bb825f8844179016903c3c69c565e4a721a17d,", - "color.component.card.font.title": "S:a43a65080a8f7d5da812f5775769493ed8d597e5,", - "color.component.card.font.subtitle": "S:2fbc04143f8d3ff24477b04cfc1e44625c4c074f,", - "color.component.card.font.description": "S:a16ce0dd8af4c77abccfed39320ae326768e3131,", - "color.component.card.border.default": "S:9e96eee68742532d4e5b141545380adcaf2f0946,", - "color.component.card.border.active": "S:a96ac3bb58cfc04d3571acdb1ab5d3a6e5892b14,", - "color.component.card.background.default": "S:4dc0ac9a57f1e229038b446be185e8fdb3efe855,", - "color.component.action.indicator": "S:5a15770844f7a54ac6825289622653c50f5bfbd5,", - "color.component.action.font": "S:2876f8d34ce69935169b30b798782943060395fc,", - "color.component.action.icon": "S:1518f73de3c2da14cbff2f4994b1e9d0d790ffb1,", - "color.component.action.background.default": "S:cb84f81e286ba7c4f99b2ced2d36f380af60b328,", - "color.component.action.background.active": "S:22281cee725d0c5ff593194e117555e819017308,", - "color.component.action-bar.border": "S:14d48c0de4971311289428040f3acc6d61b4d01f,", - "color.component.action-bar.background": "S:e0c9682c69d4f890f51dca5c86601faad089a085,", - "color.component.action-pad.border": "S:074f8ba3c95f32b46a6333154011cb22319292ef,", - "color.component.action-pad.background": "S:e80d6232b7dc41ffcc81333cfbfc06fe3e40f899,", - "color.component.action-bar-grid.border": "S:e18d68e254e09e34299c18eaa726177fa1eba56a,", - "color.component.action-bar-grid.background": "S:11502ccbbd7429c4d8e65299a4d15e4cc30aff4d,", - "color.component.action-pad-grid.border": "S:7931cbf77ed027c33340059174c246c48df2c6dc,", - "color.component.action-pad-grid.background": "S:131b9e47a94634a9aae36084a84646e4a47c767b,", - "color.component.block.font.heading": "S:c373cf00b3b7ce8964c707d6772c8e25a813b81c,", - "color.component.block.font.description": "S:eb7975992158fa32ed7d08e0306ecef727caaabb,", - "color.component.block.font.content": "S:bb5cac9046caad7c00b1bebc1cd2af98eba59974,", - "color.component.block.icon.default": "S:59cb3b068269ac4615b0afaef42a2de3cdfbdcb6,", - "color.component.block.icon.active": "S:0706cb0626eabcf9447cb2a2ba5813431f760d8b,", - "color.component.block.icon.idle": "S:76fd50fb2e80dbadcc1bc34e1d60e6e406b7d9b0,", - "color.component.block.icon.valid": "S:ad47ebd8e8b2a65d3191037a454f28d0e1c35138,", - "color.component.block.icon.invalid": "S:cbddaffb2bbf91cea5cff6dc5328e9b5fc913747,", - "color.component.block.icon.drag-handle": "S:a15dc3b92e506af5ac3259a6d3d0d31b2721622f,", - "color.component.block.icon.chevron": "S:69b9693c02a1a7b1c6ec1d9a7c8f806f619421fb,", - "color.component.block.loader": "S:af32fb7c2d2ef6f2eb3e3833a5d176e3ac540b4c,", - "color.component.block.border": "S:11d9a6085303dc0172cfec0a9493f25b3eaf248c,", - "color.component.block.background": "S:3fdea37fd38291aab1875fa1413da7502e81ddb0,", - "color.component.block-section.font": "S:7749b05108c7d1a83f435f93fd72a85ef76ba1a6,", - "color.component.block-section.icon.valid": "S:94a134ac8992df7b6dde842dfc6d114dc5bd070d,", - "color.component.block-section.icon.invalid": "S:1b50f5dc91213c90ceef687f36cc66bcef493693,", - "color.component.block-section.icon.chevron": "S:450d6bf44bfaf913b2cb086ec0d884f11e333f91,", - "color.component.block-section.background": "S:56ceef6ed6774a457b565526a91525d94ecda8ca,", - "color.component.notice.font.title": "S:92ed6304659d0ef6129050e4ba9403040ee9ad1c,", - "color.component.notice.font.message": "S:b695ae4933ed00b9cfdc1149e22506ee1adc9ff5,", - "color.component.notice.background": "S:ff0ac8e3fa4fa8a33b7d0175431454889d5f2ca3,", - "color.component.notice.icon.info": "S:50c19167e302f02c25d98dacd0fa1e0d78601102,", - "color.component.notice.icon.success": "S:31c21c8178d0e8c5ef46363fe75bd0696842222e,", - "color.component.notice.icon.warning": "S:3dd1752b143ba8ac6cc2d5d2aaf523e5de625de8,", - "color.component.notice.icon.danger": "S:cb4679eb6d61fdbd7b0e34891884bcf809cf545a,", - "color.component.notice.icon.brand": "S:95075947ae16b72ebb80239f134acd5c23e58a50,", - "color.component.notice.highlight.info": "S:e6e39dfc36aa43cd367ae978b980a191c13c1f70,", - "color.component.notice.highlight.success": "S:6a0a2ebffa34f004aa0f14e68caf31adb4258db2,", - "color.component.notice.highlight.warning": "S:849548d37351fe7788c14ff2bf47d5b7279a83c7,", - "color.component.notice.highlight.danger": "S:e5c621c23915ca660972e07c6a46ae1f70c11386,", - "color.component.notice.highlight.brand": "S:923189154b0f6650b1d21238836b8e3ce80c97ae,", - "color.component.modal.font.header": "S:8d00ad8b84bda4b85bca281cc7dda65bf07dede0,", - "color.component.modal.font.content": "S:21c10b798bd49c018ae3d9321181856e8a01fa9e,", - "color.component.modal.icon": "S:fb7104156857085d750dbff1e8429d020ce348f9,", - "color.component.modal.border.default": "S:71d63cc28db7343c08f1e7b5ce4749bc0e934d45,", - "color.component.modal.border.top.brand": "S:2260a8b79dd5d65b07c9db524086ba1c1c337429,", - "color.component.modal.border.top.info": "S:d45209f66ffd9dd84678e200b4163b212d72bac5,", - "color.component.modal.border.top.success": "S:b3ed19a82ccf3b2e713a54cdd70710f8b895c914,", - "color.component.modal.border.top.danger": "S:05edeee87701b5fc58df98360a414ce4766fa088,", - "color.component.modal.border.top.warning": "S:e0ed21a54c08efe2b1f30231a0dab6d311119d9d,", - "color.component.modal.background": "S:7331f4eedeb99bd80dcc0324fd1f9bfec86118f4,", - "color.component.panel-header.font": "S:b1b620f465fa98e58ee481d26c73f5fcd195f4e3,", - "color.component.panel-header.icon": "S:7862539d74302db1a0cd25b3c2f55029a318ecda,", - "color.component.panel-header.border": "S:4d4469498bccdd9e7dea802cebaa49c3b3b56e71,", - "color.component.panel-header.background": "S:befcd1d230ce5e4c570cdbcd5a95b293af3491dd,", - "color.component.popover.font": "S:0992a5f41edd4ffc8584b2bef129cb27b8969b70,", - "color.component.popover.icon": "S:6149cb77a9fa6ffa8c04a630d58de570baf68450,", - "color.component.popover.border": "S:d080807f32ee0ce0b2c9435740ae0dad73d55f18,", - "color.component.popover.background": "S:da438c74ab4933789aca4d641d847eb7381f7462,", - "color.component.slider.font.label": "S:1214330733e082140294a10bf1d7756e300542d1,", - "color.component.slider.font.tick-label": "S:3633ba6964eff2b832f99c52669245eadd32c66e,", - "color.component.slider.handle.background": "S:71be37ed2e8d2967178c415cce58967df531ea85,", - "color.component.slider.handle.border": "S:04149de4543c2ee38b5cb3cadfc6185733844eb7,", - "color.component.slider.border.default": "S:356e7bea2cfb543c6fe0b3d8958310212034a15a,", - "color.component.slider.border.active": "S:0960863f2dc7fd67280a82e88c3de2d60055b2f1,", - "color.component.slider.tick.default.background": "S:92d824ad9ecc032a3be1c1e9bd1a2b066f01f969,", - "color.component.slider.tick.default.border": "S:966ccad2ee0a7e564eb8fd81e4f1b36b5ad46783,", - "color.component.slider.tick.active.background": "S:a66878a140ce320e8995da0815772ce6dc6b30fa,", - "color.component.slider.tick.active.border": "S:36bccf2efacff68e8c5a3ea29ab2e21fcb24065c,", - "color.component.slider-range.font.label": "S:566472d6d1fd6905c642591a5487b891d3bb9178,", - "color.component.slider-range.font.tick-label": "S:6cb75ed2e3e6e98a3bced7f7c8fc7404a3e7b635,", - "color.component.slider-range.handle.background": "S:a5284d1faccc362d2515e6e56b96a0db5ed598cd,", - "color.component.slider-range.handle.border": "S:97a204ffc278abd33ce910edd3afd956dab1f09e,", - "color.component.slider-range.border.default": "S:d764ccfdb095baa8007e49712bbcd469326fde4c,", - "color.component.slider-range.border.active": "S:161b701c0fefcc0f258a5ad8f7a6db72ac2edc20,", - "color.component.slider-range.tick.default.background": "S:cdd25d7543be8deb0b8fa7e484f55d1edac31e0e,", - "color.component.slider-range.tick.default.border": "S:f52511564f711938c347161a7f2a927f794ec914,", - "color.component.slider-range.tick.active.background": "S:d7b9b249653fb1d0cad6005802fabbca889ced89,", - "color.component.slider-range.tick.active.border": "S:4537295c3af08dbf1365dde8f690ea810ded09e1,", - "color.component.slider-histogram.font.label": "S:b9d25b08bb31f04d0ce091b6b7dd10dbd4ec11b4,", - "color.component.slider-histogram.font.tick-label": "S:9ee9e4a034ddc813056173cce7ada4ca361289eb,", - "color.component.slider-histogram.handle.background": "S:d08a29051e6d892f9de1186d43c4660730362f47,", - "color.component.slider-histogram.handle.border": "S:e8850bc33691b63a04b63e67dda3f52c920b1a13,", - "color.component.slider-histogram.border.default": "S:0223d4c97175e828db89196a2cd670ca6d1a76b4,", - "color.component.slider-histogram.border.active": "S:82b024647b61dc5ad283d9d5eaeb51822bf2b33e,", - "color.component.slider-histogram.tick.default.background": "S:de0a23772f2e807f21ccdaa8e3f1c475589cfeef,", - "color.component.slider-histogram.tick.default.border": "S:51535ca7754073f5220a3064ede0f891cd8802c2,", - "color.component.slider-histogram.tick.active.background": "S:77e7d74f101fb6a4074f94044ae436552182926f,", - "color.component.slider-histogram.tick.active.border": "S:55277a6ac35783654d60a9c0fbe161146c856de1,", - "color.component.slider-histogram.area.active.background": "S:f44f588f048a77d5f1637adc19d959cdf4532f25,", - "color.component.slider-histogram.active-end.background.dark": "S:5e3fbef5136b0338db1ea87c19c8085db593d741,", - "color.component.slider-histogram-range.font.label": "S:c12bbe0653f373e709f2c10eae450792f9b0ac46,", - "color.component.slider-histogram-range.font.tick-label": "S:6c3b2f19d8ba57288bcf39038d75d2511eee68ef,", - "color.component.slider-histogram-range.handle.background": "S:2df158326948f8ac42362dff5e31db9af1b7ecbb,", - "color.component.slider-histogram-range.handle.border": "S:a9f796afff7a4cb274c3d0a2b9c93e56709253bf,", - "color.component.slider-histogram-range.border.default": "S:e14fa4dcc33fbeed35b1e6622fa833e604f4d183,", - "color.component.slider-histogram-range.border.active": "S:9256ee5bf9bd9374da39b53a027b206a00164a69,", - "color.component.slider-histogram-range.tick.default.background": "S:ae9ae4322a5a315257d5b8edf0bdb869444df70c,", - "color.component.slider-histogram-range.tick.default.border": "S:e9c227991ebbbb7815ff6b44063d6e7bde5bc489,", - "color.component.slider-histogram-range.tick.active.background": "S:a8442695edefa89bff9536ecb818fdf2c4279ef5,", - "color.component.slider-histogram-range.tick.active.border": "S:6ed916d0c5e550f7bc739b106437a9ce43f9f5b4,", - "color.component.slider-histogram-range.area.active.background": "S:00c9fff6c5c77497e17027c228ed5ee8b22a95d8,", - "color.component.slider-histogram-range.active-end.background": "S:f65c4a92b104c0f5f1bc9d8cf38150661ca3a931,", - "color.component.filter.font": "S:d276f3d2c4ee22ccf4c569c4fde8c58486e59199,", - "color.component.filter.icon": "S:ffb8503a521fb14ac0e8e7ff13fd296323d818eb,", - "color.component.filter.border": "S:fee18a8e6036a84234ddfa977717e6ba72e9a92f,", - "color.component.filter.background": "S:465cc9122b176ab1029340c990662c577af04342,", - "color.component.scrim.background": "S:922a92c205bc35e5a730ca48f93783419e023ba2,", - "color.component.tip-manager.font.heading": "S:0fd4726103f275c1dc68f9bd4b770365dc6b25f8,", - "color.component.tip-manager.icon": "S:9253bbe25d84394b6b34999a1e58cc37c369f40c,", - "color.component.tip-manager.background.default.light": "S:59590700d6e19cf81dd323972f00881394cf9235,", - "color.component.tip-manager.border.default": "S:c6d32577e412efc77dce583fd63c5b4abc4e0301,", - "color.component.button.font.brand.solid": "S:3fe82dc072ada61b96bb07b9d8c4cb1c538e6032,", - "color.component.button.font.brand.outline-fill": "S:37fc3cd1e7fe01f66e66241973596a943725a8b3,", - "color.component.button.font.brand.outline": "S:85b122326fdfae7e82b16b65124a81d0c14ddea9,", - "color.component.button.font.brand.transparent": "S:74182b37a887ce44777762d08013678dbf20f16c,", - "color.component.button.font.inverse.solid": "S:b629e9f9cdc9f900e2cdc1307d133f4cbb4ae151,", - "color.component.button.font.inverse.outline-fill": "S:5f31156046b8f9bc8848162d8ad6832c2ca00bcb,", - "color.component.button.font.inverse.outline": "S:f7c8cd89a1ae352d1b8992d2567dc90307d1e5a8,", - "color.component.button.font.inverse.transparent": "S:ca0f5e4b1ab6a039ba170fc00f3e4838046e81f3,", - "color.component.button.font.neutral.solid": "S:f4dfaf687306973fca333fa36f84cff1bf929894,", - "color.component.button.font.neutral.outline-fill": "S:c4c31c170de7b853c976167ad1e2f76c04da1a18,", - "color.component.button.font.neutral.outline": "S:71d3a48828798aa91a5666b52c630ac54e212b1a,", - "color.component.button.font.neutral.transparent": "S:a3ce00145af80c51f9f4501921be88c553d5a0f8,", - "color.component.button.font.danger.solid": "S:df0a15405034fa1d122d9f63ce4b93e34dadf802,", - "color.component.button.font.danger.outline-fill": "S:d2c161168b9bef4a06706100f317d5b0b0c5fd90,", - "color.component.button.font.danger.outline": "S:1917f846c082c08bc90cb26db2fecc42c5c2e4e1,", - "color.component.button.font.danger.transparent": "S:5abba32c35533b4fac51a1cd2dc418c8447db559,", - "color.component.button.icon.brand.solid": "S:08556e2b6c883ed466d040709b49256840743085,", - "color.component.button.icon.brand.outline-fill": "S:0c287748bb1f9c256b5fad8bcfc170f2537e89b7,", - "color.component.button.icon.brand.outline": "S:9dfa73d9f66eb6a55a769ff3aaa064a134e9d4e5,", - "color.component.button.icon.brand.transparent": "S:c6f10592bb8a4f8cfcc6380d49d3218662ccdb63,", - "color.component.button.icon.inverse.solid": "S:457cbcaf72a75ec46792cbc3f4cb952dcbf4463a,", - "color.component.button.icon.inverse.outline-fill": "S:79ea71f93e9373fff5cf27cc67bc0ed9e59af3dd,", - "color.component.button.icon.inverse.outline": "S:37e57e2db5365240de99ea17612bacc68a0511ed,", - "color.component.button.icon.inverse.transparent": "S:670157fdcef9b341d5a80a65f843c9edb8d96774,", - "color.component.button.icon.neutral.solid": "S:3ed62ec6b3c0b167951a6eb8965d9e4717d5771e,", - "color.component.button.icon.neutral.outline-fill": "S:d7f5877f4a75a300d9520ceb165970a16074cb72,", - "color.component.button.icon.neutral.outline": "S:2012355b67fb4869756befa71fbb8c532f8b76e1,", - "color.component.button.icon.neutral.transparent": "S:81d3cf808cb661be102f4d599698a00faaaa6295,", - "color.component.button.icon.danger.solid": "S:de387fa2996fe9e85add7487952c0a479596760f,", - "color.component.button.icon.danger.outline-fill": "S:35f3fc53b3529c1a8e958646362e3d61248eef8c,", - "color.component.button.icon.danger.outline": "S:215f76c20d44300ac6e7a8b0d9efe2c444acf850,", - "color.component.button.icon.danger.transparent": "S:fabd47e36e76ac7bc3015cced994b04c6083b45c,", - "color.component.button.background.brand.solid": "S:5237d85a48e79d2afc2b2d226d2a005ce29b88df,", - "color.component.button.background.brand.outline-fill": "S:92a64a3075bb2f6bd8f1e35221b40d5bc09e8980,", - "color.component.button.background.inverse.solid": "S:6d8fa0049d01eff5e57494f524094a488c46c2c2,", - "color.component.button.background.inverse.outline-fill": "S:e479719dbacc8ab1b6d9bfbba683888fce3b3224,", - "color.component.button.background.neutral.solid": "S:1ed4fe8817fec12e7151e4171a703b5980df4de2,", - "color.component.button.background.neutral.outline-fill": "S:62cbde8fe3173edf2cceabbf8aea5fc990d7e30a,", - "color.component.button.background.danger.solid": "S:54fb125fad25937719a335d0ade028dfd72f7b2a,", - "color.component.button.background.danger.outline-fill": "S:dcdc818f615ec820ec772a8afb69e10f211250e0,", - "color.component.button.border.brand.outline-fill": "S:4048268e007a31fe30b335388c38b432d7e99915,", - "color.component.button.border.brand.outline": "S:dce70841be9eac633bf769f5c3c50d2cb65fcbf3,", - "color.component.button.border.inverse.outline-fill": "S:79219e487169f4fd284de9c83cf30bfa11830840,", - "color.component.button.border.inverse.outline": "S:0737e16de0b956758db14bd9660f76a1d9736896,", - "color.component.button.border.neutral.outline-fill": "S:2ff5be5692a8245581663c6611971afc2c61f7aa,", - "color.component.button.border.neutral.outline": "S:70b6e2fee158142b59b57ce0d494f1f7c9abdde6,", - "color.component.button.border.danger.outline-fill": "S:fa7819f68ecc6ef663c3eab17c59862bc87703ed,", - "color.component.button.border.danger.outline": "S:44eeb8041f4fab160aaff51547368a41c41a2981,", - "color.component.split-button.font.brand.solid": "S:5b901bdc2a5ead15fa817a98c8b6c96901eb95cc,", - "color.component.split-button.font.brand.outline-fill": "S:b063e41ee8f3c89074a0cfadfc7a47d94182f1d8,", - "color.component.split-button.font.brand.outline": "S:ebc162c8b21194910a35ad32d6381ae2ff97defe,", - "color.component.split-button.font.brand.transparent": "S:4d0be1e25ed1364b5ada2f780cb6ca7db10f6036,", - "color.component.split-button.font.inverse.solid": "S:3e1a3a9aca4b68f27f44f1e00f5a87e4d179adfa,", - "color.component.split-button.font.inverse.outline-fill": "S:fcfd5ecee2fd9d55ea587af3a22704752423f0f5,", - "color.component.split-button.font.inverse.outline": "S:715293637d1d19a23d49b74f67894b2b2d4ce222,", - "color.component.split-button.font.inverse.transparent": "S:c94510ebcaff9dbf524309a9be1efabea4750f56,", - "color.component.split-button.font.neutral.solid": "S:463cd2aefd34c5b8f4f61bb628eb2d16a2ce1c53,", - "color.component.split-button.font.neutral.outline-fill": "S:e3ea51890b07070ec0e0ae3f7022aa48952917f9,", - "color.component.split-button.font.neutral.outline": "S:29bc436861fd4dbd02c1b6c4a8d47085aa0eef52,", - "color.component.split-button.font.neutral.transparent": "S:ef346610e28eced8e5f9d4e3d06f0eb3765b213b,", - "color.component.split-button.font.danger.solid": "S:837d4b9c9782e38978d4ab29dab1b0f687ea0f97,", - "color.component.split-button.font.danger.outline-fill": "S:6ab4e2e5fc5c5f42bd791473ee9d5058c4c21b69,", - "color.component.split-button.font.danger.outline": "S:87ed247bef4408e7f682ce8fc6bce7942aa9201f,", - "color.component.split-button.font.danger.transparent": "S:12b1b3da1c8eeaf70e91ec7c42ae1e154b2d11dd,", - "color.component.split-button.icon.brand.solid": "S:ccfb47312f729988384a0eeff779beafbf81837f,", - "color.component.split-button.icon.brand.outline-fill": "S:7fd6853a3c789158a6cea18f70287d43f98b583e,", - "color.component.split-button.icon.brand.outline": "S:5293d699938069a23e2689c67ad4254a42eb9d24,", - "color.component.split-button.icon.brand.transparent": "S:50ad39f33c8ac75f14966939c69fa57118acc2b6,", - "color.component.split-button.icon.inverse.solid": "S:ecb1fbd7138594f5be61b6d36b8bb81e46fbd652,", - "color.component.split-button.icon.inverse.outline-fill": "S:b500c00dff421eae5df1960bb82f3d7cf9ef8f61,", - "color.component.split-button.icon.inverse.outline": "S:2c4ceabdef9281222b790814660ad08d44db5514,", - "color.component.split-button.icon.inverse.transparent": "S:8aee6269bab102df2968105bb814b227e7f6b8dc,", - "color.component.split-button.icon.neutral.solid": "S:a7a0f553b0297d30710502ffd03c3ddec329cfb9,", - "color.component.split-button.icon.neutral.outline-fill": "S:74a4ff152b1ead50ac5e41aeabe070c1ad420550,", - "color.component.split-button.icon.neutral.outline": "S:1cefa4b278deb32afe59ee5546ee67b99e093bc8,", - "color.component.split-button.icon.neutral.transparent": "S:39493d9411bd8c658aed1523e5642ac338f55fcd,", - "color.component.split-button.icon.danger.solid": "S:ab8558af1d90ad320bcd92554a80f353127cf89a,", - "color.component.split-button.icon.danger.outline-fill": "S:97c74f60525f45239fe53763c6e471e3fcc61e72,", - "color.component.split-button.icon.danger.outline": "S:f14067e96e98fdbad3d366c286c40061e80b8c67,", - "color.component.split-button.icon.danger.transparent": "S:2f97ebe516164d2c730c09fd216240dcd8e5d457,", - "color.component.split-button.background.brand.solid": "S:ea712011b95d77b2e30b54bcd04a9f5bb62370dc,", - "color.component.split-button.background.brand.outline-fill": "S:6f5343d4c5b6754d4fc5d8eca2705fd44bfc086c,", - "color.component.split-button.background.inverse.solid": "S:6317361fa45ebd804d1b13a6ca0d6be51829427f,", - "color.component.split-button.background.inverse.outline-fill": "S:206b2cd258d06abe0368fdba23ca63d5b3b83289,", - "color.component.split-button.background.neutral.solid": "S:3df992cda042ff8b2a18398a9290c4d88d51cc3d,", - "color.component.split-button.background.neutral.outline-fill": "S:d912dac2ce7a1d5735b7bc6a42050c2fc82855ab,", - "color.component.split-button.background.danger.solid": "S:e20a29f1f74d4acdc856787a117ffcbcc721b15b,", - "color.component.split-button.background.danger.outline-fill": "S:22a0c7516594731164e359952665a34d57b82ca2,", - "color.component.split-button.border.brand.outline-fill": "S:518e08e4bfa6d8e1695285e178177e12933730eb,", - "color.component.split-button.border.brand.outline": "S:6ade724bdd13e248db0ae3b4e72acd238b72c711,", - "color.component.split-button.border.inverse.outline-fill": "S:de22e61ffec005932bac0f524f4310475d7e4c21,", - "color.component.split-button.border.inverse.outline": "S:2048046d774279b6aed9eea9100d28575b13f0b6,", - "color.component.split-button.border.neutral.outline-fill": "S:f89e12b2e1ab2de3832186d2cf5be4cae3fa89f2,", - "color.component.split-button.border.neutral.outline": "S:3f4cb52fe79c4117fb9cf8126f189d75536d34da,", - "color.component.split-button.border.danger.outline-fill": "S:c1d0119b28d46c15c92720084cf400d7d107d84e,", - "color.component.split-button.border.danger.outline": "S:e00804370d3c41e9c35e8bcb83e8c05e9c88acb7,", - "color.component.split-button.divider.brand.solid": "S:1a5ca48860c06ab06a22b4e7ce0b47413dbe546d,", - "color.component.split-button.divider.brand.outline-fill": "S:755fa548d84b00d15a8a254eb53b34d66f587d46,", - "color.component.split-button.divider.brand.outline": "S:63e081f03cdb349650fb14668374d3304d44a31f,", - "color.component.split-button.divider.brand.transparent": "S:2c9e7958c52f49e92102ae36638281187bb02de1,", - "color.component.split-button.divider.inverse.solid": "S:5750d47dd7aa251e055f21dcf86081bbbb3ddaa5,", - "color.component.split-button.divider.inverse.outline-fill": "S:db51f814a5669143002e6c6853590a53c1a4bf3e,", - "color.component.split-button.divider.inverse.outline": "S:6f1fce1323a8826b074a7e7115379d19b6f5e5bb,", - "color.component.split-button.divider.inverse.transparent": "S:03f47e00c40f31adeb3f40bcc57e94971093ddea,", - "color.component.split-button.divider.neutral.solid": "S:e352c6e6c5b88f97112c24afb81d9c94d416498e,", - "color.component.split-button.divider.neutral.outline-fill": "S:4e5c9e305d43dac5aae6325e69ee7fd27e0e47fa,", - "color.component.split-button.divider.neutral.outline": "S:4349ad6b5d96fe7612a059b96fb383731d65fa35,", - "color.component.split-button.divider.neutral.transparent": "S:dafa195f03265cb5859a876972a7cf84018a2e6b,", - "color.component.split-button.divider.danger.solid": "S:1a9daf87b3d9d5dae2cdd1426c681c0733bc22b8,", - "color.component.split-button.divider.danger.outline-fill": "S:15bd1b4566da4161afe6173deb7db13416cb2f8c,", - "color.component.split-button.divider.danger.outline": "S:e3328b70eb8d522af149a77efeef90963bf02523,", - "color.component.split-button.divider.danger.transparent": "S:87e395d0f52658b5fb11fc4d3a3aa2a780f42bae,", - "color.component.fab.font.brand.solid": "S:4e32d4beb5ae5e6b89181e73bffa0bd68511cfd6,", - "color.component.fab.font.brand.outline-fill": "S:40b7adce591b56fc26d3e0106d822ce645eab98c,", - "color.component.fab.font.inverse.solid": "S:4baaef83cc1c692361f9d2ad183832c32480c2d7,", - "color.component.fab.font.inverse.outline-fill": "S:a165c9e300fbe507bd003d73a4a7259d4526766b,", - "color.component.fab.font.neutral.solid": "S:a6480a631a1682be927e985e6e9b7730800c611f,", - "color.component.fab.font.neutral.outline-fill": "S:e3530d10e71a683d5660be777d5000274cc3c30b,", - "color.component.fab.font.danger.solid": "S:ebc16f3cbae4d3e4df721cd6d5c719d3d35efa7a,", - "color.component.fab.font.danger.outline-fill": "S:eeadea227db84065b150e1ab8e567ff41a46e026,", - "color.component.fab.icon.brand.solid": "S:cac1a897cb4bd33a216395e137954ee9d54130be,", - "color.component.fab.icon.brand.outline-fill": "S:909aa3aa4117624ac62ded48d9948d49e2c23db4,", - "color.component.fab.icon.inverse.solid": "S:9ebec9ea48df92549fb3616f8b40e7742b7dc114,", - "color.component.fab.icon.inverse.outline-fill": "S:b1801cd288f53a966d6dd5fb35c40145fd12f37b,", - "color.component.fab.icon.neutral.solid": "S:9aca318c01a0067623173002baa19ef8c801f937,", - "color.component.fab.icon.neutral.outline-fill": "S:833ea732836c9b28d12e49763448596c9a2eb1e7,", - "color.component.fab.icon.danger.solid": "S:ac3f54c0a60d518f2f14806a93a6f02549842b0a,", - "color.component.fab.icon.danger.outline-fill": "S:331d6656a963fbc17dd7660e9f90b8cb93cdcf68,", - "color.component.fab.background.brand.solid": "S:29dd97a6bf86871b47d513cdcafac7ab097c5f7b,", - "color.component.fab.background.brand.outline-fill": "S:e70d40651c8a6a20c420931ccb7c901eddb2cc55,", - "color.component.fab.background.inverse.solid": "S:72f07682f4fdb63d651c2e66dfbf3ef215453584,", - "color.component.fab.background.inverse.outline-fill": "S:79b41ef9bd83960eb55290625ffdc64a1840b05a,", - "color.component.fab.background.neutral.solid": "S:5223d14210fda641018d54d3f6c86636a3df8a6c,", - "color.component.fab.background.neutral.outline-fill": "S:68dc2bf07a9acec410c390b6d9846f0172f6254d,", - "color.component.fab.background.danger.solid": "S:9f3526070f761c3a9e7c95da320031a9b3cccc27,", - "color.component.fab.background.danger.outline-fill": "S:911e312ef9a054d4564c2eb77f35984eecb15814,", - "color.component.fab.border.brand.outline-fill": "S:fadc73523cf022e39522d46b1648b05f4e21d254,", - "color.component.fab.border.brand.solid": "S:7891d04c8d0777b99dc52e7c08371b0a5f4966d8,", - "color.component.fab.border.inverse.outline-fill": "S:a8427726b44bee366d22661a759bb0f46874e110,", - "color.component.fab.border.inverse.solid": "S:a286d7cf673e68334e0d4a33de793d4bd167f06c,", - "color.component.fab.border.neutral.outline-fill": "S:877348195b4cfd3dc374043fe3c074977acbb828,", - "color.component.fab.border.neutral.solid": "S:51a047ab604092b7a8e37bf3eb27a5b2c7a21f9b,", - "color.component.fab.border.danger.outline-fill": "S:fe303a8ec6a9e360961d219df08e21ec262f4425,", - "color.component.fab.border.danger.solid": "S:22269449878c68bbb26b6f7460dc61bd6e859c8c,", - "color.component.combobox.icon.default.light": "S:a1fc6c908b1cbf66860f5c7fa57284067e55ea69,", - "color.component.combobox.icon.dropdown.light": "S:bf19f7f6dd39def8940f138977c44bb1c955cd2e,", - "color.component.combobox.border.light": "S:1809b3436041a9efee9367c3ee7a505e00d8354b,", - "color.component.combobox.background.default.light": "S:d6dd849a4edd632232ae88d58b849475bb0ef98e,", - "color.component.combobox.background.item-container.light": "S:68cdaed513c49c473be881a5b846b37ffb2c2c46,", - "color.component.combobox.font": "S:9233044f0abbf86b4b9682e5a95e5dfe8972290a,", - "color.component.combobox-item.font.default.light": "S:10ec0f419a7ded5bb978e9946fffe17012537271,", - "color.component.combobox-item.font.selected.light": "S:7dbaf2711ef406a835d2a6559e2f5234b96aa504,", - "color.component.combobox-item.font.group-title.light": "S:e845d6d5b2edd60e0435f7245edbd175f13b2792,", - "color.component.combobox-item.icon.default.light": "S:52476173d2814b706604c7dad012219152befab4,", - "color.component.combobox-item.icon.default.selected.light": "S:35147473eec175c8dc428d948c9afcfc1bd508f6,", - "color.component.combobox-item.icon.select.light": "S:4c78423abb6c3cfd6b6f108e1c60ce9ae1e43a75,", - "color.component.combobox-item.border.light": "S:6044e1231ba3622f7f58d2a01b97110e55637dce,", - "color.component.dropdown.background.default.light": "S:8b6485ab270795af43cc1a3cb770281c5352a907,", - "color.component.dropdown-item.font.default.light": "S:a861835f7600f7d4b4a0e614cd46c7651fb9566f,", - "color.component.dropdown-item.font.selected.light": "S:a804ca2b38831f2e6912f11219544c677ce793c7,", - "color.component.dropdown-item.font.group-title.light": "S:9035f6df8c52b56f7b121431bc4166e60850ec16,", - "color.component.dropdown-item.icon.default.light": "S:80aafd08be54db99c5a550931fb8dd066a2c1b42,", - "color.component.dropdown-item.icon.default.selected.light": "S:6bbf901208a3345bd2e69ac8fa4330d9ff7b8411,", - "color.component.dropdown-item.icon.select.light": "S:b93f59b6c1e2d9c629c0668f5a2911e4ee2ccba1,", - "color.component.dropdown-item.border.light": "S:03488e4f77893ca26ff903fd5b4d6ce25a479a85,", - "color.component.segmented-control.border.light": "S:a1a3cc1ba11888a4bd274d664dd7ba9244e490e5,", - "color.component.segmented-control.background.light": "S:ab29f653c71ea42adb6063d795d17fab3131d70e,", - "color.component.segmented-control-item-.font.solid.default.light": "S:cc0fa7734e241b562d9ea680cd6af67dfb672854,", - "color.component.segmented-control-item-.font.solid.checked.light": "S:498975a6249729928286aea1816b8570ec9e9b01,", - "color.component.segmented-control-item-.font.outline.default.light": "S:83f628ee9ad9b0b5490041e938708f632e2449c5,", - "color.component.segmented-control-item-.font.outline.checked.light": "S:474c0363c6f2df9811ad100bce39c39c5c848bee,", - "color.component.segmented-control-item-.icon.solid.default.light": "S:434ca04bb6905cb097161463f00da2a7dca6bdfd,", - "color.component.segmented-control-item-.icon.solid.checked.light": "S:179a58ab80ba76b0a4342d1fbd2af16d1553c704,", - "color.component.segmented-control-item-.icon.outline.checked.light": "S:d148a648a5d0e4193234b1d6215eb0085d37d3dc,", - "color.component.segmented-control-item-.icon.outline.default.light": "S:8821bcbc5dc31a15fd5eb94697e2d835dd6b4c0a,", - "color.component.segmented-control-item-.border.outline.checked.light": "S:99643c865ea63315c4848f8164113a31ff09c590,", - "color.component.segmented-control-item-.background.solid.checked.light": "S:374adf02c78964c8303a5d60000deeca12176530," "color.warning.press": "S:adcc39cebb2d0c3d87575e1e302b7b3db8de7b9a," } }, @@ -754,15 +222,6 @@ "component/tip": "source", "component/tooltip": "source", "component/tree-item": "source", - "component/split-button": "source", - "component/dropdown-item": "source", - "component/combobox-item": "source", - "component/flow-header": "source", - "component/notice": "source", - "component/alert": "source", - "component/list-item": "source", - "component/segmented-control-item": "source", - "component/select": "source" "core": "source", "semantic": "source" }, @@ -887,12 +346,6 @@ "component/slider-range": "enabled", "component/slider": "enabled", "component/split-button": "enabled", - "component/dropdown-item": "enabled", - "component/combobox-item": "enabled", - "component/flow-header": "enabled", - "component/list-item": "enabled", - "component/segmented-control-item": "enabled", - "component/select": "enabled" "component/stepper-item": "enabled", "component/stepper": "enabled", "component/switch": "enabled", @@ -2685,138 +2138,6 @@ "split-button.font.inverse.transparent.dark": "S:c22b36e585444176b35d2985759be4ab13f7912f,", "split-button.font.inverse.transparent.light": "S:57697b05e86e28fec3897f4cd70e8d71cd10ca9b,", "split-button.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359,", - "fab.border.brand.solid.light": "S:bd7ea9269499e13add0ce3b7c573f0d5cf43477f,", - "fab.border.brand.solid.dark": "S:c675794954c819b4aa0f731b8a492dda370f1b1b,", - "fab.border.inverse.solid.light": "S:573938363514bd57d61b7938a8c2337aa45af89b,", - "fab.border.inverse.solid.dark": "S:79d49b3abca4ba1459da9ebafe07d1efd4b01763,", - "fab.border.neutral.solid.light": "S:c333cbb4c8def6f57023cdd369fe5af2c03316bc,", - "fab.border.neutral.solid.dark": "S:d042c2179e1697999fcc9c39b2442cd82470a8d3,", - "fab.border.danger.solid.light": "S:6afa6160f17831b2c371f07eb2f529f79c75cb8b,", - "fab.border.danger.solid.dark": "S:4cdc01ddae3da56ebf6711769e5c59dcb5af076d,", - "dropdown-item.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "dropdown-item.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "dropdown-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", - "dropdown-item.font.selected.dark": "S:b4e880155c844b1765726290556b2d29d0f08f33,", - "dropdown-item.font.group-title.light": "S:31f32a2568e9993f9a0ab87652b766323c5f8c2c,", - "dropdown-item.font.group-title.dark": "S:d721d4da4208f405d7774d69f3ef379fbdeaf077,", - "dropdown-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "dropdown-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "dropdown-item.icon.default.selected.light": "S:b720f936648db74a22f04b075700ae48e938d222,", - "dropdown-item.icon.default.selected.dark": "S:5a55ca37cc14f021a69484aedbc347a0f190ac85,", - "dropdown-item.icon.select.light": "S:e1e32c1fe7ee7d08cb409d5dcd1dcc08c84e164c,", - "dropdown-item.icon.select.dark": "S:b4c84785f94ba696d082f6c2059e29738f167449,", - "dropdown-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "dropdown-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "dropdown-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", - "dropdown-item.font.default.md": "S:dfd9085fe214c3c65b4140511eb8fa5ae2b7d7c6,", - "dropdown-item.font.default.lg": "S:94893ba1668f2671af99cbef2e35361cd7d3d60b,", - "dropdown-item.font.selected.sm": "S:688d88aa531f806ed7f5472dbd94cb111b282e9a,", - "dropdown-item.font.selected.md": "S:744e56dc530590684c79e51206e6047cc86acbeb,", - "dropdown-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", - "dropdown-item.font.group-title.sm": "S:eb4ec061efa8034cbbe670c055585e4797e5bb46,", - "dropdown-item.font.group-title.md": "S:bc23c51d545229bbfbb38158cfd41ce38637c3eb,", - "dropdown-item.font.group-title.lg": "S:e3b5b3fea87360db4033c8305010066eb11e4334,", - "dropdown.box-shadow.sm": "S:fc6af9b0932b35a430b5801d07d2a09091f54d89,", - "dropdown.box-shadow.md": "S:2d1be1b2815911047a2998daf5f8a8900086776f,", - "dropdown.box-shadow.lg": "S:e13b51b3501db393d25693242284df7ece2e52c4,", - "flow-header.font.light": "S:86e4720888e2ca215f9531938c20cccc6af0b52b,", - "flow-header.font.dark": "S:3427dcdb89a799a51eebad3bfdd6aea5750dc259,", - "flow-header.icon.light": "S:cf21b60b333287f0d603b638297a61e548f743d6,", - "flow-header.icon.dark": "S:2246d356a1f6f8b9706df17986f8452f8b93916d,", - "flow-header.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "flow-header.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "flow-header.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "flow-header.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "combobox-item.font.default.light": "S:da358d253b4d43ea28103a02475ca67ed10b83e8,", - "combobox-item.font.default.dark": "S:4c5d135c09d35ba6ab69fd50adcc3e6b908c42ec,", - "combobox-item.font.selected.light": "S:3b4cda2c9119457de5ad4a804ffc3a05fd8b19bf,", - "combobox-item.font.selected.dark": "S:b4e880155c844b1765726290556b2d29d0f08f33,", - "combobox-item.font.group-title.light": "S:31f32a2568e9993f9a0ab87652b766323c5f8c2c,", - "combobox-item.font.group-title.dark": "S:d721d4da4208f405d7774d69f3ef379fbdeaf077,", - "combobox-item.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "combobox-item.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "combobox-item.icon.default.selected.light": "S:b720f936648db74a22f04b075700ae48e938d222,", - "combobox-item.icon.default.selected.dark": "S:5a55ca37cc14f021a69484aedbc347a0f190ac85,", - "combobox-item.icon.select.light": "S:e1e32c1fe7ee7d08cb409d5dcd1dcc08c84e164c,", - "combobox-item.icon.select.dark": "S:b4c84785f94ba696d082f6c2059e29738f167449,", - "combobox-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "combobox-item.border.dark": "S:fa33ba73a117ad370052cae12038283a83aa20a2,", - "combobox.icon.default.light": "S:067ef6b2b2f7841097cd57103f36ae8d9ccfa41e,", - "combobox.icon.default.dark": "S:3dae607f383e8b2873c999e25876266505675bd5,", - "combobox.icon.dropdown.light": "S:029e2b35c13cffd1a1afbc844b8b58fc3852dc94,", - "combobox.icon.dropdown.dark": "S:f29ebf3665efba0f4a7a056fa542c9e224518616,", - "flow-header.font.heading.md": "S:a753ee474e5276d2c3253cbf0c389bb17f0d993d,", - "flow-header.font.description.md": "S:2e204d97e7e530c52c455d00cd8e6354b2a81230,", - "combobox-item.font.default.sm": "S:a8532a7efd916961e051299aba6b625eeab28cd3,", - "combobox-item.font.default.md": "S:dfd9085fe214c3c65b4140511eb8fa5ae2b7d7c6,", - "combobox-item.font.default.lg": "S:94893ba1668f2671af99cbef2e35361cd7d3d60b,", - "combobox-item.font.selected.sm": "S:688d88aa531f806ed7f5472dbd94cb111b282e9a,", - "combobox-item.font.selected.md": "S:744e56dc530590684c79e51206e6047cc86acbeb,", - "combobox-item.font.selected.lg": "S:2f1f90d9c97d65c8c6987300fad024e321bdbc38,", - "combobox-item.font.group-label.sm": "S:dffdf12b2e2a5398ea9615f8ee13ac3029fd930a,", - "combobox-item.font.group-label.md": "S:dcc86485ff3b666aa63f6ee85643190b6f8fa3cc,", - "combobox-item.font.group-label.lg": "S:8473e535cb4b48c81763861bc5f7cf39cfdbf0cc,", - "list-item.font.label.light": "S:fe3861b31c9dd57205239064aadf1a80b6703ac8,", - "list-item.font.label.dark": "S:a136eb68011e64241edb98e0fade045293e72706,", - "list-item.font.description.light": "S:756bd2c5199ccad18c6ae14ee52345f24153dfa4,", - "list-item.font.description.dark": "S:82f969d559027f722de3d4c50d2fb72202a0fc39,", - "list-item.font.group-heading.light": "S:08404e476f328eb340684e7e42d23d6709655b9d,", - "list-item.font.group-heading.dark": "S:a36411fb0f7d1ef2470a11cb897f1d03292d17cd,", - "list-item.icon.dropdown.light": "S:029e2b35c13cffd1a1afbc844b8b58fc3852dc94,", - "list-item.icon.dropdown.dark": "S:f29ebf3665efba0f4a7a056fa542c9e224518616,", - "list-item.icon.select.light": "S:e1e32c1fe7ee7d08cb409d5dcd1dcc08c84e164c,", - "list-item.icon.select.dark": "S:b4c84785f94ba696d082f6c2059e29738f167449,", - "list-item.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "list-item.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "list-item.background.group-heading.light": "S:31a5440180e9d223d23f6c12248ce2b794706185,", - "list-item.background.group-heading.dark": "S:f914ea9406405b8099946ab0e8cc2c7b8be86e6a,", - "list-item.icon.content-end-icon.light": "S:48ada955fc5d0b70980caca908e1ac41b3fe8384,", - "list-item.icon.content-end-icon.dark": "S:af6c2896b185263759e051e01bbfea5496a95420,", - "list-item.font.label.default": "S:7d7d6b93e179cf35a0583519cf0e0dfef6e30680,", - "list-item.font.description.default": "S:a2ea2fc7df6b80ab8c6a22a2fa028de390f696e7,", - "list-item.font.group-heading.default": "S:c90422ca5f91de42e8d36f84a34fd8c22452b94f,", - "list-item.border.light": "S:f30756a73cf9f3c9d0354d1bd5f7e654240f7611,", - "list-item.border.active.light": "S:0145e9638c1af5f66608a9fc48c57d875f179f5d,", - "list-item.border.active.dark": "S:08fcab70ea50e3be85231e7c195fbf97137be7b0,", - "combobox.backgrounddefault.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "combobox.font.placholder.light": "S:3d1d3f4e2f3964d2376ab9a9286f562420e990c4,", - "combobox.font.placholder.dark": "S:1400c6c07108c127fbd3f7d29b0c7f062f359c56,", - "combobox.font.value.light": "S:23909c9b4b92ecb74f2de9f29285336753c66a7b,", - "combobox.font.value.dark": "S:9959df201873adc552cadefa4f14dc4c379871a6,", - "combobox.background.item-container.light": "S:a0c393591ad7ac37b2e2311eb188c2595d868708,", - "combobox.background.item-container.dark": "S:af47c3bb6cb82101c0029f4999b6ea482391982b,", - "combobox.font.placeholder.sm": "S:b6ed6f5a3f6604f1c9a00add3537c712b124fed6,", - "combobox.font.placeholder.md": "S:cc361ae0ca454423a5cf984b9d602b6baae7bd9d,", - "combobox.font.placeholder.lg": "S:7bdee616745bbae469e6fa636fca28c9870ad4d7,", - "combobox.font.value.sm": "S:9d7007fb89ca8cb7ccffeb06c5ccc9c482b2e1bc,", - "combobox.font.value.md": "S:6caf430de21a8bb3993413cdd9f3b6ddbfaed3fa,", - "combobox.font.value.lg": "S:2c2e51e5ec5318c364250fcfa223481225d2a749,", - "combobox.item-container.shadow": "S:d2fef376e4a99dc52afc9d22fbd66488fa91c3cf,", - "segmented-control.background.light": "S:e9f7aa7a393bae37122ffee08d9b2bdf9ba2b646,", - "segmented-control.background.dark": "S:ae675fa609e690e4af981c7796a6debf62e6f42f,", - "segmented-control-item.font.solid.default.light": "S:642fc328ed86aa94e29f6f2759dbba1712c9269e,", - "segmented-control-item.font.solid.default.dark": "S:a89792bec81124cea362db5e8b0fb78c037581ff,", - "segmented-control-item.font.outline.default.light": "S:905673d3e3526665241c2c878e451a8457f41d57,", - "segmented-control-item.font.outline.default.dark": "S:68abf0c4557368dca8e3448ea038f8ca4879b07c,", - "segmented-control-item.icon.solid.default.light": "S:9c8ed4ff26439af5b2860e5a0cff1e74746267f7,", - "segmented-control-item.icon.solid.default.dark": "S:49b450729c3f3260c5a2f2a1ed695b83ee1756a1,", - "segmented-control-item.icon.outline.checked.light": "S:4aee22379b0e9f6447f5d55e54b614fa813eb6d9,", - "segmented-control-item.icon.outline.checked.dark": "S:abf936a4d9354626e0d4f19821a138f6d47e5fc7,", - "segmented-control-item.border.outline.checked.light": "S:12aa76300c0fe24e498e868ae5f7eb576d491b33,", - "segmented-control-item.border.outline.checked.dark": "S:793004104d0cc84702feaa2b25fe133e67dc2ea6,", - "segmented-control-item.background.solid.checked.light": "S:88a179e6edd745b991744ceda002358c1eb6da97,", - "segmented-control-item.background.solid.checked.dark": "S:03ffc624e01c7f1e35e82affcfdd37f838f2a6ba,", - "segmented-control-item.font.solid.checked.light": "S:f49db657f940c34986ff48b31e38bebf4d5d8867,", - "segmented-control-item.font.solid.checked.dark": "S:36466bc5e0d86168d2659eba98af2a3f7c25cf5b,", - "segmented-control-item.font.outline.checked.light": "S:c79f9d3635521967235d83da3d315e7c9e12374d,", - "segmented-control-item.font.outline.checked.dark": "S:76fde4af0688068534837931e0578e69d326603f,", - "segmented-control-item.icon.solid.checked.light": "S:6cd8ed86efae7fc021e6763a8cf985577b01b74b,", - "segmented-control-item.icon.solid.checked.dark": "S:26e58e479b3fc6e831e37df57ad9b2c793af39e7,", - "segmented-control-item.icon.outline.default.light": "S:ff5d8b6ff22ac0c2db72a575a5ce2fc759e7996b,", - "segmented-control-item.icon.outline.default.dark": "S:fc16513ab811a61d2e0f76f81be7de6485b0ca41,", - "segmented-control-item.font.sm": "S:50ab9ea96bec50d6263e920d0728510c10ab56ce,", - "segmented-control-item.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", - "segmented-control-item.font.lg": "S:8ed332016edb7a425ae6fb4fea8f5b80a57ca359," "split-button.font.md": "S:c602d768d7022f3395aee2c01228a93b72a1350e,", "split-button.font.neutral.outline-fill.dark": "S:cd76dcc766ec224f3e0563f17332c3e13f25903f,", "split-button.font.neutral.outline-fill.light": "S:b92ab0d0e3a31703d61022c2ede0a5edea6114f5,", diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index 697d4f2208b..c7d36b9446b 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -2045,19 +2045,19 @@ }, "neutral": { "solid": { - "value": "$split-button.font.neutral.solid.light", + "value": "$split-button.font.inverse.solid.light", "type": "color" }, "outline-fill": { - "value": "$split-button.font.neutral.outline-fill.dark", + "value": "$split-button.font.inverse.outline-fill.dark", "type": "color" }, "outline": { - "value": "$split-button.font.neutral.outline.dark", + "value": "$split-button.font.inverse.outline.dark", "type": "color" }, "transparent": { - "value": "$split-button.font.neutral.transparent.dark", + "value": "$split-button.font.inverse.transparent.dark", "type": "color" } }, @@ -2119,19 +2119,19 @@ }, "neutral": { "solid": { - "value": "$split-button.icon.neutral.solid.dark", + "value": "$split-button.icon.inverse.solid.dark", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.neutral.outline-fill.dark", + "value": "$split-button.icon.inverse.outline-fill.dark", "type": "color" }, "outline": { - "value": "$split-button.icon.neutral.outline.dark", + "value": "$split-button.icon.inverse.outline.dark", "type": "color" }, "transparent": { - "value": "$split-button.icon.neutral.transparent.dark", + "value": "$split-button.icon.inverse.transparent.dark", "type": "color" } }, @@ -2482,256 +2482,6 @@ } } } - }, - "combobox": { - "icon": { - "default": { - "light": { - "value": "$combobox.icon.default.dark", - "type": "color" - } - }, - "dropdown": { - "light": { - "value": "$combobox.icon.dropdown.dark", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$combobox.border.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$combobox.background.default.dark", - "type": "color" - } - }, - "item-container": { - "light": { - "value": "$combobox.background.item-container.dark", - "type": "color" - } - } - }, - "font": { - "placholder": { - "light": { - "value": "$combobox.font.placholder.dark", - "type": "color" - } - }, - "value": { - "light": "[object Object]" - }, - "type": "color" - } - }, - "combobox-item": { - "font": { - "default": { - "light": { - "value": "$combobox-item.font.default.dark", - "type": "color" - } - }, - "selected": { - "light": { - "value": "$combobox-item.font.selected.dark", - "type": "color" - } - }, - "group-title": { - "light": { - "value": "$combobox-item.font.group-title.dark", - "type": "color" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$combobox-item.icon.default.dark", - "type": "color" - }, - "selected": { - "light": { - "value": "$combobox-item.icon.default.selected.light", - "type": "color" - } - } - }, - "select": { - "light": { - "value": "$combobox-item.icon.select.dark", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$combobox-item.border.dark", - "type": "color" - } - } - }, - "dropdown": { - "background": { - "default": { - "light": { - "value": "$dropdown.background.default.dark", - "type": "color" - } - } - } - }, - "dropdown-item": { - "font": { - "default": { - "light": { - "value": "$dropdown-item.font.default.dark", - "type": "color" - } - }, - "selected": { - "light": { - "value": "$dropdown-item.font.selected.dark", - "type": "color" - } - }, - "group-title": { - "light": { - "value": "$dropdown-item.font.group-title.dark", - "type": "color" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$dropdown-item.icon.default.dark", - "type": "color" - }, - "selected": { - "light": { - "value": "$dropdown-item.icon.default.selected.light", - "type": "color" - } - } - }, - "select": { - "light": { - "value": "$dropdown-item.icon.select.dark", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$dropdown-item.border.dark", - "type": "color" - } - } - }, - "segmented-control": { - "border": { - "light": { - "value": "$segmented-control.border.dark", - "type": "color" - } - }, - "background": { - "light": { - "value": "$segmented-control.background.dark", - "type": "color" - } - } - }, - "segmented-control-item-": { - "font": { - "solid": { - "default": { - "light": { - "value": "$segmented-control-item.font.solid.default.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$segmented-control-item.font.solid.checked.dark", - "type": "color" - } - } - }, - "outline": { - "default": { - "light": { - "value": "$segmented-control-item.font.outline.default.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$segmented-control-item.font.outline.checked.dark", - "type": "color" - } - } - } - }, - "icon": { - "solid": { - "default": { - "light": { - "value": "$segmented-control-item.icon.solid.default.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$segmented-control-item.icon.solid.checked.dark", - "type": "color" - } - } - }, - "outline": { - "checked": { - "light": { - "value": "$segmented-control-item.icon.outline.checked.dark", - "type": "color" - } - }, - "default": { - "light": { - "value": "$segmented-control-item.icon.outline.default.dark", - "type": "color" - } - } - } - }, - "border": { - "outline": { - "checked": { - "light": { - "value": "$segmented-control-item.border.outline.checked.dark", - "type": "color" - } - } - } - }, - "background": { - "solid": { - "checked": { - "light": { - "value": "$segmented-control-item.background.solid.checked.dark", - "type": "color" - } - } - } - } } } } diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 17617d91bf0..86fb5e422bf 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -2067,19 +2067,19 @@ }, "neutral": { "solid": { - "value": "$split-button.font.neutral.solid.light", + "value": "$split-button.font.inverse.solid.light", "type": "color" }, "outline-fill": { - "value": "$split-button.font.neutral.outline-fill.light", + "value": "$split-button.font.inverse.outline-fill.light", "type": "color" }, "outline": { - "value": "$split-button.font.neutral.outline.light", + "value": "$split-button.font.inverse.outline.light", "type": "color" }, "transparent": { - "value": "$split-button.font.neutral.transparent.light", + "value": "$split-button.font.inverse.transparent.light", "type": "color" } }, @@ -2141,19 +2141,19 @@ }, "neutral": { "solid": { - "value": "$split-button.icon.neutral.solid.light", + "value": "$split-button.icon.inverse.solid.light", "type": "color" }, "outline-fill": { - "value": "$split-button.icon.neutral.outline-fill.light", + "value": "$split-button.icon.inverse.outline-fill.light", "type": "color" }, "outline": { - "value": "$split-button.icon.neutral.outline.light", + "value": "$split-button.icon.inverse.outline.light", "type": "color" }, "transparent": { - "value": "$split-button.icon.neutral.transparent.light", + "value": "$split-button.icon.inverse.transparent.light", "type": "color" } }, @@ -2504,256 +2504,6 @@ } } } - }, - "combobox": { - "icon": { - "default": { - "light": { - "value": "$combobox.icon.default.light", - "type": "color" - } - }, - "dropdown": { - "light": { - "value": "$combobox.icon.dropdown.light", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$combobox.border.light", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$combobox.background.default.light", - "type": "color" - } - }, - "item-container": { - "light": { - "value": "$combobox.background.item-container.light", - "type": "color" - } - } - }, - "font": { - "placholder": { - "light": { - "value": "$combobox.font.placholder.light", - "type": "color" - } - }, - "value": { - "light": "[object Object]" - }, - "type": "color" - } - }, - "combobox-item": { - "font": { - "default": { - "light": { - "value": "$combobox-item.font.default.light", - "type": "color" - } - }, - "selected": { - "light": { - "value": "$combobox-item.font.selected.light", - "type": "color" - } - }, - "group-title": { - "light": { - "value": "$combobox-item.font.group-title.light", - "type": "color" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$combobox-item.icon.default.light", - "type": "color" - }, - "selected": { - "light": { - "value": "$combobox-item.icon.default.selected.light", - "type": "color" - } - } - }, - "select": { - "light": { - "value": "$combobox-item.icon.select.light", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$combobox-item.border.light", - "type": "color" - } - } - }, - "dropdown": { - "background": { - "default": { - "light": { - "value": "$dropdown.background.default.light", - "type": "color" - } - } - } - }, - "dropdown-item": { - "font": { - "default": { - "light": { - "value": "$dropdown-item.font.default.light", - "type": "color" - } - }, - "selected": { - "light": { - "value": "$dropdown-item.font.selected.light", - "type": "color" - } - }, - "group-title": { - "light": { - "value": "$dropdown-item.font.group-title.light", - "type": "color" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$dropdown-item.icon.default.light", - "type": "color" - }, - "selected": { - "light": { - "value": "$dropdown-item.icon.default.selected.light", - "type": "color" - } - } - }, - "select": { - "light": { - "value": "$dropdown-item.icon.select.light", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$dropdown-item.border.light", - "type": "color" - } - } - }, - "segmented-control": { - "border": { - "light": { - "value": "$segmented-control.border.light", - "type": "color" - } - }, - "background": { - "light": { - "value": "$segmented-control.background.light", - "type": "color" - } - } - }, - "segmented-control-item": { - "font": { - "solid": { - "default": { - "light": { - "value": "$segmented-control-item.font.solid.default.light", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$segmented-control-item.font.solid.checked.light", - "type": "color" - } - } - }, - "outline": { - "default": { - "light": { - "value": "$segmented-control-item.font.outline.default.light", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$segmented-control-item.font.outline.checked.light", - "type": "color" - } - } - } - }, - "icon": { - "solid": { - "default": { - "light": { - "value": "$segmented-control-item.icon.solid.default.light", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$segmented-control-item.icon.solid.checked.light", - "type": "color" - } - } - }, - "outline": { - "checked": { - "light": { - "value": "$segmented-control-item.icon.outline.checked.light", - "type": "color" - } - }, - "default": { - "light": { - "value": "$segmented-control-item.icon.outline.default.light", - "type": "color" - } - } - } - }, - "border": { - "outline": { - "checked": { - "light": { - "value": "$segmented-control-item.border.outline.checked.light", - "type": "color" - } - } - } - }, - "background": { - "solid": { - "checked": { - "light": { - "value": "$segmented-control-item.background.solid.checked.light", - "type": "color" - } - } - } - } } } } diff --git a/tokens/component/button.json b/tokens/component/button.json index 7cd349cd65c..b5ea778ffd0 100644 --- a/tokens/component/button.json +++ b/tokens/component/button.json @@ -88,11 +88,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } } @@ -258,11 +258,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } } @@ -490,11 +490,11 @@ "neutral": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.3.light", + "value": "$semantic.ui.color.foreground.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.3.dark", + "value": "$semantic.ui.color.foreground.1.dark", "type": "color" } }, @@ -522,11 +522,11 @@ }, "outline-fill": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } } @@ -613,7 +613,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.4", + "value": "$core.spacing.5", "type": "spacing" } }, @@ -645,20 +645,6 @@ "value": "$core.spacing.7", "type": "spacing" } - }, - "rounded": { - "sm": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.full", - "type": "borderRadius" - } } } } diff --git a/tokens/component/combobox-item.json b/tokens/component/combobox-item.json deleted file mode 100644 index 220137284cd..00000000000 --- a/tokens/component/combobox-item.json +++ /dev/null @@ -1,356 +0,0 @@ -{ - "combobox-item": { - "font": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "selected": { - "sm": { - "value": "$semantic.font.default.medium.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.medium.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - }, - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "group-title": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "group-label": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "selected": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "select": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "space-around": { - "container": { - "level-1": { - "left": { - "default": { - "sm": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.13", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.16", - "type": "spacing" - } - }, - "selected": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - } - }, - "right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - }, - "level-2": { - "left": { - "default": { - "sm": { - "value": "$core.spacing.13", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3 * 6.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.18", - "type": "spacing" - } - }, - "selected": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - } - }, - "right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - }, - "level-3": { - "left": { - "default": { - "sm": { - "value": "$core.spacing.15", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.17", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3 * 11", - "type": "spacing" - } - }, - "selected": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - } - }, - "right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - } - }, - "group-label": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/combobox.json b/tokens/component/combobox.json index 6ec86cd5303..0e85c49cc86 100644 --- a/tokens/component/combobox.json +++ b/tokens/component/combobox.json @@ -1,69 +1,109 @@ { "combobox": { + "font": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + } + }, "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "border": { + "light": { + "value": "$semantic.ui.color.border.1.light", + "type": "color" }, - "dropdown": { + "dark": { + "value": "$semantic.ui.color.border.1.dark", + "type": "color" + } + }, + "background": { + "default": { "light": { - "value": "$semantic.ui.color.text.3.light", + "value": "$semantic.ui.color.background.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.3.dark", + "value": "$semantic.ui.color.background.dark", "type": "color" } } }, - "border": { + "foreground": { "light": { - "value": "$semantic.ui.color.border.input.light", + "value": "$semantic.ui.color.foreground.2.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.border.input.dark", + "value": "$semantic.ui.color.foreground.2.dark", "type": "color" + } + }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, + "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.1", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.2", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.4", "type": "borderWidth" } }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } + "comp-size": { + "sm": { + "value": "$core.sizing.9", + "type": "sizing" }, - "item-container": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } + "md": { + "value": "$core.sizing.11", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.14", + "type": "sizing" } }, "icon-size": { @@ -72,96 +112,40 @@ "type": "sizing" }, "md": { - "value": "$core.sizing.7", + "value": "$core.sizing.9", "type": "sizing" }, "lg": { - "value": "$core.sizing.9", + "value": "$core.sizing.11", "type": "sizing" } }, "space-between": { "sm": { - "value": "$core.spacing.3", + "value": "$core.spacing.9", "type": "spacing" }, "md": { - "value": "$core.spacing.5", + "value": "$core.spacing.11", "type": "spacing" }, "lg": { - "value": "$core.spacing.7", + "value": "$core.spacing.14", "type": "spacing" } }, "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" - } - } - }, - "font": { - "placeholder": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.light.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "placholder": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } + "sm": { + "value": "$core.spacing.7", + "type": "spacing" }, - "value": { - "light": "[object Object]", - "dark": "[object Object]", - "sm": "[object Object]", - "md": "[object Object]", - "lg": "[object Object]" + "md": { + "value": "$core.spacing.9", + "type": "spacing" }, - "type": "other" - }, - "item-container": { - "shadow": { - "value": "{core.box-shadow.2}", - "type": "boxShadow" + "lg": { + "value": "$core.spacing.11", + "type": "spacing" } } } diff --git a/tokens/component/dropdown-item.json b/tokens/component/dropdown-item.json index 9ce7b9e0b8f..15637853b05 100644 --- a/tokens/component/dropdown-item.json +++ b/tokens/component/dropdown-item.json @@ -180,7 +180,7 @@ "type": "spacing" }, "lg": { - "value": "$core.spacing.none", + "value": "$core.spacing.0", "type": "spacing" } } @@ -232,33 +232,17 @@ }, "single": { "left": { - "default": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.13", - "type": "spacing" - } + "sm": { + "value": "$core.spacing.9", + "type": "spacing" }, - "selected": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } + "md": { + "value": "$core.spacing.11", + "type": "spacing" + }, + "lg": { + "value": "$core.spacing.13", + "type": "spacing" } }, "right": { @@ -292,33 +276,17 @@ }, "multi": { "left": { - "default": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.13", - "type": "spacing" - } + "sm": { + "value": "$core.spacing.9", + "type": "spacing" + }, + "md": { + "value": "$core.spacing.11", + "type": "spacing" }, - "selected": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } + "lg": { + "value": "$core.spacing.13", + "type": "spacing" } }, "right": { diff --git a/tokens/component/dropdown.json b/tokens/component/dropdown.json index f81fc30672d..69073b41b28 100644 --- a/tokens/component/dropdown.json +++ b/tokens/component/dropdown.json @@ -1,5 +1,5 @@ { - "select": { + "dropdown": { "background": { "default": { "light": { diff --git a/tokens/component/flow-header.json b/tokens/component/flow-header.json deleted file mode 100644 index 4d78f119f19..00000000000 --- a/tokens/component/flow-header.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "flow-header": { - "font": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "heading": { - "md": { - "value": "$semantic.font.default.medium.0h", - "type": "typography" - } - }, - "description": { - "md": { - "value": "$semantic.font.default.regular.-1h", - "type": "typography" - } - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.3.dark", - "type": "color" - } - }, - "background": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "border-width": { - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "icon-size": { - "md": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "md": { - "value": "$core.spacing.1", - "type": "spacing" - } - }, - "space-around": { - "left-right": { - "md": { - "value": "$core.spacing.5", - "type": "spacing" - } - }, - "top-bottom": { - "md": { - "value": "$core.spacing.6", - "type": "spacing" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/link.json b/tokens/component/link.json index 9726d9013ce..91504e568a8 100644 --- a/tokens/component/link.json +++ b/tokens/component/link.json @@ -39,12 +39,6 @@ "value": "$core.border.border-width.0", "type": "borderWidth" } - }, - "opacity": { - "underline": { - "value": "$core.opacity.40", - "type": "opacity" - } } } } diff --git a/tokens/component/list-item.json b/tokens/component/list-item.json deleted file mode 100644 index 8571a3cfeae..00000000000 --- a/tokens/component/list-item.json +++ /dev/null @@ -1,214 +0,0 @@ -{ - "list-item": { - "font": { - "label": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - }, - "default": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "default": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - } - }, - "group-heading": { - "light": { - "value": "$semantic.ui.color.text.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.2.dark", - "type": "color" - }, - "default": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - } - } - }, - "icon": { - "dropdown": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "select": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "content-end-icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - } - }, - "border-width": { - "default": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - } - }, - "icon-size": { - "default": { - "value": "$core.sizing.7", - "type": "sizing" - } - }, - "space-between": { - "content": { - "default": { - "value": "$core.spacing.0", - "type": "spacing" - } - } - }, - "space-around": { - "group-label": { - "default": { - "value": "$core.spacing.3", - "type": "spacing" - } - }, - "dropdown-icon": { - "level-1": { - "left": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "right": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "top-bottom": { - "value": "$core.spacing.none", - "type": "spacing" - } - }, - "level-2": { - "left": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "right": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "top-bottom": { - "value": "$core.spacing.none", - "type": "spacing" - } - }, - "level-3": { - "left": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "right": { - "value": "$core.spacing.none", - "type": "spacing" - }, - "top-bottom": { - "value": "$core.spacing.none", - "type": "spacing" - } - } - }, - "content": { - "left": { - "value": "$core.spacing.6", - "type": "spacing" - }, - "right": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "top-bottom": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "content-end": { - "icon": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - }, - "selection-icon": { - "single": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "multi": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - }, - "background": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - }, - "group-heading": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - } - }, - "border": { - "active": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - } - } -} \ No newline at end of file diff --git a/tokens/component/segmented-control-item.json b/tokens/component/segmented-control-item.json deleted file mode 100644 index 4d423475002..00000000000 --- a/tokens/component/segmented-control-item.json +++ /dev/null @@ -1,222 +0,0 @@ -{ - "segmented-control-item": { - "font": { - "solid": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "outline": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "solid": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "checked": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "outline": { - "checked": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - }, - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - } - } - }, - "border": { - "outline": { - "checked": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - } - }, - "background": { - "solid": { - "checked": { - "light": { - "value": "$semantic.ui.color.brand.default.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.brand.default.dark", - "type": "color" - } - } - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.10", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.10", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.13", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.3", - "type": "spacing" - } - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.5", - "type": "spacing" - } - } - } -} \ No newline at end of file diff --git a/tokens/component/segmented-control.json b/tokens/component/segmented-control.json index a20451a8030..95f4854a9fc 100644 --- a/tokens/component/segmented-control.json +++ b/tokens/component/segmented-control.json @@ -1,5 +1,39 @@ { "segmented-control": { + "font": { + "default": { + "light": { + "value": "$semantic.ui.color.text.3.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.3.dark", + "type": "color" + } + }, + "sm": { + "value": "$semantic.font.default.bold.-3h", + "type": "typography" + }, + "md": { + "value": "$semantic.font.default.bold.-1h", + "type": "typography" + }, + "lg": { + "value": "$semantic.font.default.bold.0h", + "type": "typography" + }, + "checked": { + "light": { + "value": "$semantic.ui.color.text.inverse.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.text.inverse.dark", + "type": "color" + } + } + }, "border": { "light": { "value": "$semantic.ui.color.border.1.light", @@ -11,26 +45,52 @@ } }, "background": { + "default": { + "light": { + "value": "$semantic.ui.color.background.light", + "type": "color" + }, + "dark": { + "value": "$semantic.ui.color.background.dark", + "type": "color" + } + } + }, + "foreground": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.foreground.2.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.foreground.2.dark", "type": "color" } }, + "border-radius": { + "sm": { + "value": "$core.border.border-radius.4", + "type": "borderRadius" + }, + "md": { + "value": "$core.border.border-radius.5", + "type": "borderRadius" + }, + "lg": { + "value": "$core.border.border-radius.6", + "type": "borderRadius" + } + }, "border-width": { "sm": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.1", "type": "borderWidth" }, "md": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.2", "type": "borderWidth" }, "lg": { - "value": "$core.border.border-width.0", + "value": "$core.border.border-width.4", "type": "borderWidth" } }, @@ -48,31 +108,45 @@ "type": "sizing" } }, + "icon-size": { + "sm": { + "value": "$core.sizing.7", + "type": "sizing" + }, + "md": { + "value": "$core.sizing.9", + "type": "sizing" + }, + "lg": { + "value": "$core.sizing.11", + "type": "sizing" + } + }, "space-between": { "sm": { - "value": "$core.spacing.0", + "value": "$core.spacing.9", "type": "spacing" }, "md": { - "value": "$core.spacing.0", + "value": "$core.spacing.11", "type": "spacing" }, "lg": { - "value": "$core.spacing.0", + "value": "$core.spacing.14", "type": "spacing" } }, "space-around": { "sm": { - "value": "$core.spacing.0", + "value": "$core.spacing.7", "type": "spacing" }, "md": { - "value": "$core.spacing.0", + "value": "$core.spacing.9", "type": "spacing" }, "lg": { - "value": "$core.spacing.0", + "value": "$core.spacing.11", "type": "spacing" } } diff --git a/tokens/component/select.json b/tokens/component/select.json deleted file mode 100644 index 605ec59d330..00000000000 --- a/tokens/component/select.json +++ /dev/null @@ -1,150 +0,0 @@ -{ - "select": { - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "dropdown": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.input.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.input.dark", - "type": "color" - }, - "sm": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.0", - "type": "borderWidth" - } - }, - "background": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "space-around": { - "left-right": { - "sm": { - "value": "$core.spacing.1", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.5", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.7", - "type": "spacing" - } - }, - "top-bottom": { - "sm": { - "value": "$core.spacing.3", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.2", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.4", - "type": "spacing" - } - } - }, - "font": { - "placeholder": { - "sm": { - "value": "$semantic.font.default.regular.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.light.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.regular.0h", - "type": "typography" - } - }, - "placholder": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "value": { - "light": "[object Object]", - "dark": "[object Object]", - "sm": "[object Object]", - "md": "[object Object]", - "lg": "[object Object]" - }, - "type": "other" - } - } -} \ No newline at end of file diff --git a/tokens/component/split-button.json b/tokens/component/split-button.json index 9a88776901b..e9140c4af48 100644 --- a/tokens/component/split-button.json +++ b/tokens/component/split-button.json @@ -4,11 +4,11 @@ "brand": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.text.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.text.inverse.dark", "type": "color" } }, @@ -88,11 +88,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } } @@ -258,11 +258,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "$semantic.ui.color.text.1.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "$semantic.ui.color.text.1.dark", "type": "color" } } @@ -653,12 +653,6 @@ "value": "$core.spacing.1", "type": "spacing" } - }, - "transparent": { - "top-bottom": { - "value": "$core.spacing.1", - "type": "spacing" - } } } }, @@ -738,11 +732,11 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.text.inverse.light", + "value": "$semantic.ui.color.inverse.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.text.inverse.dark", + "value": "$semantic.ui.color.inverse.dark", "type": "color" } } @@ -780,7 +774,7 @@ }, "transparent": { "light": { - "value": "$semantic.ui.color.inverse.light", + "value": "$semantic.ui.color.foreground.3.light", "type": "color" }, "dark": { @@ -792,11 +786,11 @@ "danger": { "solid": { "light": { - "value": "$semantic.ui.color.foreground.1.light", + "value": "$semantic.ui.color.danger.default.light", "type": "color" }, "dark": { - "value": "$semantic.ui.color.foreground.1.dark", + "value": "$semantic.ui.color.danger.default.dark", "type": "color" } }, From 46a8802228d68ab8eff3725a59ecf39d4e695a0b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 8 May 2023 16:59:05 -0700 Subject: [PATCH 664/696] chore: resolve issue with generated tokens --- tools/token-transformer/format/scss.ts | 30 +++++++++++++++++++------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/tools/token-transformer/format/scss.ts b/tools/token-transformer/format/scss.ts index 75f129ffc42..e3a77dd1e53 100644 --- a/tools/token-transformer/format/scss.ts +++ b/tools/token-transformer/format/scss.ts @@ -1,5 +1,5 @@ import { pascalCase, sentenceCase } from "change-case"; -import sd, { Dictionary, File, Platform, Options } from "style-dictionary"; +import sd, { Dictionary, File, Platform, Options, TransformedToken } from "style-dictionary"; const { formatHelpers } = sd; @@ -28,11 +28,25 @@ export function formatSCSS(fileInfo: { .split(" ") .filter((n) => !regexThemeGroup.test(n)) .join(" ") - ).toLowerCase(); - return ( - formatHelpers.fileHeader({ file }) + - `@mixin calcite-theme-${themeName}() {\n` + - formatHelpers.formattedVariables({ format: "css", dictionary, outputReferences }) + - `\n}\n` - ); + ).toLowerCase(); + const coreTokens: TransformedToken[] = dictionary.allTokens.reduce((acc, token) => { + if (token.filePath.includes("core")) { + const path = token.path.filter((p) => !/(core|default|font$)/.test(p)); + token.name = token.type === "color" ? path.slice(-1).join("-") : path.join("-"); + token.value = token.value.includes(" ") ? `"${token.value}"` : token.value === "Demi" ? 600 : token.value; + + acc.push(token); + } + return acc; + }, []); + return formatHelpers.fileHeader({ file }) + file.destination.includes("headless") + ? formatHelpers.formattedVariables({ + format: "sass", + dictionary: { ...dictionary, allTokens: coreTokens }, + outputReferences + }) + "\n" + : "" + + `@mixin calcite-theme-${themeName}() {\n` + + formatHelpers.formattedVariables({ format: "css", dictionary, outputReferences }) + + `\n}\n`; } From 6e080cfe7019922651fd63c647ba071c41bef48c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 9 May 2023 06:09:04 -0700 Subject: [PATCH 665/696] chore: fix scss format --- tools/token-transformer/format/scss.ts | 54 +++++++++++-------- .../token-transformer/utils/sortAllTokens.ts | 12 +++++ 2 files changed, 45 insertions(+), 21 deletions(-) create mode 100644 tools/token-transformer/utils/sortAllTokens.ts diff --git a/tools/token-transformer/format/scss.ts b/tools/token-transformer/format/scss.ts index e3a77dd1e53..c3fe65eee01 100644 --- a/tools/token-transformer/format/scss.ts +++ b/tools/token-transformer/format/scss.ts @@ -1,7 +1,6 @@ import { pascalCase, sentenceCase } from "change-case"; -import sd, { Dictionary, File, Platform, Options, TransformedToken } from "style-dictionary"; - -const { formatHelpers } = sd; +import StyleDictionary, { Dictionary, File, Platform, Options } from "style-dictionary"; +import { sortAllTokens } from "../utils/sortAllTokens.js"; const regexThemeGroup = /calcite|brand/gi; const regexFileNameWithoutExtension = /\w+(?=\.\w+$)/gi; @@ -29,24 +28,37 @@ export function formatSCSS(fileInfo: { .filter((n) => !regexThemeGroup.test(n)) .join(" ") ).toLowerCase(); - const coreTokens: TransformedToken[] = dictionary.allTokens.reduce((acc, token) => { - if (token.filePath.includes("core")) { - const path = token.path.filter((p) => !/(core|default|font$)/.test(p)); - token.name = token.type === "color" ? path.slice(-1).join("-") : path.join("-"); + const sassProps = StyleDictionary.formatHelpers.createPropertyFormatter({ + outputReferences, + dictionary, + format: "sass" + }); + const cssProps = StyleDictionary.formatHelpers.createPropertyFormatter({ + outputReferences, + dictionary, + format: "css" + }); + const sortedTokens = sortAllTokens(dictionary, outputReferences); + const coreTokens = [...sortedTokens].reduce( + (acc, token) => { token.value = token.value.includes(" ") ? `"${token.value}"` : token.value === "Demi" ? 600 : token.value; + acc[1].push(cssProps(token)); + + if (token.filePath.includes("core")) { + const sassToken = { ...token }; + const path = sassToken.path.filter((p) => !/(core|default|font$)/.test(p)); + sassToken.name = sassToken.type === "color" ? path.slice(-1).join("-") : path.join("-"); + acc[0].push(sassProps(sassToken)); + } + return acc; + }, + [[], []] + ); + + return `${StyleDictionary.formatHelpers.fileHeader({ file })} +${coreTokens[0].join("\n")} - acc.push(token); - } - return acc; - }, []); - return formatHelpers.fileHeader({ file }) + file.destination.includes("headless") - ? formatHelpers.formattedVariables({ - format: "sass", - dictionary: { ...dictionary, allTokens: coreTokens }, - outputReferences - }) + "\n" - : "" + - `@mixin calcite-theme-${themeName}() {\n` + - formatHelpers.formattedVariables({ format: "css", dictionary, outputReferences }) + - `\n}\n`; +@mixin calcite-theme-${themeName}() { +${coreTokens[1].join("\n")} +}`; } diff --git a/tools/token-transformer/utils/sortAllTokens.ts b/tools/token-transformer/utils/sortAllTokens.ts new file mode 100644 index 00000000000..fee8ced6f76 --- /dev/null +++ b/tools/token-transformer/utils/sortAllTokens.ts @@ -0,0 +1,12 @@ +import { Dictionary } from "style-dictionary/types/Dictionary"; +import StyleDictionary from "style-dictionary"; +import { TransformedToken } from "style-dictionary/types/TransformedToken"; + +export function sortAllTokens(dictionary: Dictionary, outputReferences: boolean): TransformedToken[] { + let tokens = dictionary.allTokens; + if (outputReferences) { + tokens = [...dictionary.allTokens].sort(StyleDictionary.formatHelpers.sortByReference(dictionary)); + } + + return tokens; +} From f291815362c454eb4537740b5dc977f321317633 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 9 May 2023 06:29:00 -0700 Subject: [PATCH 666/696] fix: add light and dark sass vars --- tools/token-transformer/format/scss.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tools/token-transformer/format/scss.ts b/tools/token-transformer/format/scss.ts index c3fe65eee01..df7e485c128 100644 --- a/tools/token-transformer/format/scss.ts +++ b/tools/token-transformer/format/scss.ts @@ -50,6 +50,21 @@ export function formatSCSS(fileInfo: { sassToken.name = sassToken.type === "color" ? path.slice(-1).join("-") : path.join("-"); acc[0].push(sassProps(sassToken)); } + + if (/dark|light/.test(token.filePath) && !token.path.includes("component")) { + const sassToken = { ...token }; + const path = sassToken.path.reduce((acc, p) => { + if (p === "default") { + return acc; + } + acc.push(p === "color" ? "ui" : p); + return acc; + }, []); + path.push(token.filePath.includes("dark") ? "dark" : "light"); + sassToken.name = path.join("-"); + acc[0].push(sassProps(sassToken)); + } + return acc; }, [[], []] From 6d52c844a4165992c2977c1664c150f2117158f8 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 9 May 2023 06:29:00 -0700 Subject: [PATCH 667/696] fix: add light and dark sass vars --- tools/token-transformer/format/scss.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tools/token-transformer/format/scss.ts b/tools/token-transformer/format/scss.ts index c3fe65eee01..afd217c5d16 100644 --- a/tools/token-transformer/format/scss.ts +++ b/tools/token-transformer/format/scss.ts @@ -48,8 +48,24 @@ export function formatSCSS(fileInfo: { const sassToken = { ...token }; const path = sassToken.path.filter((p) => !/(core|default|font$)/.test(p)); sassToken.name = sassToken.type === "color" ? path.slice(-1).join("-") : path.join("-"); + sassToken.original.value = sassToken.original.value[0] === "{" ? sassToken.value : sassToken.original.value; acc[0].push(sassProps(sassToken)); } + + if (/dark|light/.test(token.filePath) && !token.path.includes("component")) { + const sassToken = { ...token }; + const path = sassToken.path.reduce((acc, p) => { + if (p === "default") { + return acc; + } + acc.push(p === "color" ? "ui" : p); + return acc; + }, []); + path.push(token.filePath.includes("dark") ? "dark" : "light"); + sassToken.name = path.join("-"); + acc[0].push(sassProps(sassToken)); + } + return acc; }, [[], []] From 24b6061a9312f7b784d5b110e0044fe3edf927d2 Mon Sep 17 00:00:00 2001 From: Ben Elan Date: Tue, 9 May 2023 10:43:59 -0700 Subject: [PATCH 668/696] chore: beta release --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index ebbb49c37ea..3dac8df3296 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@esri/calcite-design-tokens", - "version": "1.0.0-beta.0", + "version": "1.0.0-beta.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@esri/calcite-design-tokens", - "version": "1.0.0-beta.0", + "version": "1.0.0-beta.1", "license": "SEE LICENSE IN README.md", "devDependencies": { "@tokens-studio/sd-transforms": "^0.8.2", diff --git a/package.json b/package.json index ed90a0aaaab..df558970f99 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-design-tokens", - "version": "1.0.0-beta.0", + "version": "1.0.0-beta.1", "description": "Esri's Calcite Design System Tokens", "homepage": "https://github.com/Esri/calcite-design-tokens", "keywords": [ From a73c17af55aa8534f6005d637547f79d7d927b03 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 9 May 2023 14:32:30 -0700 Subject: [PATCH 669/696] feat: add tooltip z-index --- tokens/core.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tokens/core.json b/tokens/core.json index a70b1a4f4e2..256203018a8 100644 --- a/tokens/core.json +++ b/tokens/core.json @@ -1628,6 +1628,10 @@ "popup": { "value": "900", "type": "other" + }, + "tooltip": { + "value": "901", + "type": "other" } }, "box-shadow": { From 80abe75ee6a416c6472595ac0602672c6a68eb63 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 10 May 2023 08:19:02 -0700 Subject: [PATCH 670/696] fix: align token output names with old values this fixes an error in calcite-components Chromium tests --- tokens/calcite/light.json | 6 ++---- tools/token-transformer/transform/nameKebabCase.ts | 13 ++++++++++++- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index 86fb5e422bf..e100d172da4 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -15,10 +15,8 @@ } }, "background": { - "1": { - "value": "$semantic.ui.color.background.light", - "type": "color" - } + "value": "$semantic.ui.color.background.light", + "type": "color" }, "foreground": { "1": { diff --git a/tools/token-transformer/transform/nameKebabCase.ts b/tools/token-transformer/transform/nameKebabCase.ts index 5c6919b37fd..29056bbb77b 100644 --- a/tools/token-transformer/transform/nameKebabCase.ts +++ b/tools/token-transformer/transform/nameKebabCase.ts @@ -10,5 +10,16 @@ import { parseTokenPath } from "../utils/parseTokenPath.js"; * @returns {string} an updated name for the token which will be used for the final output */ export function nameKebabCase(token: TransformedToken, options: Options): string { - return paramCase([options.prefix].concat(parseTokenPath(token.path)).join(" ")); + const paths = token.path.reduce((acc, p, idx) => { + if (p === "core") { + acc.push("app"); + } else if (typeof token.path[idx + 1] === "string" && !new RegExp(`${p}`).test(token.path[idx + 1])) { + acc.push(p); + } else if (idx === token.path.length - 1) { + acc.push(p); + } + return acc; + }, []); + + return paramCase([options.prefix].concat(parseTokenPath(paths)).join(" ")); } From 7bcc2d7a11c0c530041b2196cb3c8214936bc23f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 10 May 2023 09:45:29 -0700 Subject: [PATCH 671/696] fix: mode tokens should use forground.3 --- tokens/calcite/dark.json | 2 +- tokens/calcite/light.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tokens/calcite/dark.json b/tokens/calcite/dark.json index c7d36b9446b..164f96dd0f4 100644 --- a/tokens/calcite/dark.json +++ b/tokens/calcite/dark.json @@ -30,7 +30,7 @@ "type": "color" }, "3": { - "value": "{semantic.ui.color.foreground.current.dark}", + "value": "{semantic.ui.color.foreground.3.dark}", "type": "color" } }, diff --git a/tokens/calcite/light.json b/tokens/calcite/light.json index e100d172da4..53b7281e71a 100644 --- a/tokens/calcite/light.json +++ b/tokens/calcite/light.json @@ -28,7 +28,7 @@ "type": "color" }, "3": { - "value": "{semantic.ui.color.foreground.current.light}", + "value": "{semantic.ui.color.foreground.3.light}", "type": "color" } }, From 8cf76497dc7195ad54c39eed49d53fdfdfe99c41 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 10 May 2023 09:47:15 -0700 Subject: [PATCH 672/696] chore: pass linting --- CONTRIBUTING.md | 2 - tools/token-transformer/format/scss.test.ts | 14 +- .../parse/expandComposites.test.ts | 125 +++++++------- .../parse/expandComposites.ts | 22 +-- .../transform/nameCamelCase.test.ts | 36 ++--- .../transform/nameKebabCase.test.ts | 36 ++--- .../utils/compositeTokens.test.ts | 153 +++++++++--------- .../utils/compositeTokens.ts | 12 +- .../utils/transformOptions.ts | 12 +- 9 files changed, 202 insertions(+), 210 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e7a64a2334d..4bf7b9c4432 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,7 +52,6 @@ Build the tokens to platform assets `npm run build` - ## Understanding Token Files All token files may be updated by the Figma Token Studio plugin. These can also be updated in the code directly. Any changes to token files must be reviewed by the Calcite Design Team. @@ -81,7 +80,6 @@ The component design tokens. These are used by themes. The Calcite themes. This currently consists of a light and dark theme. - ## Submitting Pull Requests Pull requests are the greatest contributions, so be sure they are focused in scope. diff --git a/tools/token-transformer/format/scss.test.ts b/tools/token-transformer/format/scss.test.ts index 7d1b2d98b59..d4865930ebb 100644 --- a/tools/token-transformer/format/scss.test.ts +++ b/tools/token-transformer/format/scss.test.ts @@ -1,16 +1,16 @@ -const createPropertyFormatterCallback = jest.fn((token, idx) => `--${token.name}: blue;`) +const createPropertyFormatterCallback = jest.fn((token) => `--${token.name}: blue;`); const formattedVariables = jest.fn((tokens) => tokens.dictionary.allTokens.map(createPropertyFormatterCallback)); -const fileHeader = jest.fn(({file}) => ''); +const fileHeader = jest.fn(() => ""); -jest.mock('style-dictionary', () => { - const originalModule = jest.requireActual('style-dictionary'); +jest.mock("style-dictionary", () => { + const originalModule = jest.requireActual("style-dictionary"); return { __esModule: false, ...originalModule, formatHelpers: { formattedVariables, - fileHeader, - }, + fileHeader + } }; }); @@ -45,7 +45,7 @@ const mock = { file: { destination: "calciteLight.scss" }, - formattedTokenSet: [`@mixin calcite-theme-light() {`, '--core-token-example: blue'], + formattedTokenSet: [`@mixin calcite-theme-light() {`, "--core-token-example: blue"], options: {} }; diff --git a/tools/token-transformer/parse/expandComposites.test.ts b/tools/token-transformer/parse/expandComposites.test.ts index 357fa44ac5f..b072f2e3638 100644 --- a/tools/token-transformer/parse/expandComposites.test.ts +++ b/tools/token-transformer/parse/expandComposites.test.ts @@ -1,74 +1,74 @@ const mockCorrectTypeCompoundToken = { core: { 1: { - type: 'sizing', - value: "10", + type: "sizing", + value: "10" } }, compound: { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + value: { + fontFamily: "$core.font.font-family.primary", + fontWeight: "$core.font.font-weight.light", + lineHeight: "$core.font.line-height.fixed.0", + fontSize: "$core.font.font-size.0", + letterSpacing: "$core.font.letter-spacing.normal", + paragraphSpacing: "$core.font.paragraph-spacing.normal", + textDecoration: "$core.font.text-decoration.none", + textCase: "$core.font.text-case.none" }, - "type": "typography" + type: "typography" } }; const mockTransformedCompoundTokens = { core: { 1: { - type: 'sizing', - value: "10", + type: "sizing", + value: "10" } }, compound: { "font-family": { - "value": "$core.font.font-family.primary", - "type": "font-family" + value: "$core.font.font-family.primary", + type: "font-family" }, "font-weight": { - "value": "$core.font.font-weight.light", - "type": "font-weights" + value: "$core.font.font-weight.light", + type: "font-weights" }, "line-height": { - "value": "$core.font.line-height.fixed.0", - "type": "line-heights" + value: "$core.font.line-height.fixed.0", + type: "line-heights" }, "font-size": { - "value": "$core.font.font-size.0", - "type": "font-size" + value: "$core.font.font-size.0", + type: "font-size" }, "letter-spacing": { - "value": "$core.font.letter-spacing.normal", - "type": "letter-spacing" + value: "$core.font.letter-spacing.normal", + type: "letter-spacing" }, "paragraph-spacing": { - "value": "$core.font.paragraph-spacing.normal", - "type": "paragraph-spacing" + value: "$core.font.paragraph-spacing.normal", + type: "paragraph-spacing" }, "text-decoration": { - "value": "$core.font.text-decoration.none", - "type": "font-style" + value: "$core.font.text-decoration.none", + type: "font-style" }, "text-case": { - "value": "$core.font.text-case.none", - "type": "text-case" - }, + value: "$core.font.text-case.none", + type: "text-case" + } } }; -const handleTokenStudioVariables = jest.fn((token) => token.includes('$') ? `{${token.replace(/\$/g, '')}}` : token); -const convertTokenToStyleDictionaryFormat = jest.fn(() => handleTokenStudioVariables) +const handleTokenStudioVariables = jest.fn((token) => (token.includes("$") ? `{${token.replace(/\$/g, "")}}` : token)); +const convertTokenToStyleDictionaryFormat = jest.fn(() => handleTokenStudioVariables); const shouldExpand = jest.fn().mockReturnValue(true); const expandToken = jest.fn().mockReturnValue(mockTransformedCompoundTokens); -jest.mock('../utils/compositeTokens.js', () => { - const originalModule = jest.requireActual('../utils/compositeTokens.js'); +jest.mock("../utils/compositeTokens.js", () => { + const originalModule = jest.requireActual("../utils/compositeTokens.js"); return { __esModule: false, ...originalModule, @@ -77,8 +77,8 @@ jest.mock('../utils/compositeTokens.js', () => { }; }); -jest.mock('../utils/convertTokenToStyleDictionaryFormat.js', () => { - const originalModule = jest.requireActual('../utils/convertTokenToStyleDictionaryFormat.js'); +jest.mock("../utils/convertTokenToStyleDictionaryFormat.js", () => { + const originalModule = jest.requireActual("../utils/convertTokenToStyleDictionaryFormat.js"); return { __esModule: false, ...originalModule, @@ -89,57 +89,56 @@ jest.mock('../utils/convertTokenToStyleDictionaryFormat.js', () => { import * as expandComposites from "./expandComposites"; describe("expand token dictionary", () => { - - beforeEach(()=>{ + beforeEach(() => { jest.clearAllMocks(); }); it("should not add placeholder elements", () => { const placeolderToken = { "[placeholder-component]": { - type: 'other', - value: '#333' + type: "other", + value: "#333" } }; const placeholderValue = { - "compoonent": { - type: 'other', - value: '[placholder-value]' + compoonent: { + type: "other", + value: "[placholder-value]" } - } - + }; + // @ts-expect-error - it's fine. - const testExpandPlaceholderKey = expandComposites.expandComposites(placeolderToken, './fakePath'); + const testExpandPlaceholderKey = expandComposites.expandComposites(placeolderToken, "./fakePath"); // @ts-expect-error - it's fine. - const testExpandPlaceholderValue = expandComposites.expandComposites(placeholderValue, './fakePath'); - + const testExpandPlaceholderValue = expandComposites.expandComposites(placeholderValue, "./fakePath"); + expect(testExpandPlaceholderKey).toMatchObject({}); expect(testExpandPlaceholderValue).toMatchObject({}); - }) - - it("should loop through a dictionary and run \"shouldExpand\" and \"expandToken\" on each composite token", () => { + }); + + it('should loop through a dictionary and run "shouldExpand" and "expandToken" on each composite token', () => { // @ts-expect-error - it's fine. - const testExpandComposite = expandComposites.expandComposites(mockCorrectTypeCompoundToken, './fakePath'); + const testExpandComposite = expandComposites.expandComposites(mockCorrectTypeCompoundToken, "./fakePath"); expect(handleTokenStudioVariables).toHaveBeenCalledTimes(1); expect(shouldExpand).toHaveBeenCalledTimes(1); expect(expandToken).toHaveBeenCalledTimes(1); expect(testExpandComposite).toMatchObject(mockTransformedCompoundTokens); - }) - + }); + it("should not run expand token on unrecognized types", () => { const mockDictionary = { - 'core': { - type: 'customType', + core: { + type: "customType", value: { - fontFamily: 'Avanir', - fontSize: '12px' + fontFamily: "Avanir", + fontSize: "12px" } } }; // @ts-expect-error - it's fine this is a test - const testExpandComposite = expandComposites.expandComposites(mockDictionary, './fakePath') + const testExpandComposite = expandComposites.expandComposites(mockDictionary, "./fakePath"); expect(shouldExpand).not.toHaveBeenCalled(); expect(expandToken).not.toHaveBeenCalled(); - expect(testExpandComposite).toMatchObject(mockDictionary) - }) -}) + expect(testExpandComposite).toMatchObject(mockDictionary); + }); +}); diff --git a/tools/token-transformer/parse/expandComposites.ts b/tools/token-transformer/parse/expandComposites.ts index d62ea9b62f9..631af1967aa 100644 --- a/tools/token-transformer/parse/expandComposites.ts +++ b/tools/token-transformer/parse/expandComposites.ts @@ -1,6 +1,11 @@ import { DeepKeyTokenMap } from "@tokens-studio/types"; import { DesignToken } from "style-dictionary/types/DesignToken.js"; -import { TransformOptions, ExpandablesAsStrings, Expandables, expandablesAsStringsArr } from "../utils/transformOptions.js"; +import { + TransformOptions, + ExpandablesAsStrings, + Expandables, + expandablesAsStringsArr +} from "../utils/transformOptions.js"; import { matchPlaceholderElement, tokenStudioCustomVariableIndicator } from "../utils/regex.js"; import { shouldExpand, expandToken } from "../utils/compositeTokens.js"; import { convertTokenToStyleDictionaryFormat } from "../utils/convertTokenToStyleDictionaryFormat.js"; @@ -32,8 +37,11 @@ export function expandComposites( const handleTokenStudioVariables = convertTokenToStyleDictionaryFormat(tokenStudioCustomVariableIndicator); const newDictionary = Object.entries(dictionary).reduce((acc, [key, token]) => { const { type } = token; - - if (matchPlaceholderElement.test(`${key}`) || (typeof token.value === 'string' && matchPlaceholderElement.test(`${token.value}`))) { + + if ( + matchPlaceholderElement.test(`${key}`) || + (typeof token.value === "string" && matchPlaceholderElement.test(`${token.value}`)) + ) { return acc; } @@ -44,14 +52,10 @@ export function expandComposites( const expandType = (type as ExpandablesAsStrings) === "boxShadow" ? "shadow" : type; const expand = shouldExpand(token as Expandables, opts.expand[`${expandType}`], filePath); if (expand) { - const expandedToken = expandToken( - token as DesignToken, - expandType === "shadow", - handleTokenStudioVariables - ); + const expandedToken = expandToken(token as DesignToken, expandType === "shadow", handleTokenStudioVariables); return expandedToken; } - } else if (typeof token.value === 'string') { + } else if (typeof token.value === "string") { token.value = handleTokenStudioVariables(token.value); acc[key] = token; } else { diff --git a/tools/token-transformer/transform/nameCamelCase.test.ts b/tools/token-transformer/transform/nameCamelCase.test.ts index cfee199609c..373ea0bedbc 100644 --- a/tools/token-transformer/transform/nameCamelCase.test.ts +++ b/tools/token-transformer/transform/nameCamelCase.test.ts @@ -1,36 +1,36 @@ -import { nameCamelCase } from "./nameCamelCase" +import { nameCamelCase } from "./nameCamelCase"; describe("transform names to camel case", () => { it("should transform a token path to token name in a camel case format", () => { const mockToken = { - name: 'current-name', - path: ['test', 'token', 'name'], - value: 'fake-value', - filePath: './fakePath.json', + name: "current-name", + path: ["test", "token", "name"], + value: "fake-value", + filePath: "./fakePath.json", original: { - value: 'fake-value', - type: 'composite', + value: "fake-value", + type: "composite" }, isSource: true }; - expect(nameCamelCase(mockToken, {})).toBe('testTokenName'); + expect(nameCamelCase(mockToken, {})).toBe("testTokenName"); }); it("should add prefix to token name", () => { const mockToken = { - name: 'current-name', - path: ['test', 'token', 'name'], - value: 'fake-value', - filePath: './fakePath.json', + name: "current-name", + path: ["test", "token", "name"], + value: "fake-value", + filePath: "./fakePath.json", original: { - value: 'fake-value', - type: 'composite', + value: "fake-value", + type: "composite" }, isSource: true }; const mockOptions = { - prefix: 'calcite' + prefix: "calcite" }; - expect(nameCamelCase(mockToken, mockOptions)).toBe('calciteTestTokenName'); - }) -}) + expect(nameCamelCase(mockToken, mockOptions)).toBe("calciteTestTokenName"); + }); +}); diff --git a/tools/token-transformer/transform/nameKebabCase.test.ts b/tools/token-transformer/transform/nameKebabCase.test.ts index ea165d4f791..63aaf972eb8 100644 --- a/tools/token-transformer/transform/nameKebabCase.test.ts +++ b/tools/token-transformer/transform/nameKebabCase.test.ts @@ -1,36 +1,36 @@ -import { nameKebabCase } from "./nameKebabCase" +import { nameKebabCase } from "./nameKebabCase"; describe("transform names to kebab case", () => { it("should transform a token path to token name in a kebab case format", () => { const mockToken = { - name: 'current-name', - path: ['test', 'token', 'name'], - value: 'fake-value', - filePath: './fakePath.json', + name: "current-name", + path: ["test", "token", "name"], + value: "fake-value", + filePath: "./fakePath.json", original: { - value: 'fake-value', - type: 'composite', + value: "fake-value", + type: "composite" }, isSource: true }; - expect(nameKebabCase(mockToken, {})).toBe('test-token-name'); + expect(nameKebabCase(mockToken, {})).toBe("test-token-name"); }); it("should add prefix to token name", () => { const mockToken = { - name: 'current-name', - path: ['test', 'token', 'name'], - value: 'fake-value', - filePath: './fakePath.json', + name: "current-name", + path: ["test", "token", "name"], + value: "fake-value", + filePath: "./fakePath.json", original: { - value: 'fake-value', - type: 'composite', + value: "fake-value", + type: "composite" }, isSource: true }; const mockOptions = { - prefix: 'calcite' + prefix: "calcite" }; - expect(nameKebabCase(mockToken, mockOptions)).toBe('calcite-test-token-name'); - }) -}) + expect(nameKebabCase(mockToken, mockOptions)).toBe("calcite-test-token-name"); + }); +}); diff --git a/tools/token-transformer/utils/compositeTokens.test.ts b/tools/token-transformer/utils/compositeTokens.test.ts index 51f5c18b35d..96b19baea64 100644 --- a/tools/token-transformer/utils/compositeTokens.test.ts +++ b/tools/token-transformer/utils/compositeTokens.test.ts @@ -1,134 +1,133 @@ -import { TokenTypes } from "@tokens-studio/types"; import { expandToken, shouldExpand } from "./compositeTokens"; const mockHandleValue = jest.fn((val) => val); -describe('expand composite token', () => { - it('should expand a non-shadow token', () => { +describe("expand composite token", () => { + it("should expand a non-shadow token", () => { const mockTypographyToken = { - "value": { - "fontFamily": "$core.font.font-family.primary", - "fontWeight": "$core.font.font-weight.light", - "lineHeight": "$core.font.line-height.fixed.0", - "fontSize": "$core.font.font-size.0", - "letterSpacing": "$core.font.letter-spacing.normal", - "paragraphSpacing": "$core.font.paragraph-spacing.normal", - "textDecoration": "$core.font.text-decoration.none", - "textCase": "$core.font.text-case.none" + value: { + fontFamily: "$core.font.font-family.primary", + fontWeight: "$core.font.font-weight.light", + lineHeight: "$core.font.line-height.fixed.0", + fontSize: "$core.font.font-size.0", + letterSpacing: "$core.font.letter-spacing.normal", + paragraphSpacing: "$core.font.paragraph-spacing.normal", + textDecoration: "$core.font.text-decoration.none", + textCase: "$core.font.text-case.none" }, - "type": "typography" - }; + type: "typography" + }; const mockExpandedTypographyToken = { "font-family": { - "value": "$core.font.font-family.primary", - "type": "font-family" + value: "$core.font.font-family.primary", + type: "font-family" }, "font-weight": { - "value": "$core.font.font-weight.light", - "type": "font-weights" + value: "$core.font.font-weight.light", + type: "font-weights" }, "line-height": { - "value": "$core.font.line-height.fixed.0", - "type": "line-heights" + value: "$core.font.line-height.fixed.0", + type: "line-heights" }, "font-size": { - "value": "$core.font.font-size.0", - "type": "font-size" + value: "$core.font.font-size.0", + type: "font-size" }, "letter-spacing": { - "value": "$core.font.letter-spacing.normal", - "type": "letter-spacing" + value: "$core.font.letter-spacing.normal", + type: "letter-spacing" }, "paragraph-spacing": { - "value": "$core.font.paragraph-spacing.normal", - "type": "paragraph-spacing" + value: "$core.font.paragraph-spacing.normal", + type: "paragraph-spacing" }, "text-decoration": { - "value": "$core.font.text-decoration.none", - "type": "font-style" + value: "$core.font.text-decoration.none", + type: "font-style" }, "text-case": { - "value": "$core.font.text-case.none", - "type": "text-case" - }, - } + value: "$core.font.text-case.none", + type: "text-case" + } + }; const testExpandToken = expandToken(mockTypographyToken, false, mockHandleValue); - expect(testExpandToken).toMatchObject(mockExpandedTypographyToken) - }) - it('should expand a shadow token', () => { + expect(testExpandToken).toMatchObject(mockExpandedTypographyToken); + }); + it("should expand a shadow token", () => { const mockShadowToken = { - "value": [ + value: [ { - "x": "0", - "y": "2", - "blur": "8", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.4)", - "type": "dropShadow" + x: "0", + y: "2", + blur: "8", + spread: "0", + color: "rgba($core.color.neutral.blk-240, $core.opacity.4)", + type: "dropShadow" }, { - "x": "0", - "y": "4", - "blur": "16", - "spread": "0", - "color": "rgba($core.color.neutral.blk-240, $core.opacity.8)", - "type": "dropShadow" + x: "0", + y: "4", + blur: "16", + spread: "0", + color: "rgba($core.color.neutral.blk-240, $core.opacity.8)", + type: "dropShadow" } ], - "type": "boxShadow" + type: "boxShadow" }; const mockExpandedShadowToken = { "1": { - "x": { - "type": "dimension", - "value": "0" + x: { + type: "dimension", + value: "0" }, - "y": { - "type": "dimension", - "value": "2", + y: { + type: "dimension", + value: "2" }, - "blur": { - "type": "dimension", - "value": "8", + blur: { + type: "dimension", + value: "8" }, - "spread": { - "type": "dimension", - "value": "0", + spread: { + type: "dimension", + value: "0" }, - "color": { - "type": "color", - "value": "rgba($core.color.neutral.blk-240, $core.opacity.4)", + color: { + type: "color", + value: "rgba($core.color.neutral.blk-240, $core.opacity.4)" } } - } + }; const testExpandToken = expandToken(mockShadowToken, true, mockHandleValue); expect(testExpandToken).toMatchObject(mockExpandedShadowToken); }); -}) +}); -describe('shouldExpand', () => { - const filePath = './mockFile.json'; +describe("shouldExpand", () => { + const filePath = "./mockFile.json"; const mockToken = { - name: 'testToken', + name: "testToken", type: "fontFamilies", - value: 'san-serif' + value: "san-serif" }; - it('should return true', () => { + it("should return true", () => { // @ts-expect-error - type is fine here. const testExpand = shouldExpand(mockToken, true, filePath); expect(testExpand).toBe(true); - }) - it('should return false', () => { + }); + it("should return false", () => { // @ts-expect-error - type is fine here. const testExpand = shouldExpand(mockToken, false, filePath); expect(testExpand).toBe(false); - }) - it('should use condition function', () => { + }); + it("should use condition function", () => { const mockExpandFunction = jest.fn(() => true); // @ts-expect-error - type is fine here. const testExpand = shouldExpand(mockToken, mockExpandFunction, filePath); expect(testExpand).toBe(true); expect(mockExpandFunction).toHaveBeenCalled(); - }) -}) + }); +}); diff --git a/tools/token-transformer/utils/compositeTokens.ts b/tools/token-transformer/utils/compositeTokens.ts index 7bac53e7c3d..dfb2bb469a9 100644 --- a/tools/token-transformer/utils/compositeTokens.ts +++ b/tools/token-transformer/utils/compositeTokens.ts @@ -13,7 +13,7 @@ const typeMaps = { blur: "dimension", spread: "dimension", type: "other", - color: "color", + color: "color" }, border: { width: "border-width", @@ -39,7 +39,7 @@ const typeMaps = { * Get type from type map * @param {string} key type * @param {DesignToken} compositeToken a Style Dictionary token - * @returns a string + * @returns {string} approved token type */ export const getType = (key: string, compositeToken: DesignToken): string => typeMaps[compositeToken.type][key] ?? key; @@ -50,18 +50,14 @@ export const getType = (key: string, compositeToken: DesignToken): string => typ * @param {Function} handleValue a function to determine how the final token value string should be passed to Style Dictionary * @returns {DesignToken} a single Style Dictionary token object */ -export function expandToken( - compositeToken: DesignToken, - isShadow = false, - handleValue = (v) => v -): DesignToken { +export function expandToken(compositeToken: DesignToken, isShadow = false, handleValue = (v) => v): DesignToken { const expandedObj = {} as DesignToken; if (isShadow && Array.isArray(compositeToken.value)) { compositeToken.value.forEach((shadow, index) => { expandedObj[index + 1] = {}; Object.entries(shadow).forEach(([key, value]) => { - if (matchPlaceholderElement.test(`${value}`) || key === 'type') { + if (matchPlaceholderElement.test(`${value}`) || key === "type") { return; } expandedObj[index + 1][key] = { diff --git a/tools/token-transformer/utils/transformOptions.ts b/tools/token-transformer/utils/transformOptions.ts index d48130ab32e..aa75196fff7 100644 --- a/tools/token-transformer/utils/transformOptions.ts +++ b/tools/token-transformer/utils/transformOptions.ts @@ -3,21 +3,17 @@ import { SingleBoxShadowToken, SingleCompositionToken, SingleToken, - SingleTypographyToken, -} from '@tokens-studio/types'; + SingleTypographyToken +} from "@tokens-studio/types"; /** * Copied from https://github.com/tokens-studio/sd-transforms/blob/main/src/TransformOptions.ts * This is needed for correct type setting and is not exported by Token Studio SD Transforms. */ -export type Expandables = - | SingleCompositionToken - | SingleTypographyToken - | SingleBorderToken - | SingleBoxShadowToken; +export type Expandables = SingleCompositionToken | SingleTypographyToken | SingleBorderToken | SingleBoxShadowToken; -export const expandablesAsStringsArr = ['composition', 'typography', 'border', 'boxShadow']; +export const expandablesAsStringsArr = ["composition", "typography", "border", "boxShadow"]; export type ExpandablesAsStrings = (typeof expandablesAsStringsArr)[number]; export type ExpandFilter = (token: T, filePath: string) => boolean; From 2063ff2ffb005ad6a86357c5bbb44fe9b08ab453 Mon Sep 17 00:00:00 2001 From: Ben Elan Date: Wed, 10 May 2023 09:56:23 -0700 Subject: [PATCH 673/696] chore: beta release --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3dac8df3296..70d5a83c49d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@esri/calcite-design-tokens", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@esri/calcite-design-tokens", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.2", "license": "SEE LICENSE IN README.md", "devDependencies": { "@tokens-studio/sd-transforms": "^0.8.2", diff --git a/package.json b/package.json index df558970f99..72b693e6b39 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-design-tokens", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.2", "description": "Esri's Calcite Design System Tokens", "homepage": "https://github.com/Esri/calcite-design-tokens", "keywords": [ From de4ecb342d87245297dc1157d9279482b3141b49 Mon Sep 17 00:00:00 2001 From: Ben Elan Date: Thu, 11 May 2023 11:56:57 -0700 Subject: [PATCH 674/696] chore: release v1 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 70d5a83c49d..779f581bbd6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@esri/calcite-design-tokens", - "version": "1.0.0-beta.2", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@esri/calcite-design-tokens", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "SEE LICENSE IN README.md", "devDependencies": { "@tokens-studio/sd-transforms": "^0.8.2", diff --git a/package.json b/package.json index 72b693e6b39..70f6814eba9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@esri/calcite-design-tokens", - "version": "1.0.0-beta.2", + "version": "1.0.0", "description": "Esri's Calcite Design System Tokens", "homepage": "https://github.com/Esri/calcite-design-tokens", "keywords": [ From 9cfcc6b2501955eb4f5f96c2ef8b0397c914e00a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 5 Oct 2023 11:38:49 -0700 Subject: [PATCH 675/696] ci: move to sub directory to match monorepo struct --- .eslintrc.json => packages/calcite-design-tokens/.eslintrc.json | 0 CHANGELOG.md => packages/calcite-design-tokens/CHANGELOG.md | 0 CONTRIBUTING.md => packages/calcite-design-tokens/CONTRIBUTING.md | 0 README.md => packages/calcite-design-tokens/README.md | 0 {bin => packages/calcite-design-tokens/bin}/run.js | 0 .../calcite-design-tokens/jest.config.json | 0 .../calcite-design-tokens/package-lock.json | 0 package.json => packages/calcite-design-tokens/package.json | 0 {tokens => packages/calcite-design-tokens/src}/$metadata.json | 0 {tokens => packages/calcite-design-tokens/src}/$themes.json | 0 {tokens => packages/calcite-design-tokens/src}/brand/dark.json | 0 {tokens => packages/calcite-design-tokens/src}/brand/global.json | 0 {tokens => packages/calcite-design-tokens/src}/brand/light.json | 0 {tokens => packages/calcite-design-tokens/src}/calcite/dark.json | 0 {tokens => packages/calcite-design-tokens/src}/calcite/light.json | 0 .../src}/component/[template-comp-name].json | 0 .../calcite-design-tokens/src}/component/accordion-item.json | 0 .../calcite-design-tokens/src}/component/accordion.json | 0 .../calcite-design-tokens/src}/component/accordion_backup.json | 0 .../calcite-design-tokens/src}/component/action-bar-grid.json | 0 .../calcite-design-tokens/src}/component/action-bar.json | 0 .../calcite-design-tokens/src}/component/action-pad-grid.json | 0 .../calcite-design-tokens/src}/component/action-pad.json | 0 .../calcite-design-tokens/src}/component/action.json | 0 .../calcite-design-tokens/src}/component/alert.json | 0 .../calcite-design-tokens/src}/component/avatar.json | 0 .../calcite-design-tokens/src}/component/block-section.json | 0 .../calcite-design-tokens/src}/component/block.json | 0 .../calcite-design-tokens/src}/component/button.json | 0 .../calcite-design-tokens/src}/component/card.json | 0 .../calcite-design-tokens/src}/component/checkbox.json | 0 .../calcite-design-tokens/src}/component/chip.json | 0 .../calcite-design-tokens/src}/component/color-picker.json | 0 .../calcite-design-tokens/src}/component/combobox.json | 0 .../calcite-design-tokens/src}/component/date-picker.json | 0 .../calcite-design-tokens/src}/component/dropdown-item.json | 0 .../calcite-design-tokens/src}/component/dropdown.json | 0 {tokens => packages/calcite-design-tokens/src}/component/fab.json | 0 .../calcite-design-tokens/src}/component/filter.json | 0 .../calcite-design-tokens/src}/component/input-date-picker.json | 0 .../src}/component/input-datetime-local.json | 0 .../calcite-design-tokens/src}/component/input-email.json | 0 .../calcite-design-tokens/src}/component/input-file.json | 0 .../calcite-design-tokens/src}/component/input-message.json | 0 .../calcite-design-tokens/src}/component/input-month.json | 0 .../calcite-design-tokens/src}/component/input-number.json | 0 .../calcite-design-tokens/src}/component/input-password.json | 0 .../calcite-design-tokens/src}/component/input-search.json | 0 .../calcite-design-tokens/src}/component/input-telephone.json | 0 .../calcite-design-tokens/src}/component/input-text.json | 0 .../calcite-design-tokens/src}/component/input-time.json | 0 .../calcite-design-tokens/src}/component/input-week.json | 0 .../calcite-design-tokens/src}/component/label.json | 0 .../calcite-design-tokens/src}/component/link.json | 0 .../calcite-design-tokens/src}/component/loader.json | 0 .../calcite-design-tokens/src}/component/modal.json | 0 .../calcite-design-tokens/src}/component/notice.json | 0 .../calcite-design-tokens/src}/component/pagination.json | 0 .../calcite-design-tokens/src}/component/panel-header.json | 0 .../calcite-design-tokens/src}/component/popover.json | 0 .../calcite-design-tokens/src}/component/radio.json | 0 .../calcite-design-tokens/src}/component/rating.json | 0 .../calcite-design-tokens/src}/component/scrim.json | 0 .../calcite-design-tokens/src}/component/segmented-control.json | 0 .../src}/component/slider-histogram-range.json | 0 .../calcite-design-tokens/src}/component/slider-histogram.json | 0 .../calcite-design-tokens/src}/component/slider-range.json | 0 .../calcite-design-tokens/src}/component/slider.json | 0 .../calcite-design-tokens/src}/component/split-button.json | 0 .../calcite-design-tokens/src}/component/stepper-item.json | 0 .../calcite-design-tokens/src}/component/stepper.json | 0 .../calcite-design-tokens/src}/component/switch.json | 0 .../calcite-design-tokens/src}/component/tab-title.json | 0 .../calcite-design-tokens/src}/component/tabs.json | 0 .../calcite-design-tokens/src}/component/textarea.json | 0 .../calcite-design-tokens/src}/component/time-picker.json | 0 .../calcite-design-tokens/src}/component/tip-manager.json | 0 {tokens => packages/calcite-design-tokens/src}/component/tip.json | 0 .../calcite-design-tokens/src}/component/tooltip.json | 0 .../calcite-design-tokens/src}/component/tree-item.json | 0 {tokens => packages/calcite-design-tokens/src}/core.json | 0 {tokens => packages/calcite-design-tokens/src}/semantic.json | 0 .../support}/token-transformer/format/scss.test.ts | 0 .../support}/token-transformer/format/scss.ts | 0 .../calcite-design-tokens/support}/token-transformer/getThemes.ts | 0 .../support}/token-transformer/parse/expandComposites.test.ts | 0 .../support}/token-transformer/parse/expandComposites.ts | 0 .../calcite-design-tokens/support}/token-transformer/sd-run.ts | 0 .../support}/token-transformer/transform/nameCamelCase.test.ts | 0 .../support}/token-transformer/transform/nameCamelCase.ts | 0 .../support}/token-transformer/transform/nameKebabCase.test.ts | 0 .../support}/token-transformer/transform/nameKebabCase.ts | 0 .../support}/token-transformer/utils/compositeTokens.test.ts | 0 .../support}/token-transformer/utils/compositeTokens.ts | 0 .../utils/convertTokenToStyleDictionaryFormat.ts | 0 .../support}/token-transformer/utils/matchList.ts | 0 .../support}/token-transformer/utils/parseName.ts | 0 .../support}/token-transformer/utils/parseTokenPath.ts | 0 .../support}/token-transformer/utils/regex.ts | 0 .../support}/token-transformer/utils/sortAllTokens.ts | 0 .../support}/token-transformer/utils/transformOptions.ts | 0 .../calcite-design-tokens/tsconfig.cjs.json | 0 tsconfig.json => packages/calcite-design-tokens/tsconfig.json | 0 .../calcite-design-tokens/tsconfig.prod.json | 0 104 files changed, 0 insertions(+), 0 deletions(-) rename .eslintrc.json => packages/calcite-design-tokens/.eslintrc.json (100%) rename CHANGELOG.md => packages/calcite-design-tokens/CHANGELOG.md (100%) rename CONTRIBUTING.md => packages/calcite-design-tokens/CONTRIBUTING.md (100%) rename README.md => packages/calcite-design-tokens/README.md (100%) rename {bin => packages/calcite-design-tokens/bin}/run.js (100%) rename jest.config.json => packages/calcite-design-tokens/jest.config.json (100%) rename package-lock.json => packages/calcite-design-tokens/package-lock.json (100%) rename package.json => packages/calcite-design-tokens/package.json (100%) rename {tokens => packages/calcite-design-tokens/src}/$metadata.json (100%) rename {tokens => packages/calcite-design-tokens/src}/$themes.json (100%) rename {tokens => packages/calcite-design-tokens/src}/brand/dark.json (100%) rename {tokens => packages/calcite-design-tokens/src}/brand/global.json (100%) rename {tokens => packages/calcite-design-tokens/src}/brand/light.json (100%) rename {tokens => packages/calcite-design-tokens/src}/calcite/dark.json (100%) rename {tokens => packages/calcite-design-tokens/src}/calcite/light.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/[template-comp-name].json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/accordion-item.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/accordion.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/accordion_backup.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/action-bar-grid.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/action-bar.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/action-pad-grid.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/action-pad.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/action.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/alert.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/avatar.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/block-section.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/block.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/button.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/card.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/checkbox.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/chip.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/color-picker.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/combobox.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/date-picker.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/dropdown-item.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/dropdown.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/fab.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/filter.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-date-picker.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-datetime-local.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-email.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-file.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-message.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-month.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-number.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-password.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-search.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-telephone.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-text.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-time.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/input-week.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/label.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/link.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/loader.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/modal.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/notice.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/pagination.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/panel-header.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/popover.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/radio.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/rating.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/scrim.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/segmented-control.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/slider-histogram-range.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/slider-histogram.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/slider-range.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/slider.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/split-button.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/stepper-item.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/stepper.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/switch.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/tab-title.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/tabs.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/textarea.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/time-picker.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/tip-manager.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/tip.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/tooltip.json (100%) rename {tokens => packages/calcite-design-tokens/src}/component/tree-item.json (100%) rename {tokens => packages/calcite-design-tokens/src}/core.json (100%) rename {tokens => packages/calcite-design-tokens/src}/semantic.json (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/format/scss.test.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/format/scss.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/getThemes.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/parse/expandComposites.test.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/parse/expandComposites.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/sd-run.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/transform/nameCamelCase.test.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/transform/nameCamelCase.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/transform/nameKebabCase.test.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/transform/nameKebabCase.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/utils/compositeTokens.test.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/utils/compositeTokens.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/utils/matchList.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/utils/parseName.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/utils/parseTokenPath.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/utils/regex.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/utils/sortAllTokens.ts (100%) rename {tools => packages/calcite-design-tokens/support}/token-transformer/utils/transformOptions.ts (100%) rename tsconfig.cjs.json => packages/calcite-design-tokens/tsconfig.cjs.json (100%) rename tsconfig.json => packages/calcite-design-tokens/tsconfig.json (100%) rename tsconfig.prod.json => packages/calcite-design-tokens/tsconfig.prod.json (100%) diff --git a/.eslintrc.json b/packages/calcite-design-tokens/.eslintrc.json similarity index 100% rename from .eslintrc.json rename to packages/calcite-design-tokens/.eslintrc.json diff --git a/CHANGELOG.md b/packages/calcite-design-tokens/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to packages/calcite-design-tokens/CHANGELOG.md diff --git a/CONTRIBUTING.md b/packages/calcite-design-tokens/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to packages/calcite-design-tokens/CONTRIBUTING.md diff --git a/README.md b/packages/calcite-design-tokens/README.md similarity index 100% rename from README.md rename to packages/calcite-design-tokens/README.md diff --git a/bin/run.js b/packages/calcite-design-tokens/bin/run.js similarity index 100% rename from bin/run.js rename to packages/calcite-design-tokens/bin/run.js diff --git a/jest.config.json b/packages/calcite-design-tokens/jest.config.json similarity index 100% rename from jest.config.json rename to packages/calcite-design-tokens/jest.config.json diff --git a/package-lock.json b/packages/calcite-design-tokens/package-lock.json similarity index 100% rename from package-lock.json rename to packages/calcite-design-tokens/package-lock.json diff --git a/package.json b/packages/calcite-design-tokens/package.json similarity index 100% rename from package.json rename to packages/calcite-design-tokens/package.json diff --git a/tokens/$metadata.json b/packages/calcite-design-tokens/src/$metadata.json similarity index 100% rename from tokens/$metadata.json rename to packages/calcite-design-tokens/src/$metadata.json diff --git a/tokens/$themes.json b/packages/calcite-design-tokens/src/$themes.json similarity index 100% rename from tokens/$themes.json rename to packages/calcite-design-tokens/src/$themes.json diff --git a/tokens/brand/dark.json b/packages/calcite-design-tokens/src/brand/dark.json similarity index 100% rename from tokens/brand/dark.json rename to packages/calcite-design-tokens/src/brand/dark.json diff --git a/tokens/brand/global.json b/packages/calcite-design-tokens/src/brand/global.json similarity index 100% rename from tokens/brand/global.json rename to packages/calcite-design-tokens/src/brand/global.json diff --git a/tokens/brand/light.json b/packages/calcite-design-tokens/src/brand/light.json similarity index 100% rename from tokens/brand/light.json rename to packages/calcite-design-tokens/src/brand/light.json diff --git a/tokens/calcite/dark.json b/packages/calcite-design-tokens/src/calcite/dark.json similarity index 100% rename from tokens/calcite/dark.json rename to packages/calcite-design-tokens/src/calcite/dark.json diff --git a/tokens/calcite/light.json b/packages/calcite-design-tokens/src/calcite/light.json similarity index 100% rename from tokens/calcite/light.json rename to packages/calcite-design-tokens/src/calcite/light.json diff --git a/tokens/component/[template-comp-name].json b/packages/calcite-design-tokens/src/component/[template-comp-name].json similarity index 100% rename from tokens/component/[template-comp-name].json rename to packages/calcite-design-tokens/src/component/[template-comp-name].json diff --git a/tokens/component/accordion-item.json b/packages/calcite-design-tokens/src/component/accordion-item.json similarity index 100% rename from tokens/component/accordion-item.json rename to packages/calcite-design-tokens/src/component/accordion-item.json diff --git a/tokens/component/accordion.json b/packages/calcite-design-tokens/src/component/accordion.json similarity index 100% rename from tokens/component/accordion.json rename to packages/calcite-design-tokens/src/component/accordion.json diff --git a/tokens/component/accordion_backup.json b/packages/calcite-design-tokens/src/component/accordion_backup.json similarity index 100% rename from tokens/component/accordion_backup.json rename to packages/calcite-design-tokens/src/component/accordion_backup.json diff --git a/tokens/component/action-bar-grid.json b/packages/calcite-design-tokens/src/component/action-bar-grid.json similarity index 100% rename from tokens/component/action-bar-grid.json rename to packages/calcite-design-tokens/src/component/action-bar-grid.json diff --git a/tokens/component/action-bar.json b/packages/calcite-design-tokens/src/component/action-bar.json similarity index 100% rename from tokens/component/action-bar.json rename to packages/calcite-design-tokens/src/component/action-bar.json diff --git a/tokens/component/action-pad-grid.json b/packages/calcite-design-tokens/src/component/action-pad-grid.json similarity index 100% rename from tokens/component/action-pad-grid.json rename to packages/calcite-design-tokens/src/component/action-pad-grid.json diff --git a/tokens/component/action-pad.json b/packages/calcite-design-tokens/src/component/action-pad.json similarity index 100% rename from tokens/component/action-pad.json rename to packages/calcite-design-tokens/src/component/action-pad.json diff --git a/tokens/component/action.json b/packages/calcite-design-tokens/src/component/action.json similarity index 100% rename from tokens/component/action.json rename to packages/calcite-design-tokens/src/component/action.json diff --git a/tokens/component/alert.json b/packages/calcite-design-tokens/src/component/alert.json similarity index 100% rename from tokens/component/alert.json rename to packages/calcite-design-tokens/src/component/alert.json diff --git a/tokens/component/avatar.json b/packages/calcite-design-tokens/src/component/avatar.json similarity index 100% rename from tokens/component/avatar.json rename to packages/calcite-design-tokens/src/component/avatar.json diff --git a/tokens/component/block-section.json b/packages/calcite-design-tokens/src/component/block-section.json similarity index 100% rename from tokens/component/block-section.json rename to packages/calcite-design-tokens/src/component/block-section.json diff --git a/tokens/component/block.json b/packages/calcite-design-tokens/src/component/block.json similarity index 100% rename from tokens/component/block.json rename to packages/calcite-design-tokens/src/component/block.json diff --git a/tokens/component/button.json b/packages/calcite-design-tokens/src/component/button.json similarity index 100% rename from tokens/component/button.json rename to packages/calcite-design-tokens/src/component/button.json diff --git a/tokens/component/card.json b/packages/calcite-design-tokens/src/component/card.json similarity index 100% rename from tokens/component/card.json rename to packages/calcite-design-tokens/src/component/card.json diff --git a/tokens/component/checkbox.json b/packages/calcite-design-tokens/src/component/checkbox.json similarity index 100% rename from tokens/component/checkbox.json rename to packages/calcite-design-tokens/src/component/checkbox.json diff --git a/tokens/component/chip.json b/packages/calcite-design-tokens/src/component/chip.json similarity index 100% rename from tokens/component/chip.json rename to packages/calcite-design-tokens/src/component/chip.json diff --git a/tokens/component/color-picker.json b/packages/calcite-design-tokens/src/component/color-picker.json similarity index 100% rename from tokens/component/color-picker.json rename to packages/calcite-design-tokens/src/component/color-picker.json diff --git a/tokens/component/combobox.json b/packages/calcite-design-tokens/src/component/combobox.json similarity index 100% rename from tokens/component/combobox.json rename to packages/calcite-design-tokens/src/component/combobox.json diff --git a/tokens/component/date-picker.json b/packages/calcite-design-tokens/src/component/date-picker.json similarity index 100% rename from tokens/component/date-picker.json rename to packages/calcite-design-tokens/src/component/date-picker.json diff --git a/tokens/component/dropdown-item.json b/packages/calcite-design-tokens/src/component/dropdown-item.json similarity index 100% rename from tokens/component/dropdown-item.json rename to packages/calcite-design-tokens/src/component/dropdown-item.json diff --git a/tokens/component/dropdown.json b/packages/calcite-design-tokens/src/component/dropdown.json similarity index 100% rename from tokens/component/dropdown.json rename to packages/calcite-design-tokens/src/component/dropdown.json diff --git a/tokens/component/fab.json b/packages/calcite-design-tokens/src/component/fab.json similarity index 100% rename from tokens/component/fab.json rename to packages/calcite-design-tokens/src/component/fab.json diff --git a/tokens/component/filter.json b/packages/calcite-design-tokens/src/component/filter.json similarity index 100% rename from tokens/component/filter.json rename to packages/calcite-design-tokens/src/component/filter.json diff --git a/tokens/component/input-date-picker.json b/packages/calcite-design-tokens/src/component/input-date-picker.json similarity index 100% rename from tokens/component/input-date-picker.json rename to packages/calcite-design-tokens/src/component/input-date-picker.json diff --git a/tokens/component/input-datetime-local.json b/packages/calcite-design-tokens/src/component/input-datetime-local.json similarity index 100% rename from tokens/component/input-datetime-local.json rename to packages/calcite-design-tokens/src/component/input-datetime-local.json diff --git a/tokens/component/input-email.json b/packages/calcite-design-tokens/src/component/input-email.json similarity index 100% rename from tokens/component/input-email.json rename to packages/calcite-design-tokens/src/component/input-email.json diff --git a/tokens/component/input-file.json b/packages/calcite-design-tokens/src/component/input-file.json similarity index 100% rename from tokens/component/input-file.json rename to packages/calcite-design-tokens/src/component/input-file.json diff --git a/tokens/component/input-message.json b/packages/calcite-design-tokens/src/component/input-message.json similarity index 100% rename from tokens/component/input-message.json rename to packages/calcite-design-tokens/src/component/input-message.json diff --git a/tokens/component/input-month.json b/packages/calcite-design-tokens/src/component/input-month.json similarity index 100% rename from tokens/component/input-month.json rename to packages/calcite-design-tokens/src/component/input-month.json diff --git a/tokens/component/input-number.json b/packages/calcite-design-tokens/src/component/input-number.json similarity index 100% rename from tokens/component/input-number.json rename to packages/calcite-design-tokens/src/component/input-number.json diff --git a/tokens/component/input-password.json b/packages/calcite-design-tokens/src/component/input-password.json similarity index 100% rename from tokens/component/input-password.json rename to packages/calcite-design-tokens/src/component/input-password.json diff --git a/tokens/component/input-search.json b/packages/calcite-design-tokens/src/component/input-search.json similarity index 100% rename from tokens/component/input-search.json rename to packages/calcite-design-tokens/src/component/input-search.json diff --git a/tokens/component/input-telephone.json b/packages/calcite-design-tokens/src/component/input-telephone.json similarity index 100% rename from tokens/component/input-telephone.json rename to packages/calcite-design-tokens/src/component/input-telephone.json diff --git a/tokens/component/input-text.json b/packages/calcite-design-tokens/src/component/input-text.json similarity index 100% rename from tokens/component/input-text.json rename to packages/calcite-design-tokens/src/component/input-text.json diff --git a/tokens/component/input-time.json b/packages/calcite-design-tokens/src/component/input-time.json similarity index 100% rename from tokens/component/input-time.json rename to packages/calcite-design-tokens/src/component/input-time.json diff --git a/tokens/component/input-week.json b/packages/calcite-design-tokens/src/component/input-week.json similarity index 100% rename from tokens/component/input-week.json rename to packages/calcite-design-tokens/src/component/input-week.json diff --git a/tokens/component/label.json b/packages/calcite-design-tokens/src/component/label.json similarity index 100% rename from tokens/component/label.json rename to packages/calcite-design-tokens/src/component/label.json diff --git a/tokens/component/link.json b/packages/calcite-design-tokens/src/component/link.json similarity index 100% rename from tokens/component/link.json rename to packages/calcite-design-tokens/src/component/link.json diff --git a/tokens/component/loader.json b/packages/calcite-design-tokens/src/component/loader.json similarity index 100% rename from tokens/component/loader.json rename to packages/calcite-design-tokens/src/component/loader.json diff --git a/tokens/component/modal.json b/packages/calcite-design-tokens/src/component/modal.json similarity index 100% rename from tokens/component/modal.json rename to packages/calcite-design-tokens/src/component/modal.json diff --git a/tokens/component/notice.json b/packages/calcite-design-tokens/src/component/notice.json similarity index 100% rename from tokens/component/notice.json rename to packages/calcite-design-tokens/src/component/notice.json diff --git a/tokens/component/pagination.json b/packages/calcite-design-tokens/src/component/pagination.json similarity index 100% rename from tokens/component/pagination.json rename to packages/calcite-design-tokens/src/component/pagination.json diff --git a/tokens/component/panel-header.json b/packages/calcite-design-tokens/src/component/panel-header.json similarity index 100% rename from tokens/component/panel-header.json rename to packages/calcite-design-tokens/src/component/panel-header.json diff --git a/tokens/component/popover.json b/packages/calcite-design-tokens/src/component/popover.json similarity index 100% rename from tokens/component/popover.json rename to packages/calcite-design-tokens/src/component/popover.json diff --git a/tokens/component/radio.json b/packages/calcite-design-tokens/src/component/radio.json similarity index 100% rename from tokens/component/radio.json rename to packages/calcite-design-tokens/src/component/radio.json diff --git a/tokens/component/rating.json b/packages/calcite-design-tokens/src/component/rating.json similarity index 100% rename from tokens/component/rating.json rename to packages/calcite-design-tokens/src/component/rating.json diff --git a/tokens/component/scrim.json b/packages/calcite-design-tokens/src/component/scrim.json similarity index 100% rename from tokens/component/scrim.json rename to packages/calcite-design-tokens/src/component/scrim.json diff --git a/tokens/component/segmented-control.json b/packages/calcite-design-tokens/src/component/segmented-control.json similarity index 100% rename from tokens/component/segmented-control.json rename to packages/calcite-design-tokens/src/component/segmented-control.json diff --git a/tokens/component/slider-histogram-range.json b/packages/calcite-design-tokens/src/component/slider-histogram-range.json similarity index 100% rename from tokens/component/slider-histogram-range.json rename to packages/calcite-design-tokens/src/component/slider-histogram-range.json diff --git a/tokens/component/slider-histogram.json b/packages/calcite-design-tokens/src/component/slider-histogram.json similarity index 100% rename from tokens/component/slider-histogram.json rename to packages/calcite-design-tokens/src/component/slider-histogram.json diff --git a/tokens/component/slider-range.json b/packages/calcite-design-tokens/src/component/slider-range.json similarity index 100% rename from tokens/component/slider-range.json rename to packages/calcite-design-tokens/src/component/slider-range.json diff --git a/tokens/component/slider.json b/packages/calcite-design-tokens/src/component/slider.json similarity index 100% rename from tokens/component/slider.json rename to packages/calcite-design-tokens/src/component/slider.json diff --git a/tokens/component/split-button.json b/packages/calcite-design-tokens/src/component/split-button.json similarity index 100% rename from tokens/component/split-button.json rename to packages/calcite-design-tokens/src/component/split-button.json diff --git a/tokens/component/stepper-item.json b/packages/calcite-design-tokens/src/component/stepper-item.json similarity index 100% rename from tokens/component/stepper-item.json rename to packages/calcite-design-tokens/src/component/stepper-item.json diff --git a/tokens/component/stepper.json b/packages/calcite-design-tokens/src/component/stepper.json similarity index 100% rename from tokens/component/stepper.json rename to packages/calcite-design-tokens/src/component/stepper.json diff --git a/tokens/component/switch.json b/packages/calcite-design-tokens/src/component/switch.json similarity index 100% rename from tokens/component/switch.json rename to packages/calcite-design-tokens/src/component/switch.json diff --git a/tokens/component/tab-title.json b/packages/calcite-design-tokens/src/component/tab-title.json similarity index 100% rename from tokens/component/tab-title.json rename to packages/calcite-design-tokens/src/component/tab-title.json diff --git a/tokens/component/tabs.json b/packages/calcite-design-tokens/src/component/tabs.json similarity index 100% rename from tokens/component/tabs.json rename to packages/calcite-design-tokens/src/component/tabs.json diff --git a/tokens/component/textarea.json b/packages/calcite-design-tokens/src/component/textarea.json similarity index 100% rename from tokens/component/textarea.json rename to packages/calcite-design-tokens/src/component/textarea.json diff --git a/tokens/component/time-picker.json b/packages/calcite-design-tokens/src/component/time-picker.json similarity index 100% rename from tokens/component/time-picker.json rename to packages/calcite-design-tokens/src/component/time-picker.json diff --git a/tokens/component/tip-manager.json b/packages/calcite-design-tokens/src/component/tip-manager.json similarity index 100% rename from tokens/component/tip-manager.json rename to packages/calcite-design-tokens/src/component/tip-manager.json diff --git a/tokens/component/tip.json b/packages/calcite-design-tokens/src/component/tip.json similarity index 100% rename from tokens/component/tip.json rename to packages/calcite-design-tokens/src/component/tip.json diff --git a/tokens/component/tooltip.json b/packages/calcite-design-tokens/src/component/tooltip.json similarity index 100% rename from tokens/component/tooltip.json rename to packages/calcite-design-tokens/src/component/tooltip.json diff --git a/tokens/component/tree-item.json b/packages/calcite-design-tokens/src/component/tree-item.json similarity index 100% rename from tokens/component/tree-item.json rename to packages/calcite-design-tokens/src/component/tree-item.json diff --git a/tokens/core.json b/packages/calcite-design-tokens/src/core.json similarity index 100% rename from tokens/core.json rename to packages/calcite-design-tokens/src/core.json diff --git a/tokens/semantic.json b/packages/calcite-design-tokens/src/semantic.json similarity index 100% rename from tokens/semantic.json rename to packages/calcite-design-tokens/src/semantic.json diff --git a/tools/token-transformer/format/scss.test.ts b/packages/calcite-design-tokens/support/token-transformer/format/scss.test.ts similarity index 100% rename from tools/token-transformer/format/scss.test.ts rename to packages/calcite-design-tokens/support/token-transformer/format/scss.test.ts diff --git a/tools/token-transformer/format/scss.ts b/packages/calcite-design-tokens/support/token-transformer/format/scss.ts similarity index 100% rename from tools/token-transformer/format/scss.ts rename to packages/calcite-design-tokens/support/token-transformer/format/scss.ts diff --git a/tools/token-transformer/getThemes.ts b/packages/calcite-design-tokens/support/token-transformer/getThemes.ts similarity index 100% rename from tools/token-transformer/getThemes.ts rename to packages/calcite-design-tokens/support/token-transformer/getThemes.ts diff --git a/tools/token-transformer/parse/expandComposites.test.ts b/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.test.ts similarity index 100% rename from tools/token-transformer/parse/expandComposites.test.ts rename to packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.test.ts diff --git a/tools/token-transformer/parse/expandComposites.ts b/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.ts similarity index 100% rename from tools/token-transformer/parse/expandComposites.ts rename to packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.ts diff --git a/tools/token-transformer/sd-run.ts b/packages/calcite-design-tokens/support/token-transformer/sd-run.ts similarity index 100% rename from tools/token-transformer/sd-run.ts rename to packages/calcite-design-tokens/support/token-transformer/sd-run.ts diff --git a/tools/token-transformer/transform/nameCamelCase.test.ts b/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.test.ts similarity index 100% rename from tools/token-transformer/transform/nameCamelCase.test.ts rename to packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.test.ts diff --git a/tools/token-transformer/transform/nameCamelCase.ts b/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts similarity index 100% rename from tools/token-transformer/transform/nameCamelCase.ts rename to packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts diff --git a/tools/token-transformer/transform/nameKebabCase.test.ts b/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.test.ts similarity index 100% rename from tools/token-transformer/transform/nameKebabCase.test.ts rename to packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.test.ts diff --git a/tools/token-transformer/transform/nameKebabCase.ts b/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts similarity index 100% rename from tools/token-transformer/transform/nameKebabCase.ts rename to packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts diff --git a/tools/token-transformer/utils/compositeTokens.test.ts b/packages/calcite-design-tokens/support/token-transformer/utils/compositeTokens.test.ts similarity index 100% rename from tools/token-transformer/utils/compositeTokens.test.ts rename to packages/calcite-design-tokens/support/token-transformer/utils/compositeTokens.test.ts diff --git a/tools/token-transformer/utils/compositeTokens.ts b/packages/calcite-design-tokens/support/token-transformer/utils/compositeTokens.ts similarity index 100% rename from tools/token-transformer/utils/compositeTokens.ts rename to packages/calcite-design-tokens/support/token-transformer/utils/compositeTokens.ts diff --git a/tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts b/packages/calcite-design-tokens/support/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts similarity index 100% rename from tools/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts rename to packages/calcite-design-tokens/support/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts diff --git a/tools/token-transformer/utils/matchList.ts b/packages/calcite-design-tokens/support/token-transformer/utils/matchList.ts similarity index 100% rename from tools/token-transformer/utils/matchList.ts rename to packages/calcite-design-tokens/support/token-transformer/utils/matchList.ts diff --git a/tools/token-transformer/utils/parseName.ts b/packages/calcite-design-tokens/support/token-transformer/utils/parseName.ts similarity index 100% rename from tools/token-transformer/utils/parseName.ts rename to packages/calcite-design-tokens/support/token-transformer/utils/parseName.ts diff --git a/tools/token-transformer/utils/parseTokenPath.ts b/packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts similarity index 100% rename from tools/token-transformer/utils/parseTokenPath.ts rename to packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts diff --git a/tools/token-transformer/utils/regex.ts b/packages/calcite-design-tokens/support/token-transformer/utils/regex.ts similarity index 100% rename from tools/token-transformer/utils/regex.ts rename to packages/calcite-design-tokens/support/token-transformer/utils/regex.ts diff --git a/tools/token-transformer/utils/sortAllTokens.ts b/packages/calcite-design-tokens/support/token-transformer/utils/sortAllTokens.ts similarity index 100% rename from tools/token-transformer/utils/sortAllTokens.ts rename to packages/calcite-design-tokens/support/token-transformer/utils/sortAllTokens.ts diff --git a/tools/token-transformer/utils/transformOptions.ts b/packages/calcite-design-tokens/support/token-transformer/utils/transformOptions.ts similarity index 100% rename from tools/token-transformer/utils/transformOptions.ts rename to packages/calcite-design-tokens/support/token-transformer/utils/transformOptions.ts diff --git a/tsconfig.cjs.json b/packages/calcite-design-tokens/tsconfig.cjs.json similarity index 100% rename from tsconfig.cjs.json rename to packages/calcite-design-tokens/tsconfig.cjs.json diff --git a/tsconfig.json b/packages/calcite-design-tokens/tsconfig.json similarity index 100% rename from tsconfig.json rename to packages/calcite-design-tokens/tsconfig.json diff --git a/tsconfig.prod.json b/packages/calcite-design-tokens/tsconfig.prod.json similarity index 100% rename from tsconfig.prod.json rename to packages/calcite-design-tokens/tsconfig.prod.json From fe3e32473a843e01eef3ea19a7d3f3b36927979b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 2 Oct 2023 16:41:07 -0700 Subject: [PATCH 676/696] ci: delete unnecessary files for monorepo these are unnecessary for git and are overwritten by the calcite-design-system # Conflicts: # .vscode/settings.json --- .editorconfig | 16 ---------------- .husky/.gitignore | 1 - .husky/pre-commit | 4 ---- .lintstagedrc.json | 5 ----- .npmignore | 34 ---------------------------------- .prettierignore | 4 ---- .prettierrc | 19 ------------------- .vscode/settings.json | 3 --- 8 files changed, 86 deletions(-) delete mode 100644 .editorconfig delete mode 100644 .husky/.gitignore delete mode 100755 .husky/pre-commit delete mode 100644 .lintstagedrc.json delete mode 100644 .npmignore delete mode 100644 .prettierignore delete mode 100644 .prettierrc delete mode 100644 .vscode/settings.json diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index fec720497a2..00000000000 --- a/.editorconfig +++ /dev/null @@ -1,16 +0,0 @@ -# EditorConfig is awesome: https://EditorConfig.org - -# top-most EditorConfig file -root = true - -# Unix-style newlines with a newline ending every file -[*] -end_of_line = lf -insert_final_newline = true -indent_style = space -indent_size = 2 - -# Matches multiple files with brace expansion notation -# Set default charset -[*.{js,py,css,html}] -charset = utf-8 diff --git a/.husky/.gitignore b/.husky/.gitignore deleted file mode 100644 index 31354ec1389..00000000000 --- a/.husky/.gitignore +++ /dev/null @@ -1 +0,0 @@ -_ diff --git a/.husky/pre-commit b/.husky/pre-commit deleted file mode 100755 index 36af219892f..00000000000 --- a/.husky/pre-commit +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -. "$(dirname "$0")/_/husky.sh" - -npx lint-staged diff --git a/.lintstagedrc.json b/.lintstagedrc.json deleted file mode 100644 index 4f39d08c018..00000000000 --- a/.lintstagedrc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "*.{json,html,yml}": ["prettier --write"], - "*.{ts,tsx}": ["eslint --ext .ts,.tsx --fix", "prettier --write"], - "*.md": ["markdownlint --fix --disable MD024 MD013 MD041 MD033", "prettier --write"] -} diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 697e276f901..00000000000 --- a/.npmignore +++ /dev/null @@ -1,34 +0,0 @@ -# Logs -logs -*.log - -# Dependency directory -# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- -node_modules - -# macOS metadata -.DS_Store - -# Pre-build Folders -tokens -tools -support - -# token-transformer runner -bin - -# Documentation -CONTRIBUTING.md - -# Configurations -.editorconfig -.eslintrc.json -.gitignore -.github -.husky -.vscode -.lintstagedrc.json -.prettierignore -.prettierrc -jest.config.json -tsconfig* diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index 6f7059ffe21..00000000000 --- a/.prettierignore +++ /dev/null @@ -1,4 +0,0 @@ -bin/ -dist/ -tools/dist/ -node_modules/ diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 2a5f9b07615..00000000000 --- a/.prettierrc +++ /dev/null @@ -1,19 +0,0 @@ -{ - "arrowParens": "always", - "bracketSameLine": false, - "bracketSpacing": true, - "printWidth": 120, - "semi": true, - "singleQuote": false, - "tabWidth": 2, - "trailingComma": "none", - "useTabs": false, - "overrides": [ - { - "files": "*.tsx", - "options": { - "printWidth": 100 - } - } - ] -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index c158ef40c20..00000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "cSpell.words": ["typeof"] -} From 170ce913fb361f3b88732c7ac0f1d126c60f30ab Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 2 Oct 2023 17:23:13 -0700 Subject: [PATCH 677/696] ci: update tsconfig to match monorepo # Conflicts: # packages/calcite-design-tokens/tsconfig.prod.json --- .../calcite-design-tokens/tsconfig-base.json | 17 +++++++++++++++++ .../calcite-design-tokens/tsconfig-eslint.json | 4 ++++ .../calcite-design-tokens/tsconfig.cjs.json | 9 --------- packages/calcite-design-tokens/tsconfig.json | 17 ++--------------- 4 files changed, 23 insertions(+), 24 deletions(-) create mode 100644 packages/calcite-design-tokens/tsconfig-base.json create mode 100644 packages/calcite-design-tokens/tsconfig-eslint.json delete mode 100644 packages/calcite-design-tokens/tsconfig.cjs.json mode change 100644 => 100755 packages/calcite-design-tokens/tsconfig.json diff --git a/packages/calcite-design-tokens/tsconfig-base.json b/packages/calcite-design-tokens/tsconfig-base.json new file mode 100644 index 00000000000..c31bc3b1706 --- /dev/null +++ b/packages/calcite-design-tokens/tsconfig-base.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "allowSyntheticDefaultImports": true, + "allowUnreachableCode": false, + "declaration": false, + "esModuleInterop": true, + "experimentalDecorators": true, + "lib": ["dom", "dom.iterable", "ES2021"], + "module": "esnext", + "moduleResolution": "node", + "noUnusedLocals": true, + "noUnusedParameters": true, + "resolveJsonModule": true, + "target": "ES2021" + }, + "exclude": ["node_modules", "dist"] +} diff --git a/packages/calcite-design-tokens/tsconfig-eslint.json b/packages/calcite-design-tokens/tsconfig-eslint.json new file mode 100644 index 00000000000..acd50dd751a --- /dev/null +++ b/packages/calcite-design-tokens/tsconfig-eslint.json @@ -0,0 +1,4 @@ +{ + "extends": "./tsconfig-base.json", + "include": ["./**/*"] +} diff --git a/packages/calcite-design-tokens/tsconfig.cjs.json b/packages/calcite-design-tokens/tsconfig.cjs.json deleted file mode 100644 index dd2ac37609d..00000000000 --- a/packages/calcite-design-tokens/tsconfig.cjs.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "./tsconfig", - "compilerOptions": { - "target": "ES2018", - "outDir": "./tools/dist", - "sourceMap": true - }, - "exclude": ["**/*.test.*"] -} diff --git a/packages/calcite-design-tokens/tsconfig.json b/packages/calcite-design-tokens/tsconfig.json old mode 100644 new mode 100755 index 44c99f30baf..87330b6212a --- a/packages/calcite-design-tokens/tsconfig.json +++ b/packages/calcite-design-tokens/tsconfig.json @@ -1,17 +1,4 @@ { - "compilerOptions": { - "allowSyntheticDefaultImports": true, - "allowUnreachableCode": false, - "declaration": false, - "esModuleInterop": true, - "experimentalDecorators": true, - "lib": ["dom", "dom.iterable", "ES2018"], - "module": "esnext", - "moduleResolution": "node", - "noUnusedLocals": false, - "noUnusedParameters": false, - "resolveJsonModule": true, - "target": "ES2018" - }, - "exclude": ["node_modules", "tokens", "dist"] + "extends": "./tsconfig-base", + "include": ["support", "src"] } From b4720bf905c5c5e2718536ab2bc839e8ca38ab4a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 3 Oct 2023 10:51:02 -0700 Subject: [PATCH 678/696] ci: fix linting to align with monorepo # Conflicts: # packages/calcite-design-tokens/package.json --- packages/calcite-design-tokens/.eslintrc.cjs | 85 +++++++++++++++++++ packages/calcite-design-tokens/.eslintrc.json | 78 ----------------- packages/calcite-design-tokens/package.json | 16 ++-- 3 files changed, 91 insertions(+), 88 deletions(-) create mode 100644 packages/calcite-design-tokens/.eslintrc.cjs delete mode 100644 packages/calcite-design-tokens/.eslintrc.json diff --git a/packages/calcite-design-tokens/.eslintrc.cjs b/packages/calcite-design-tokens/.eslintrc.cjs new file mode 100644 index 00000000000..10e33c84069 --- /dev/null +++ b/packages/calcite-design-tokens/.eslintrc.cjs @@ -0,0 +1,85 @@ +module.exports = { + root: true, + env: { + "jest/globals": true, + }, + extends: [ + "plugin:@cspell/recommended", + "plugin:@typescript-eslint/recommended", + "plugin:jest/recommended", + "plugin:jsdoc/recommended", + "prettier", + ], + ignorePatterns: ["dist"], + parser: "@typescript-eslint/parser", + parserOptions: { + tsconfigRootDir: __dirname, + project: ["tsconfig-eslint.json"], + ecmaVersion: 2021, + sourceType: "module", + }, + plugins: [ + "@typescript-eslint", + "import", + "jest", + "jsdoc", + "prettier", + "unicorn", + ], + rules: { + "@typescript-eslint/ban-types": "warn", + "@typescript-eslint/explicit-module-boundary-types": [ + "error", + { + allowArgumentsExplicitlyTypedAsAny: true, + }, + ], + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-unused-vars": "error", + curly: "error", + "import/no-dynamic-require": ["error", { esmodule: true }], + "jest/expect-expect": "off", + "jest/no-export": "warn", + "jsdoc/check-tag-names": "off", + "jsdoc/require-jsdoc": "off", + "jsdoc/require-param-type": "off", + "jsdoc/require-returns-type": "off", + "jsdoc/tag-lines": ["error", "any", { startLines: 1 }], + "lines-between-class-members": ["error", "always"], + "no-eval": "error", + "no-implied-eval": "error", + "no-multiple-empty-lines": [ + "error", + { + max: 1, + }, + ], + "no-new-func": "error", + "no-unneeded-ternary": "error", + "one-var": ["error", "never"], + "unicorn/prefer-ternary": "error", + "unicorn/prevent-abbreviations": [ + "error", + { + allowList: { + e2ePage: true, + }, + extendDefaultReplacements: false, + replacements: { + e: { + error: true, + event: true, + }, + }, + checkProperties: false, + checkFilenames: false, + }, + ], + }, + settings: { + jsdoc: { + ignoreInternal: true, + ignorePrivate: true, + }, + }, +}; diff --git a/packages/calcite-design-tokens/.eslintrc.json b/packages/calcite-design-tokens/.eslintrc.json deleted file mode 100644 index 8dccbafc56d..00000000000 --- a/packages/calcite-design-tokens/.eslintrc.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "env": { - "jest/globals": true - }, - "extends": [ - "plugin:@typescript-eslint/recommended", - "plugin:jest/recommended", - "plugin:jsdoc/recommended", - "prettier" - ], - "ignorePatterns": ["dist", "bin", "node_modules"], - "parser": "@typescript-eslint/parser", - "parserOptions": { - "project": "./tsconfig.json", - "ecmaVersion": 2018, - "sourceType": "module" - }, - "plugins": ["@typescript-eslint", "jest", "jsdoc", "prettier", "unicorn"], - "rules": { - "@typescript-eslint/ban-types": "warn", - "@typescript-eslint/explicit-module-boundary-types": [ - "error", - { - "allowArgumentsExplicitlyTypedAsAny": true, - "allowedNames": [ - "connectedCallback", - "disconnectedCallback", - "componentWillRender", - "componentDidRender", - "componentWillLoad", - "componentDidLoad", - "componentWillUpdate", - "componentDidUpdate", - "render" - ] - } - ], - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-unused-vars": "error", - "curly": "error", - "jest/expect-expect": "off", - "jest/no-export": "warn", - "jsdoc/check-tag-names": "off", - "jsdoc/require-jsdoc": "off", - "lines-between-class-members": ["error", "always"], - "no-eval": "error", - "no-implied-eval": "error", - "no-multiple-empty-lines": [ - "error", - { - "max": 1 - } - ], - "no-new-func": "error", - "no-unneeded-ternary": "error", - "unicorn/prefer-ternary": "error", - "unicorn/prevent-abbreviations": [ - "error", - { - "extendDefaultReplacements": false, - "replacements": { - "e": { - "error": true, - "event": true - } - }, - "checkProperties": false, - "checkFilenames": false - } - ] - }, - "settings": { - "jsdoc": { - "ignoreInternal": true, - "ignorePrivate": true - } - } -} diff --git a/packages/calcite-design-tokens/package.json b/packages/calcite-design-tokens/package.json index 70f6814eba9..68f28f22752 100644 --- a/packages/calcite-design-tokens/package.json +++ b/packages/calcite-design-tokens/package.json @@ -65,20 +65,16 @@ "url": "https://github.com/Esri/calcite-design-tokens/issues" }, "scripts": { - "build:tokens": "node bin/run.js", - "build:ts": "tsc --project tsconfig.prod.json", - "build": "npm run build:ts && npm run build:tokens", + "build": "ts-node --esm support/run.ts", "clean": "rimraf dist", - "lint:eslint": "eslint --ext .ts,.tsx --fix .", - "lint:markdown": "markdownlint --fix --disable MD024 MD013 MD041 MD033", - "lint:prettier": "prettier --write .", - "lint:staged": "lint-staged", - "lint": "npm run lint:eslint && npm run lint:markdown && npm run lint:prettier", - "prepare": "husky install", - "release": "echo 'release is still TBD. Please message Ali Stump for more information.", + "lint:json": "prettier --write \"**/*.json\" >/dev/null", + "lint:md": "markdownlint \"**/*.md\" --fix --dot --ignore-path .gitignore && prettier --write \"**/*.md\" >/dev/null", + "lint:ts": "eslint --ext .ts,.tsx --fix . && prettier --write \"**/*.ts?(x)\" >/dev/null", + "lint": "concurrently npm:lint:*", "test": "jest" }, "devDependencies": { + "concurrently": "^8.2.1", "@tokens-studio/sd-transforms": "^0.8.2", "@types/jest": "^29.5.0", "@types/node": "^18.15.11", From 641c3688a26fa976c950a44b651370405bf4a84c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Tue, 3 Oct 2023 11:17:46 -0700 Subject: [PATCH 679/696] ci: add concurrently to devdeps to align with monorepo --- .../calcite-design-tokens/package-lock.json | 156 ++++++++++++++++++ 1 file changed, 156 insertions(+) diff --git a/packages/calcite-design-tokens/package-lock.json b/packages/calcite-design-tokens/package-lock.json index 779f581bbd6..fa4c083b5cf 100644 --- a/packages/calcite-design-tokens/package-lock.json +++ b/packages/calcite-design-tokens/package-lock.json @@ -14,6 +14,7 @@ "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^5.59.2", "change-case": "^4.1.2", + "concurrently": "^8.2.1", "eslint": "^8.39.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-jest": "^27.2.1", @@ -583,6 +584,18 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/runtime": { + "version": "7.23.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz", + "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", + "dev": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/template": { "version": "7.20.7", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", @@ -2768,6 +2781,48 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, + "node_modules/concurrently": { + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.2.1.tgz", + "integrity": "sha512-nVraf3aXOpIcNud5pB9M82p1tynmZkrSGQ1p6X/VY8cJ+2LMVqAgXsJxYYefACSHbTYlm92O1xuhdGTjwoEvbQ==", + "dev": true, + "dependencies": { + "chalk": "^4.1.2", + "date-fns": "^2.30.0", + "lodash": "^4.17.21", + "rxjs": "^7.8.1", + "shell-quote": "^1.8.1", + "spawn-command": "0.0.2", + "supports-color": "^8.1.1", + "tree-kill": "^1.2.2", + "yargs": "^17.7.2" + }, + "bin": { + "conc": "dist/bin/concurrently.js", + "concurrently": "dist/bin/concurrently.js" + }, + "engines": { + "node": "^14.13.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" + } + }, + "node_modules/concurrently/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, "node_modules/configstore": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", @@ -2855,6 +2910,22 @@ "node": ">=8" } }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -6682,6 +6753,12 @@ "node": ">= 0.10" } }, + "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-tree": { "version": "0.1.27", "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", @@ -7216,6 +7293,12 @@ "source-map": "^0.6.0" } }, + "node_modules/spawn-command": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", + "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", + "dev": true + }, "node_modules/spdx-correct": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", @@ -7599,6 +7682,15 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, "node_modules/ts-jest": { "version": "29.1.0", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", @@ -8600,6 +8692,15 @@ "@babel/helper-plugin-utils": "^7.20.2" } }, + "@babel/runtime": { + "version": "7.23.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz", + "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, "@babel/template": { "version": "7.20.7", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", @@ -10242,6 +10343,34 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, + "concurrently": { + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.2.1.tgz", + "integrity": "sha512-nVraf3aXOpIcNud5pB9M82p1tynmZkrSGQ1p6X/VY8cJ+2LMVqAgXsJxYYefACSHbTYlm92O1xuhdGTjwoEvbQ==", + "dev": true, + "requires": { + "chalk": "^4.1.2", + "date-fns": "^2.30.0", + "lodash": "^4.17.21", + "rxjs": "^7.8.1", + "shell-quote": "^1.8.1", + "spawn-command": "0.0.2", + "supports-color": "^8.1.1", + "tree-kill": "^1.2.2", + "yargs": "^17.7.2" + }, + "dependencies": { + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "configstore": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", @@ -10322,6 +10451,15 @@ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", "dev": true }, + "date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.21.0" + } + }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -13190,6 +13328,12 @@ "resolve": "^1.1.6" } }, + "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-tree": { "version": "0.1.27", "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", @@ -13563,6 +13707,12 @@ "source-map": "^0.6.0" } }, + "spawn-command": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", + "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", + "dev": true + }, "spdx-correct": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", @@ -13878,6 +14028,12 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, + "tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true + }, "ts-jest": { "version": "29.1.0", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", From ca3260ba48f8e0e34ff731ece25f260ddfc9efb1 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 4 Oct 2023 09:01:27 -0700 Subject: [PATCH 680/696] ci: pin dependencies --- packages/calcite-design-tokens/package.json | 52 ++++++++++----------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/packages/calcite-design-tokens/package.json b/packages/calcite-design-tokens/package.json index 68f28f22752..1e4b9be3fa1 100644 --- a/packages/calcite-design-tokens/package.json +++ b/packages/calcite-design-tokens/package.json @@ -74,31 +74,31 @@ "test": "jest" }, "devDependencies": { - "concurrently": "^8.2.1", - "@tokens-studio/sd-transforms": "^0.8.2", - "@types/jest": "^29.5.0", - "@types/node": "^18.15.11", - "@typescript-eslint/eslint-plugin": "^5.59.2", - "change-case": "^4.1.2", - "eslint": "^8.39.0", - "eslint-config-prettier": "^8.8.0", - "eslint-plugin-jest": "^27.2.1", - "eslint-plugin-jsdoc": "^43.1.1", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-unicorn": "^46.0.0", - "gh-release": "^7.0.2", - "husky": "^8.0.3", - "jest": "^29.5.0", - "markdownlint-cli": "^0.34.0", - "prettier": "^2.8.8", - "rimraf": "^5.0.0", - "shell-quote": "^1.8.1", - "style-dictionary": "^3.7.1", - "token-transformer": "^0.0.27", - "ts-jest": "^29.0.5", - "ts-node": "^10.9.1", - "tslib": "^2.5.0", - "typescript": "^5.0.2", - "yargs": "^17.7.2" + "concurrently": "8.2.1", + "@tokens-studio/sd-transforms": "0.8.2", + "@types/jest": "29.5.0", + "@types/node": "18.15.11", + "@typescript-eslint/eslint-plugin": "5.59.2", + "change-case": "4.1.2", + "eslint": "8.39.0", + "eslint-config-prettier": "8.8.0", + "eslint-plugin-jest": "27.2.1", + "eslint-plugin-jsdoc": "43.1.1", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-unicorn": "46.0.0", + "gh-release": "7.0.2", + "husky": "8.0.3", + "jest": "29.5.0", + "markdownlint-cli": "0.34.0", + "prettier": "2.8.8", + "rimraf": "5.0.0", + "shell-quote": "1.8.1", + "style-dictionary": "3.7.1", + "token-transformer": "0.0.27", + "ts-jest": "29.0.5", + "ts-node": "10.9.1", + "tslib": "2.5.0", + "typescript": "5.0.2", + "yargs": "17.7.2" } } From 1bcdf8c3e6ed9b65f04a37fa78c3e047ef5a89e9 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 4 Oct 2023 09:02:58 -0700 Subject: [PATCH 681/696] ci: remove unused node modules --- packages/calcite-design-tokens/package.json | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/calcite-design-tokens/package.json b/packages/calcite-design-tokens/package.json index 1e4b9be3fa1..41443e1b0e2 100644 --- a/packages/calcite-design-tokens/package.json +++ b/packages/calcite-design-tokens/package.json @@ -86,19 +86,13 @@ "eslint-plugin-jsdoc": "43.1.1", "eslint-plugin-prettier": "4.2.1", "eslint-plugin-unicorn": "46.0.0", - "gh-release": "7.0.2", - "husky": "8.0.3", "jest": "29.5.0", "markdownlint-cli": "0.34.0", "prettier": "2.8.8", "rimraf": "5.0.0", - "shell-quote": "1.8.1", "style-dictionary": "3.7.1", - "token-transformer": "0.0.27", "ts-jest": "29.0.5", "ts-node": "10.9.1", - "tslib": "2.5.0", - "typescript": "5.0.2", - "yargs": "17.7.2" + "typescript": "5.0.2" } } From 8f97111c009da948af55b8e3946d487ba3478d74 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 4 Oct 2023 09:04:56 -0700 Subject: [PATCH 682/696] docs: fix markdown for monorepo merge remove unnecessary instructions --- packages/calcite-design-tokens/CHANGELOG.md | 11 +- .../calcite-design-tokens/CONTRIBUTING.md | 162 +++--------------- packages/calcite-design-tokens/README.md | 20 +-- 3 files changed, 38 insertions(+), 155 deletions(-) diff --git a/packages/calcite-design-tokens/CHANGELOG.md b/packages/calcite-design-tokens/CHANGELOG.md index 6548a85b59b..6dbcbeea72b 100644 --- a/packages/calcite-design-tokens/CHANGELOG.md +++ b/packages/calcite-design-tokens/CHANGELOG.md @@ -1,9 +1,12 @@ -# Changelog +# Change Log -All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.0.0-beta.0](https://github.com/Esri/calcite-styles/compare/v0.1.0...v1.0.0-beta.0) (2023-05-04) +## [1.0.0](2023-05-11) ### Features -- add scss platform ([5624b4e](https://github.com/Esri/calcite-styles/commit/5624b4e0f59171a57b49a4ce48cab996d981e54a)) +- Uses @token-studio tokens format +- Add css platform +- Add scss platform \ No newline at end of file diff --git a/packages/calcite-design-tokens/CONTRIBUTING.md b/packages/calcite-design-tokens/CONTRIBUTING.md index 4bf7b9c4432..de28c2bcc8e 100644 --- a/packages/calcite-design-tokens/CONTRIBUTING.md +++ b/packages/calcite-design-tokens/CONTRIBUTING.md @@ -1,159 +1,41 @@ -# Contributing to calcite-design-tokens +# Contributing to `calcite-design-tokens` -You want to contribute? Nice! Below are some guidelines for ensuring that your contribution makes sense for everybody. +This document contains information about contributing to the `calcite-design-tokens` package. Please read the general [CONTRIBUTING](../../CONTRIBUTING.md) document first, which includes initial setup, commit message conventions, and more. -## Reporting Issues +## Project scripts -Found a problem? Want a new feature? +### Build -- See if your issue or idea has [already been reported](issues). -- Provide detailed reproduction instructions as well as what behavior is expected. +Build the tokens to platform asset formats like CSS, SCSS, and JavaScript. -## Contributing to tokens +`npm --workspace=packages/calcite-design-tokens run build` -### Clone the repo +## Test -To begin, [fork this project](fork), clone your fork, and add our upstream. - -```bash -# Clone your fork of the repo into the current directory -git clone https://github.com//calcite-design-tokens -# Navigate to the newly cloned directory -cd calcite-design-tokens -# Assign the original repo to a remote called "upstream" -git remote add upstream https://github.com/esri/calcite-design-tokens -# Install the tools necessary for development -npm install -``` - -### Create a branch for your feature or fix - -If you are a designer setting up a branch for Figma Tokens Plugin, make sure your branch name starts with `designer/`. - -```bash -git checkout -b designer/[yourname] -``` - -or use the calcite default branching pattern - -```bash -git checkout -b [yourname]/[type]-[issue#] -``` - -### Setup the project - -#### install - -`npm install` - -#### build - -Build the tokens to platform assets - -`npm run build` - -## Understanding Token Files - -All token files may be updated by the Figma Token Studio plugin. These can also be updated in the code directly. Any changes to token files must be reviewed by the Calcite Design Team. - -### tokens/$metadata.json - -This file is used by Figma Token Studio but is not used to determine final token asset output. - -### tokens/$themes.json - -Each theme defined in this file will output a token asset in each format defined in the token transformer config. - -### tokens/core.json - -The core design tokens upon which the rest of the tokens are built. - -### tokens/semantic.json - -The semantic design tokens used by theme files and components. - -### tokens/component/ - -The component design tokens. These are used by themes. - -### tokens/calcite/ - -The Calcite themes. This currently consists of a light and dark theme. - -## Submitting Pull Requests - -Pull requests are the greatest contributions, so be sure they are focused in scope. - -### Be sure your code passes our integration and unit tests +Be sure your code passes our integration and unit tests ```bash # Test current code -npm run test +npm --workspace=packages/calcite-design-tokens run test ``` -### Push your branch up to your fork - -```bash -# Push a designer branch -git push origin designer/[yourname] -``` - -```bash -# Push a developer branch -git push origin [yourname]/[type]-[issue#] -``` - -### Open the pull request back to the token repo - -Make sure to use a clear title and description. See [open a pull request](https://help.github.com/articles/using-pull-requests/) for more information. - -## Bumping the Version +## Understanding token files -1. Following the rules of [SEMVER](https://semver.org/), change the version number in `package.json` to the appropriate version number. -2. Write a description of the changes, additions, and bug fixes in `CHANGELOG.md`. -3. Run `npm run build` to make sure the `dist/` files are updated. -4. Make sure `Esri/calcite-design-tokens` is up-to-date with your changes (via Pull Request). -5. Run `npm run release`. If prompted enter your GitHub credentials. - -## CI Automation - -Github actions facilitate the token handoff between the Designers using the Figma Tokens Plugin and a multi-branch git repo. - -Designers using the Figma Token Plugin should set their watched git repo to `designers/[custom-name]`. - -### design-tokens-pr.yml +All token files may be updated by the Figma Token Studio plugin. These can also be updated in the code directly. Any changes to token files must be reviewed by the Calcite Design Team. -This file allows designers to each work off their own branch. Helping prevent accidental overwrites from other people working on the same tokens files. +| Name | Description | +| -------------------- | ----------------------------------------------------------------------------------------------------------------- | +| `src/$metadata.json` | This file is used by Figma Token Studio but is not used to determine final token asset output. | +| `src/$themes.json` | Each theme defined in this file will output a token asset in each format defined in the token transformer config. | +| `src/core.json` | The core design tokens upon which the rest of the tokens are built. | +| `src/semantic.json` | The semantic design tokens used by theme files and components. | +| `src/component/` | The component design tokens. These are used by themes. | +| `src/calcite/` | The Calcite themes. This currently consists of a light and dark theme. | -Automated Steps +### Open a PR -1. Watches for changes to any branch in the repo named `designers/*`. -1. Generate a pull request with new changes to the set feature branch. +Designers working in Figma will need to manually open a PR through GitHub after updating their branch via the Figma plugin. PRs should be opened against main. ### Wait for reviewers -Await reviews from the team before merging the new work from designers into the feature branch. This allows time for discussion and alignment on bug fixes, features, and potential breaking changes before merging. - -### design-tokens-sync.yml - -When changes are detected on the feature branch, generate a pull-request back to the designer branches. This avoids the burden on designers to have to switch between branches in the Figma Token plugin and ensuring any conflicts between each designer's branch and the feature branch do not accidentally overwrite the designers work. - -Automated Steps - -1. Watch for changes on the feature branch. -1. Open pull-requests to each of the designer branches set in the action file. -1. Add `automated-tokens-pr'` label. - -### design-tokens-automerge.yml - -Auto merge pull requests created with the label `automated-tokens-pr`. - -Automated Steps - -1. Watch for pull requests with the label `automated-tokens-pr`. -1. Wait to confirm the pull request passes required checks. -1. Merge the pull request with the commit message `chore: automatic merge`. - -## Commit message format - -This project follows [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/), which are used to generate the changelog. Be sure to provide clear and sufficient information in commit messages. This is important because the commit messages are used to automatically update the changelog. +All Token PRs require sign-off from a Calcite Designer and Engineer before merging into main. \ No newline at end of file diff --git a/packages/calcite-design-tokens/README.md b/packages/calcite-design-tokens/README.md index d2918d25534..733a2408ddf 100644 --- a/packages/calcite-design-tokens/README.md +++ b/packages/calcite-design-tokens/README.md @@ -8,7 +8,7 @@ Install the design tokens module. npm install @esri/calcite-design-tokens ``` -Reference tokens in your CSS. +Reference tokens in your CSS: ```css @import "@esri/calcite-design-tokens/css/calcite-light"; @@ -20,14 +20,12 @@ Reference tokens in your CSS. ## Token assets -These are the published asset files generated by the token transformer +These are the published asset files generated by the token transformer: -| Name | CSS | SCSS | -| ------------------- | ------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | -| Calcite Headless | @esri/calcite-design-tokens/css
@esri/calcite-design-tokens/css/calcite-headless | @esri/calcite-design-tokens/scss
@esri/calcite-design-tokens/scss/calcite-headless | -| Calcite Light | @esri/calcite-design-tokens/css/calcite-light | @esri/calcite-design-tokens/scss/calcite-light | -| Calcite Dark | @esri/calcite-design-tokens/css/calcite-dark | @esri/calcite-design-tokens/scss/calcite-dark | -| Calcite Brand Light | @esri/calcite-design-tokens/css/brand-light | @esri/calcite-design-tokens/scss/brand-light | -| Calcite Brand Dark | @esri/calcite-design-tokens/css/brand-dark | @esri/calcite-design-tokens/scss/brand-dark | - -For a full list of tokens and their detailes, please refer to https://developers.arcgis.com/calcite-design-system/tokens +| Name | CSS | SCSS | +| ------------------- | -------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| Calcite Headless | @esri/calcite-design-tokens/css @esri/calcite-design-tokens/css/calcite-headless | @esri/calcite-design-tokens/scss @esri/calcite-design-tokens/scss/calcite-headless | +| Calcite Light | @esri/calcite-design-tokens/css/calcite-light | @esri/calcite-design-tokens/scss/calcite-light | +| Calcite Dark | @esri/calcite-design-tokens/css/calcite-dark | @esri/calcite-design-tokens/scss/calcite-dark | +| Calcite Brand Light | @esri/calcite-design-tokens/css/brand-light | @esri/calcite-design-tokens/scss/brand-light | +| Calcite Brand Dark | @esri/calcite-design-tokens/css/brand-dark | @esri/calcite-design-tokens/scss/brand-dark | \ No newline at end of file From badd2f9633de40e3e0302c8f0f5d9d22cc7fb8b6 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 4 Oct 2023 09:13:02 -0700 Subject: [PATCH 683/696] ci: remove individual contributors --- packages/calcite-design-tokens/package.json | 23 --------------------- 1 file changed, 23 deletions(-) diff --git a/packages/calcite-design-tokens/package.json b/packages/calcite-design-tokens/package.json index 41443e1b0e2..333d52631fc 100644 --- a/packages/calcite-design-tokens/package.json +++ b/packages/calcite-design-tokens/package.json @@ -38,29 +38,6 @@ "author": { "name": "Esri" }, - "contributors": [ - { - "name": "Ali Stump", - "email": "astump@esri.com" - }, - { - "name": "Erik Harper-Dicianno", - "email": "eharperdicianno@esri.com" - }, - { - "name": "Bruno Aires", - "email": "baires@esri.com" - }, - { - "name": "Jacques Keet", - "email": "jkeet@esri.com" - }, - { - "name": "Manuela Costa", - "email": "mcosta@esri.com" - } - ], - "license": "SEE LICENSE IN README.md", "bugs": { "url": "https://github.com/Esri/calcite-design-tokens/issues" }, From 73e3b2ce511320995b8ab46ef0a0d7a0d7362084 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 4 Oct 2023 10:12:14 -0700 Subject: [PATCH 684/696] ci: update dependencies --- .../calcite-design-tokens/package-lock.json | 10091 ++-------------- packages/calcite-design-tokens/package.json | 30 +- 2 files changed, 1025 insertions(+), 9096 deletions(-) diff --git a/packages/calcite-design-tokens/package-lock.json b/packages/calcite-design-tokens/package-lock.json index fa4c083b5cf..a9e7a1c47d6 100644 --- a/packages/calcite-design-tokens/package-lock.json +++ b/packages/calcite-design-tokens/package-lock.json @@ -1,40 +1,42 @@ { "name": "@esri/calcite-design-tokens", "version": "1.0.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@esri/calcite-design-tokens", "version": "1.0.0", - "license": "SEE LICENSE IN README.md", "devDependencies": { - "@tokens-studio/sd-transforms": "^0.8.2", - "@types/jest": "^29.5.0", - "@types/node": "^18.15.11", - "@typescript-eslint/eslint-plugin": "^5.59.2", - "change-case": "^4.1.2", - "concurrently": "^8.2.1", - "eslint": "^8.39.0", - "eslint-config-prettier": "^8.8.0", - "eslint-plugin-jest": "^27.2.1", - "eslint-plugin-jsdoc": "^43.1.1", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-unicorn": "^46.0.0", - "gh-release": "^7.0.2", - "husky": "^8.0.3", - "jest": "^29.5.0", - "markdownlint-cli": "^0.34.0", - "prettier": "^2.8.8", - "rimraf": "^5.0.0", - "shell-quote": "^1.8.1", - "style-dictionary": "^3.7.1", - "token-transformer": "^0.0.27", - "ts-jest": "^29.0.5", - "ts-node": "^10.9.1", - "tslib": "^2.5.0", - "typescript": "^5.0.2", - "yargs": "^17.7.2" + "@tokens-studio/sd-transforms": "0.8.7", + "@types/jest": "29.5.5", + "@types/node": "18.18.3", + "@typescript-eslint/eslint-plugin": "5.62.0", + "change-case": "4.1.2", + "concurrently": "8.2.1", + "eslint": "8.50.0", + "eslint-config-prettier": "8.10.0", + "eslint-plugin-jest": "27.4.2", + "eslint-plugin-jsdoc": "43.2.0", + "eslint-plugin-prettier": "4.2.1", + "eslint-plugin-unicorn": "46.0.1", + "jest": "29.7.0", + "markdownlint-cli": "0.34.0", + "prettier": "2.8.8", + "rimraf": "5.0.5", + "style-dictionary": "3.8.0", + "ts-jest": "29.1.1", + "ts-node": "10.9.1", + "typescript": "5.2.2" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, "node_modules/@ampproject/remapping": { @@ -51,47 +53,119 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", "dev": true, "dependencies": { - "@babel/highlight": "^7.18.6" + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/code-frame/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/@babel/code-frame/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/@babel/code-frame/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/@babel/code-frame/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/@babel/code-frame/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/@babel/code-frame/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/@babel/code-frame/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/@babel/compat-data": { - "version": "7.21.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz", - "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz", + "integrity": "sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", - "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.0.tgz", + "integrity": "sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-compilation-targets": "^7.21.5", - "@babel/helper-module-transforms": "^7.21.5", - "@babel/helpers": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "convert-source-map": "^1.7.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helpers": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.0", + "@babel/types": "^7.23.0", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -101,28 +175,22 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", - "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", + "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", "dev": true, "dependencies": { - "@babel/types": "^7.21.5", + "@babel/types": "^7.23.0", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -144,180 +212,177 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz", - "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.21.5", - "@babel/helper-validator-option": "^7.21.0", - "browserslist": "^4.21.3", + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz", - "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", - "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, "dependencies": { - "@babel/template": "^7.20.7", - "@babel/types": "^7.21.0" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", - "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "dev": true, "dependencies": { - "@babel/types": "^7.21.4" + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz", - "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz", + "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-simple-access": "^7.21.5", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz", - "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", - "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, "dependencies": { - "@babel/types": "^7.21.5" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", - "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "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/helper-validator-option": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", - "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", - "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", + "version": "7.23.1", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.1.tgz", + "integrity": "sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==", "dev": true, "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.0", + "@babel/types": "^7.23.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -396,9 +461,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", - "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -468,12 +533,12 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", - "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -570,12 +635,12 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", - "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -597,33 +662,33 @@ } }, "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", - "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.5", - "@babel/types": "^7.21.5", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.0.tgz", + "integrity": "sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.0", + "@babel/types": "^7.23.0", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -641,13 +706,13 @@ } }, "node_modules/@babel/types": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", - "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", + "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.21.5", - "@babel/helper-validator-identifier": "^7.19.1", + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" }, "engines": { @@ -683,9 +748,9 @@ } }, "node_modules/@es-joy/jsdoccomment": { - "version": "0.37.1", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.37.1.tgz", - "integrity": "sha512-5vxWJ1gEkEF0yRd0O+uK6dHJf7adrxwQSX8PuRiPfFSAbNLnY0ZJfXaZucoz14Jj2N11xn2DnlEPwWRpYpvRjg==", + "version": "0.38.0", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.38.0.tgz", + "integrity": "sha512-TFac4Bnv0ZYNkEeDnOWHQhaS1elWlvOCQxH06iHeu5iffs+hCaLVIZJwF+FqksQi68R4i66Pu+4DfFGvble+Uw==", "dev": true, "dependencies": { "comment-parser": "1.3.1", @@ -693,7 +758,7 @@ "jsdoc-type-pratt-parser": "~4.0.0" }, "engines": { - "node": "^14 || ^16 || ^17 || ^18 || ^19 || ^20" + "node": ">=16" } }, "node_modules/@eslint-community/eslint-utils": { @@ -712,23 +777,23 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", - "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.1.tgz", + "integrity": "sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/eslintrc": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", - "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.5.1", + "espree": "^9.6.0", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", @@ -744,18 +809,18 @@ } }, "node_modules/@eslint/js": { - "version": "8.39.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz", - "integrity": "sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==", + "version": "8.50.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.50.0.tgz", + "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "version": "0.11.11", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", @@ -850,9 +915,9 @@ } }, "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "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" @@ -990,16 +1055,16 @@ } }, "node_modules/@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -1007,37 +1072,37 @@ } }, "node_modules/@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "ci-info": "^3.2.0", "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, @@ -1054,89 +1119,89 @@ } }, "node_modules/@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0" + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3" + "jest-get-type": "^29.6.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", @@ -1144,13 +1209,13 @@ "glob": "^7.1.3", "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", "string-length": "^4.0.1", "strip-ansi": "^6.0.0", @@ -1169,24 +1234,24 @@ } }, "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "dependencies": { - "@sinclair/typebox": "^0.25.16" + "@sinclair/typebox": "^0.27.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.15", + "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", "graceful-fs": "^4.2.9" }, @@ -1195,13 +1260,13 @@ } }, "node_modules/@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, @@ -1210,14 +1275,14 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", + "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.7.0", "slash": "^3.0.0" }, "engines": { @@ -1225,22 +1290,22 @@ } }, "node_modules/@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", "pirates": "^4.0.4", "slash": "^3.0.0", @@ -1251,12 +1316,12 @@ } }, "node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", @@ -1282,9 +1347,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "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" @@ -1306,21 +1371,15 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -1356,165 +1415,6 @@ "node": ">= 8" } }, - "node_modules/@octokit/auth-token": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.3.tgz", - "integrity": "sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/core": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.0.tgz", - "integrity": "sha512-AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg==", - "dev": true, - "dependencies": { - "@octokit/auth-token": "^3.0.0", - "@octokit/graphql": "^5.0.0", - "@octokit/request": "^6.0.0", - "@octokit/request-error": "^3.0.0", - "@octokit/types": "^9.0.0", - "before-after-hook": "^2.2.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/endpoint": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.5.tgz", - "integrity": "sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0", - "is-plain-object": "^5.0.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/graphql": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.5.tgz", - "integrity": "sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ==", - "dev": true, - "dependencies": { - "@octokit/request": "^6.0.0", - "@octokit/types": "^9.0.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/openapi-types": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.1.0.tgz", - "integrity": "sha512-rnI26BAITDZTo5vqFOmA7oX4xRd18rO+gcK4MiTpJmsRMxAw0JmevNjPsjpry1bb9SVNo56P/0kbiyXXa4QluA==", - "dev": true - }, - "node_modules/@octokit/plugin-paginate-rest": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.0.0.tgz", - "integrity": "sha512-Sq5VU1PfT6/JyuXPyt04KZNVsFOSBaYOAq2QRZUwzVlI10KFvcbUo8lR258AAQL1Et60b0WuVik+zOWKLuDZxw==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "@octokit/core": ">=4" - } - }, - "node_modules/@octokit/plugin-request-log": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", - "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", - "dev": true, - "peerDependencies": { - "@octokit/core": ">=3" - } - }, - "node_modules/@octokit/plugin-rest-endpoint-methods": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.0.1.tgz", - "integrity": "sha512-pnCaLwZBudK5xCdrR823xHGNgqOzRnJ/mpC/76YPpNP7DybdsJtP7mdOwh+wYZxK5jqeQuhu59ogMI4NRlBUvA==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0", - "deprecation": "^2.3.1" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "@octokit/core": ">=3" - } - }, - "node_modules/@octokit/request": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-6.2.3.tgz", - "integrity": "sha512-TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA==", - "dev": true, - "dependencies": { - "@octokit/endpoint": "^7.0.0", - "@octokit/request-error": "^3.0.0", - "@octokit/types": "^9.0.0", - "is-plain-object": "^5.0.0", - "node-fetch": "^2.6.7", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/request-error": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz", - "integrity": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==", - "dev": true, - "dependencies": { - "@octokit/types": "^9.0.0", - "deprecation": "^2.0.0", - "once": "^1.4.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/rest": { - "version": "19.0.7", - "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.7.tgz", - "integrity": "sha512-HRtSfjrWmWVNp2uAkEpQnuGMJsu/+dBr47dRc5QVgsCbnIc1+GFEaoKBWkYG+zjrsHpSqcAElMio+n10c0b5JA==", - "dev": true, - "dependencies": { - "@octokit/core": "^4.1.0", - "@octokit/plugin-paginate-rest": "^6.0.0", - "@octokit/plugin-request-log": "^1.0.4", - "@octokit/plugin-rest-endpoint-methods": "^7.0.0" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@octokit/types": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.0.tgz", - "integrity": "sha512-xySzJG4noWrIBFyMu4lg4tu9vAgNg9S0aoLRONhAEz6ueyi1evBzb40HitIosaYS4XOexphG305IVcLrIX/30g==", - "dev": true, - "dependencies": { - "@octokit/openapi-types": "^17.1.0" - } - }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", @@ -1526,60 +1426,41 @@ } }, "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, - "node_modules/@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/@sinonjs/commons": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", - "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", "dev": true, "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/fake-timers": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz", - "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==", - "dev": true, - "dependencies": { - "@sinonjs/commons": "^2.0.0" - } - }, - "node_modules/@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", "dev": true, "dependencies": { - "defer-to-connect": "^1.0.1" - }, - "engines": { - "node": ">=6" + "@sinonjs/commons": "^3.0.0" } }, "node_modules/@tokens-studio/sd-transforms": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.5.tgz", - "integrity": "sha512-fqojhdPuELoNBFlo3LsUmEVnvGAiczyF8R94OIKhjcRRoNGvFKEAFETxb61Nn4SFT+nRXLQ0D339xlD4BVjhEQ==", + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.7.tgz", + "integrity": "sha512-ppqKGFA7l7BiYrkIngXCS5R5maHhtra3npHK2+nhGc5sy3ixRevGtt+5HbDccgHbp6JjPycSXc0ROYhvzwsIKA==", "dev": true, "dependencies": { "@tokens-studio/types": "^0.2.1", "color2k": "^2.0.1", "colorjs.io": "^0.4.3", + "deepmerge": "^4.3.1", "expr-eval": "^2.0.2", + "is-mergeable-object": "^1.1.1", "postcss-calc-ast-parser": "^0.1.4", "style-dictionary": "^3.7.2" }, @@ -1588,9 +1469,9 @@ } }, "node_modules/@tokens-studio/types": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.2.tgz", - "integrity": "sha512-M4vgkDMZLQU/tlud9glZyAGYzjEh7qHoqC6tCDBFsA+qhdRPvBCs5J43XIr/YLFHxI1Zj0Qy0rWAxkCuv9JThw==", + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.5.tgz", + "integrity": "sha512-pJ0zWxGnEjca4dznFIHC9/oXuovu3DKHUhLDNJVzTRZEVXhWkIRIUbjDwIRihxBr39c776W+3thYvWMgChT0Rw==", "dev": true }, "node_modules/@tsconfig/node10": { @@ -1612,15 +1493,15 @@ "dev": true }, "node_modules/@tsconfig/node16": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", - "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", + "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/babel__core": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", - "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.2.tgz", + "integrity": "sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==", "dev": true, "dependencies": { "@babel/parser": "^7.20.7", @@ -1631,18 +1512,18 @@ } }, "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "version": "7.6.5", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.5.tgz", + "integrity": "sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==", "dev": true, "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.2.tgz", + "integrity": "sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==", "dev": true, "dependencies": { "@babel/parser": "^7.1.0", @@ -1650,18 +1531,18 @@ } }, "node_modules/@types/babel__traverse": { - "version": "7.18.5", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz", - "integrity": "sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.2.tgz", + "integrity": "sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==", "dev": true, "dependencies": { - "@babel/types": "^7.3.0" + "@babel/types": "^7.20.7" } }, "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.7.tgz", + "integrity": "sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==", "dev": true, "dependencies": { "@types/node": "*" @@ -1674,27 +1555,27 @@ "dev": true }, "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==", "dev": true, "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==", "dev": true, "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/jest": { - "version": "29.5.1", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.1.tgz", - "integrity": "sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ==", + "version": "29.5.5", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.5.tgz", + "integrity": "sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==", "dev": true, "dependencies": { "expect": "^29.0.0", @@ -1702,33 +1583,27 @@ } }, "node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "version": "7.0.13", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.13.tgz", + "integrity": "sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==", "dev": true }, "node_modules/@types/node": { - "version": "18.16.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.3.tgz", - "integrity": "sha512-OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q==", + "version": "18.18.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.3.tgz", + "integrity": "sha512-0OVfGupTl3NBFr8+iXpfZ8NR7jfFO+P1Q+IO/q0wbo02wYkP5gy36phojeYWpLQ6WAMjl+VfmqUk2YbUfp0irA==", "dev": true }, "node_modules/@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", - "dev": true - }, - "node_modules/@types/prettier": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", - "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz", + "integrity": "sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==", "dev": true }, "node_modules/@types/semver": { - "version": "7.3.13", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", - "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==", "dev": true }, "node_modules/@types/stack-utils": { @@ -1738,32 +1613,32 @@ "dev": true }, "node_modules/@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "version": "17.0.26", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.26.tgz", + "integrity": "sha512-Y3vDy2X6zw/ZCumcwLpdhM5L7jmyGpmBCTYMHDLqT2IKVMYRRLdv6ZakA+wxhra6Z/3bwhNbNl9bDGXaFU+6rw==", "dev": true, "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.1.tgz", + "integrity": "sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==", "dev": true }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.2.tgz", - "integrity": "sha512-yVrXupeHjRxLDcPKL10sGQ/QlVrA8J5IYOEWVqk0lJaSZP7X5DfnP7Ns3cc74/blmbipQ1htFNVGsHX6wsYm0A==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", "dev": true, "dependencies": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.2", - "@typescript-eslint/type-utils": "5.59.2", - "@typescript-eslint/utils": "5.59.2", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", + "graphemer": "^1.4.0", "ignore": "^5.2.0", "natural-compare-lite": "^1.4.0", "semver": "^7.3.7", @@ -1787,15 +1662,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.2.tgz", - "integrity": "sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", "dev": true, "peer": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.59.2", - "@typescript-eslint/types": "5.59.2", - "@typescript-eslint/typescript-estree": "5.59.2", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", "debug": "^4.3.4" }, "engines": { @@ -1815,13 +1690,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.2.tgz", - "integrity": "sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.2", - "@typescript-eslint/visitor-keys": "5.59.2" + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -1832,13 +1707,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.2.tgz", - "integrity": "sha512-b1LS2phBOsEy/T381bxkkywfQXkV1dWda/z0PhnIy3bC5+rQWQDS7fk9CSpcXBccPY27Z6vBEuaPBCKCgYezyQ==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.2", - "@typescript-eslint/utils": "5.59.2", + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -1859,9 +1734,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.2.tgz", - "integrity": "sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -1872,13 +1747,13 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.2.tgz", - "integrity": "sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.2", - "@typescript-eslint/visitor-keys": "5.59.2", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -1899,17 +1774,17 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.2.tgz", - "integrity": "sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.2", - "@typescript-eslint/types": "5.59.2", - "@typescript-eslint/typescript-estree": "5.59.2", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -1925,12 +1800,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz", - "integrity": "sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==", + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.59.2", + "@typescript-eslint/types": "5.62.0", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -1942,9 +1817,9 @@ } }, "node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -1987,15 +1862,6 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", - "dev": true, - "dependencies": { - "string-width": "^4.1.0" - } - }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -2060,32 +1926,6 @@ "node": ">= 8" } }, - "node_modules/application-config": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/application-config/-/application-config-2.0.0.tgz", - "integrity": "sha512-NC5/0guSZK3/UgUDfCk/riByXzqz0owL1L3r63JPSBzYk5QALrp3bLxbsR7qeSfvYfFmAhnp3dbqYsW3U9MpZQ==", - "dev": true, - "dependencies": { - "application-config-path": "^0.1.0", - "load-json-file": "^6.2.0", - "write-json-file": "^4.2.0" - }, - "engines": { - "node": ">=8.3" - } - }, - "node_modules/application-config-path": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", - "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==", - "dev": true - }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, "node_modules/are-docs-informative": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", @@ -2116,22 +1956,16 @@ "node": ">=8" } }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "dev": true - }, "node_modules/babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^29.5.0", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", + "babel-preset-jest": "^29.6.3", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "slash": "^3.0.0" @@ -2159,10 +1993,35 @@ "node": ">=8" } }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", @@ -2198,12 +2057,12 @@ } }, "node_modules/babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^29.5.0", + "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { @@ -2219,81 +2078,10 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "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/before-after-hook": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", - "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", - "dev": true - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/boxen": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", - "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", - "dev": true, - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "cli-boxes": "^2.2.1", - "string-width": "^4.2.2", - "type-fest": "^0.20.2", - "widest-line": "^3.1.0", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "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==", + "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, "dependencies": { "balanced-match": "^1.0.0", @@ -2313,9 +2101,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "version": "4.22.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", + "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", "dev": true, "funding": [ { @@ -2325,13 +2113,17 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" + "caniuse-lite": "^1.0.30001541", + "electron-to-chromium": "^1.4.535", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" }, "bin": { "browserslist": "cli.js" @@ -2361,30 +2153,6 @@ "node-int64": "^0.4.0" } }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "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": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -2403,48 +2171,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "dev": true, - "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cacheable-request/node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -2474,9 +2200,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001482", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz", - "integrity": "sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==", + "version": "1.0.30001543", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001543.tgz", + "integrity": "sha512-qxdO8KPWPQ+Zk6bvNpPeQIOH47qZSYdFZd6dXQzb2KzhnSXju4Kd7H1PkSJx6NICSMgo/IhRZRhhfPTHYpJUCA==", "dev": true, "funding": [ { @@ -2520,6 +2246,18 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/chalk/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/change-case": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", @@ -2540,22 +2278,6 @@ "tslib": "^2.0.3" } }, - "node_modules/changelog-parser": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/changelog-parser/-/changelog-parser-3.0.1.tgz", - "integrity": "sha512-1AEVJgnFEO4v5ukfEH/j9cr2Z39Y/GCieNi605azhufAolXF4vQAwZBY8BrUVRkvlI3gwe3i621/PIAW0zmmEQ==", - "dev": true, - "dependencies": { - "line-reader": "^0.2.4", - "remove-markdown": "^0.5.0" - }, - "bin": { - "changelog-parser": "bin/cli.js" - }, - "engines": { - "node": ">=14" - } - }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -2565,16 +2287,10 @@ "node": ">=10" } }, - "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/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", "dev": true, "funding": [ { @@ -2587,9 +2303,9 @@ } }, "node_modules/cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", "dev": true }, "node_modules/clean-regexp": { @@ -2613,51 +2329,6 @@ "node": ">=0.8.0" } }, - "node_modules/cli-boxes": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", - "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", - "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -2672,36 +2343,6 @@ "node": ">=12" } }, - "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/clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dev": true, - "dependencies": { - "mimic-response": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/clone-response/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", @@ -2713,9 +2354,9 @@ } }, "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true }, "node_modules/color-convert": { @@ -2736,15 +2377,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" - } - }, "node_modules/color2k": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", @@ -2752,9 +2384,9 @@ "dev": true }, "node_modules/colorjs.io": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", - "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==", + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.5.tgz", + "integrity": "sha512-yCtUNCmge7llyfd/Wou19PMAcf5yC3XXhgFoAh6zsO2pGswhUPBaaUh8jzgHnXtXuZyFKzXZNAnyF5i+apICow==", "dev": true }, "node_modules/commander": { @@ -2808,56 +2440,6 @@ "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" } }, - "node_modules/concurrently/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/configstore": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", - "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", - "dev": true, - "dependencies": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/configstore/node_modules/write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, "node_modules/constant-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", @@ -2875,11 +2457,26 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, "node_modules/create-require": { "version": "1.1.1", @@ -2901,15 +2498,6 @@ "node": ">= 8" } }, - "node_modules/crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/date-fns": { "version": "2.30.0", "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", @@ -2943,27 +2531,20 @@ } } }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", "dev": true, - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } } }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true - }, "node_modules/deep-extend": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", @@ -2988,39 +2569,6 @@ "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/defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", - "dev": true - }, - "node_modules/deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true - }, - "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-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -3040,9 +2588,9 @@ } }, "node_modules/diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3082,36 +2630,6 @@ "tslib": "^2.0.3" } }, - "node_modules/dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, - "dependencies": { - "is-obj": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/duplexer3": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", - "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", - "dev": true - }, - "node_modules/duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.0" - } - }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", @@ -3119,9 +2637,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.382", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.382.tgz", - "integrity": "sha512-czMavlW52VIPgutbVL9JnZIZuFijzsG1ww/1z2Otu1r1q+9Qe2bTsH3My3sZarlvwyqHM6+mnZfEnt2Vr4dsIg==", + "version": "1.4.540", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.540.tgz", + "integrity": "sha512-aoCqgU6r9+o9/S7wkcSbmPRFi7OWZWiXS9rtjEd+Ouyu/Xyw5RSq2XN8s5Qp8IaFOLiRrhQCphCIjAxgG3eCAg==", "dev": true }, "node_modules/emittery": { @@ -3142,15 +2660,6 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, "node_modules/entities": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", @@ -3181,15 +2690,6 @@ "node": ">=6" } }, - "node_modules/escape-goat": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", - "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", @@ -3203,27 +2703,27 @@ } }, "node_modules/eslint": { - "version": "8.39.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz", - "integrity": "sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==", + "version": "8.50.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.50.0.tgz", + "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.0.2", - "@eslint/js": "8.39.0", - "@humanwhocodes/config-array": "^0.11.8", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.50.0", + "@humanwhocodes/config-array": "^0.11.11", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", + "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.0", - "eslint-visitor-keys": "^3.4.0", - "espree": "^9.5.1", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -3231,22 +2731,19 @@ "find-up": "^5.0.0", "glob-parent": "^6.0.2", "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", + "graphemer": "^1.4.0", "ignore": "^5.2.0", - "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.1", + "optionator": "^0.9.3", "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", "text-table": "^0.2.0" }, "bin": { @@ -3260,9 +2757,9 @@ } }, "node_modules/eslint-config-prettier": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", - "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", + "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", "dev": true, "bin": { "eslint-config-prettier": "bin/cli.js" @@ -3272,9 +2769,9 @@ } }, "node_modules/eslint-plugin-jest": { - "version": "27.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz", - "integrity": "sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg==", + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.4.2.tgz", + "integrity": "sha512-3Nfvv3wbq2+PZlRTf2oaAWXWwbdBejFRBR2O8tAO67o+P8zno+QGbcDYaAXODlreXVg+9gvWhKKmG2rgfb8GEg==", "dev": true, "dependencies": { "@typescript-eslint/utils": "^5.10.0" @@ -3283,8 +2780,9 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^5.0.0", - "eslint": "^7.0.0 || ^8.0.0" + "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0", + "eslint": "^7.0.0 || ^8.0.0", + "jest": "*" }, "peerDependenciesMeta": { "@typescript-eslint/eslint-plugin": { @@ -3296,12 +2794,12 @@ } }, "node_modules/eslint-plugin-jsdoc": { - "version": "43.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.1.1.tgz", - "integrity": "sha512-J2kjjsJ5vBXSyNzqJhceeSGTAgVgZHcPSJKo3vD4tNjUdfky98rR2VfZUDsS1GKL6isyVa8GWvr+Az7Vyg2HXA==", + "version": "43.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.2.0.tgz", + "integrity": "sha512-Hst7XUfqh28UmPD52oTXmjaRN3d0KrmOZdgtp4h9/VHUJD3Evoo82ZGXi1TtRDWgWhvqDIRI63O49H0eH7NrZQ==", "dev": true, "dependencies": { - "@es-joy/jsdoccomment": "~0.37.1", + "@es-joy/jsdoccomment": "~0.38.0", "are-docs-informative": "^0.0.2", "comment-parser": "1.3.1", "debug": "^4.3.4", @@ -3339,9 +2837,9 @@ } }, "node_modules/eslint-plugin-unicorn": { - "version": "46.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", - "integrity": "sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA==", + "version": "46.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.1.tgz", + "integrity": "sha512-setGhMTiLAddg1asdwjZ3hekIN5zLznNa5zll7pBPwFOka6greCKDQydfqy4fqyUhndi74wpDzClSQMEcmOaew==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.19.1", @@ -3385,9 +2883,9 @@ } }, "node_modules/eslint-visitor-keys": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", - "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3397,9 +2895,9 @@ } }, "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", @@ -3422,14 +2920,14 @@ } }, "node_modules/espree": { - "version": "9.5.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", - "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, "dependencies": { - "acorn": "^8.8.0", + "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.0" + "eslint-visitor-keys": "^3.4.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -3544,16 +3042,16 @@ } }, "node_modules/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3565,20 +3063,6 @@ "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", "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", @@ -3586,15 +3070,15 @@ "dev": true }, "node_modules/fast-diff": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "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.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -3649,30 +3133,6 @@ "bser": "2.1.1" } }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/figures/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/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -3714,16 +3174,17 @@ } }, "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", "dev": true, "dependencies": { - "flatted": "^3.1.0", + "flatted": "^3.2.7", + "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=12.0.0" } }, "node_modules/flat-cache/node_modules/rimraf": { @@ -3742,9 +3203,9 @@ } }, "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", "dev": true }, "node_modules/foreground-child": { @@ -3764,9 +3225,9 @@ } }, "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", - "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", + "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" @@ -3796,9 +3257,9 @@ "dev": true }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "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, @@ -3809,43 +3270,6 @@ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "node_modules/gauge": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-5.0.1.tgz", - "integrity": "sha512-CmykPMJGuNan/3S4kZOpvvPYSNqSHANiWnh9XcMU2pSjtBfF0XzZ2p1bFAxTbnFxyBuPxQYHhzwaoOmUdqzvxQ==", - "dev": true, - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^4.0.1", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/gauge/node_modules/signal-exit": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", - "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -3897,69 +3321,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/gh-release": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/gh-release/-/gh-release-7.0.2.tgz", - "integrity": "sha512-5gVe+BHFa9OtsjOa72hFRBsfsCIIMYbba35wtEJIkAzZjPXQkUmpLhyrIYYdouh0JRTNNwZ4sDD7eiUhE8T/IQ==", - "dev": true, - "dependencies": { - "@octokit/rest": "^19.0.5", - "changelog-parser": "^3.0.0", - "deep-extend": "^0.6.0", - "gauge": "^v5.0.0", - "gh-release-assets": "^2.0.0", - "ghauth": "^5.0.0", - "github-url-to-object": "^4.0.4", - "inquirer": "^8.0.0", - "shelljs": "^0.8.4", - "update-notifier": "^5.0.0", - "yargs": "^17.0.0" - }, - "bin": { - "gh-release": "bin/cli.js" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/gh-release-assets": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/gh-release-assets/-/gh-release-assets-2.0.1.tgz", - "integrity": "sha512-KrhmYIA/5oQdfEl9vQ2yF6DOM2QOAjpCOsNKFkc7X3dOTefSixttW0ysot3noQ+3XL8NdkdC7z+mqfePzIwexg==", - "dev": true, - "dependencies": { - "async": "^3.2.0", - "mime": "^3.0.0", - "progress-stream": "^2.0.0", - "pumpify": "^2.0.1", - "simple-get": "^4.0.0", - "util-extend": "^1.0.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/ghauth": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ghauth/-/ghauth-5.0.1.tgz", - "integrity": "sha512-WzgL12dczZX/VrvVTkoFAJLU3pb6PDT+TS60kLlaU51fuNEv6VoYpRXlnwIjkMIhqWead9+dLBEzj0E1ghYMkg==", - "dev": true, - "dependencies": { - "application-config": "^2.0.0", - "node-fetch": "^2.6.0", - "ora": "^4.0.5", - "read": "^1.0.7" - } - }, - "node_modules/github-url-to-object": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/github-url-to-object/-/github-url-to-object-4.0.6.tgz", - "integrity": "sha512-NaqbYHMUAlPcmWFdrAB7bcxrNIiiJWJe8s/2+iOc9vlcHlwHqSGrPk+Yi3nu6ebTwgsZEa7igz+NH2vEq3gYwQ==", - "dev": true, - "dependencies": { - "is-url": "^1.1.0" - } - }, "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -3992,34 +3353,10 @@ "node": ">=10.13.0" } }, - "node_modules/global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", - "dev": true, - "dependencies": { - "ini": "2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, "node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "version": "13.22.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -4051,81 +3388,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/got": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", - "dev": true, - "dependencies": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/got/node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", - "dev": true, - "dependencies": { - "mimic-response": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/got/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/got/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/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==", + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, "engines": { "node": ">= 0.4.0" } @@ -4139,21 +3418,6 @@ "node": ">=8" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "node_modules/has-yarn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", - "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", @@ -4176,12 +3440,6 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -4191,53 +3449,6 @@ "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/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "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/ignore": { "version": "5.2.4", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", @@ -4263,15 +3474,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -4334,80 +3536,6 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/inquirer/node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/inquirer/node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -4429,28 +3557,10 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "dev": true, - "dependencies": { - "ci-info": "^2.0.0" - }, - "bin": { - "is-ci": "bin.js" - } - }, - "node_modules/is-ci/node_modules/ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true - }, "node_modules/is-core-module": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", - "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -4498,42 +3608,11 @@ "node": ">=0.10.0" } }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", - "dev": true, - "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-npm": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", - "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/is-mergeable-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.1.tgz", + "integrity": "sha512-CPduJfuGg8h8vW74WOxHtHmtQutyQBzR+3MjQ6iDHIYdbOnm1YC7jv43SqCoU8OPGTJD4nibmiryA4kmogbGrA==", + "dev": true }, "node_modules/is-number": { "version": "7.0.0", @@ -4544,15 +3623,6 @@ "node": ">=0.12.0" } }, - "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-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", @@ -4562,24 +3632,6 @@ "node": ">=8" } }, - "node_modules/is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "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-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -4592,42 +3644,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-url": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", - "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", - "dev": true - }, - "node_modules/is-yarn-global": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", - "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", - "dev": true - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -4644,40 +3660,43 @@ } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "semver": "^7.5.4" }, "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node": ">=10" } }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "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, "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/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" } @@ -4697,9 +3716,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -4710,9 +3729,9 @@ } }, "node_modules/jackspeak": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.0.tgz", - "integrity": "sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ==", + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", "dev": true, "dependencies": { "@isaacs/cliui": "^8.0.2" @@ -4728,15 +3747,15 @@ } }, "node_modules/jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^29.5.0" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" @@ -4754,12 +3773,13 @@ } }, "node_modules/jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { "execa": "^5.0.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0" }, "engines": { @@ -4767,28 +3787,28 @@ } }, "node_modules/jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "dedent": "^0.7.0", + "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.7.0", "pure-rand": "^6.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" @@ -4798,22 +3818,21 @@ } }, "node_modules/jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, "dependencies": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", + "create-jest": "^29.7.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.9", "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "prompts": "^2.0.1", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "yargs": "^17.3.1" }, "bin": { @@ -4832,31 +3851,31 @@ } }, "node_modules/jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", "ci-info": "^3.2.0", "deepmerge": "^4.2.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -4877,24 +3896,24 @@ } }, "node_modules/jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" @@ -4904,62 +3923,62 @@ } }, "node_modules/jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" }, @@ -4971,46 +3990,46 @@ } }, "node_modules/jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, @@ -5019,14 +4038,14 @@ } }, "node_modules/jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-util": "^29.5.0" + "jest-util": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -5050,26 +4069,26 @@ } }, "node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", "resolve.exports": "^2.0.0", "slash": "^3.0.0" @@ -5079,43 +4098,43 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "emittery": "^0.13.1", "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -5124,31 +4143,31 @@ } }, "node_modules/jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -5157,46 +4176,43 @@ } }, "node_modules/jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^29.5.0", + "expect": "^29.7.0", "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" + "pretty-format": "^29.7.0", + "semver": "^7.5.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", @@ -5208,17 +4224,17 @@ } }, "node_modules/jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", + "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^29.5.0" + "pretty-format": "^29.7.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -5237,18 +4253,18 @@ } }, "node_modules/jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", "emittery": "^0.13.1", - "jest-util": "^29.5.0", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { @@ -5256,13 +4272,13 @@ } }, "node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { "@types/node": "*", - "jest-util": "^29.5.0", + "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, @@ -5270,31 +4286,6 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/js-sdsl": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", - "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" - } - }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -5335,9 +4326,9 @@ } }, "node_modules/json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, "node_modules/json-parse-even-better-errors": { @@ -5389,12 +4380,12 @@ } }, "node_modules/keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", "dev": true, "dependencies": { - "json-buffer": "3.0.0" + "json-buffer": "3.0.1" } }, "node_modules/kleur": { @@ -5406,18 +4397,6 @@ "node": ">=6" } }, - "node_modules/latest-version": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", - "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", - "dev": true, - "dependencies": { - "package-json": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", @@ -5440,12 +4419,6 @@ "node": ">= 0.8.0" } }, - "node_modules/line-reader": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/line-reader/-/line-reader-0.2.4.tgz", - "integrity": "sha512-342xzyZZS9uTiKwHJcMacopVl/WjrMMCZS1Qg4Uhl/WBknWRrGFdKOIS1Kec6SaiTcZMtmuxWvvIbPXj/+FMjA==", - "dev": true - }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", @@ -5461,30 +4434,6 @@ "uc.micro": "^1.0.1" } }, - "node_modules/load-json-file": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", - "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.15", - "parse-json": "^5.0.0", - "strip-bom": "^4.0.0", - "type-fest": "^0.6.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/load-json-file/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/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", @@ -5518,89 +4467,6 @@ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, - "node_modules/log-symbols": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", - "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", - "dev": true, - "dependencies": { - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/log-symbols/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/log-symbols/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/log-symbols/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/log-symbols/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/log-symbols/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/log-symbols/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/log-symbols/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/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -5610,15 +4476,6 @@ "tslib": "^2.0.3" } }, - "node_modules/lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", @@ -5629,29 +4486,20 @@ } }, "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "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, "dependencies": { - "semver": "^6.0.0" + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -5729,15 +4577,15 @@ } }, "node_modules/markdownlint-cli/node_modules/glob": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", - "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", + "version": "10.2.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.7.tgz", + "integrity": "sha512-jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^2.0.3", - "minimatch": "^9.0.0", - "minipass": "^5.0.0", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2", "path-scurry": "^1.7.0" }, "bin": { @@ -5751,9 +4599,9 @@ } }, "node_modules/markdownlint-cli/node_modules/minimatch": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", - "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -5808,18 +4656,6 @@ "node": ">=8.6" } }, - "node_modules/mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", @@ -5829,22 +4665,10 @@ "node": ">=6" } }, - "node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "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==", + "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" @@ -5872,12 +4696,12 @@ } }, "node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-6.0.2.tgz", + "integrity": "sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==", "dev": true, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, "node_modules/ms": { @@ -5886,12 +4710,6 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -5914,26 +4732,6 @@ "tslib": "^2.0.3" } }, - "node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", @@ -5941,9 +4739,9 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "node_modules/normalize-package-data": { @@ -5959,9 +4757,9 @@ } }, "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "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" @@ -5976,15 +4774,6 @@ "node": ">=0.10.0" } }, - "node_modules/normalize-url": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", - "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -6022,75 +4811,22 @@ } }, "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "type-check": "^0.4.0" }, "engines": { "node": ">= 0.8.0" } }, - "node_modules/ora": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz", - "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==", - "dev": true, - "dependencies": { - "chalk": "^3.0.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.2.0", - "is-interactive": "^1.0.0", - "log-symbols": "^3.0.0", - "mute-stream": "0.0.8", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "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/p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -6130,30 +4866,6 @@ "node": ">=6" } }, - "node_modules/package-json": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", - "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", - "dev": true, - "dependencies": { - "got": "^9.6.0", - "registry-auth-token": "^4.0.0", - "registry-url": "^5.0.0", - "semver": "^6.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/package-json/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -6248,13 +4960,13 @@ "dev": true }, "node_modules/path-scurry": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.7.0.tgz", - "integrity": "sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", "dev": true, "dependencies": { - "lru-cache": "^9.0.0", - "minipass": "^5.0.0" + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { "node": ">=16 || 14 >=14.17" @@ -6264,9 +4976,9 @@ } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.1.tgz", - "integrity": "sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", + "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -6300,9 +5012,9 @@ } }, "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true, "engines": { "node": ">= 6" @@ -6408,15 +5120,6 @@ "node": ">= 0.8.0" } }, - "node_modules/prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/prettier": { "version": "2.8.8", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", @@ -6445,12 +5148,12 @@ } }, "node_modules/pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, @@ -6470,22 +5173,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/progress-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-2.0.0.tgz", - "integrity": "sha512-xJwOWR46jcXUq6EH9yYyqp+I52skPySOeHfkxOZ2IY1AiBi/sFJhbhAKHoV3OTw/omQ45KTio9215dRJ2Yxd3Q==", - "dev": true, - "dependencies": { - "speedometer": "~1.0.0", - "through2": "~2.0.3" - } - }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", @@ -6499,27 +5186,6 @@ "node": ">= 6" } }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/pumpify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-2.0.1.tgz", - "integrity": "sha512-m7KOje7jZxrmutanlkS1daj1dS6z6BgslzOXmcSEpIlCxM3VJH7lG5QLeck/6hgF6F4crFf01UtQmNsJfweTAw==", - "dev": true, - "dependencies": { - "duplexify": "^4.1.1", - "inherits": "^2.0.3", - "pump": "^3.0.0" - } - }, "node_modules/punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", @@ -6529,22 +5195,10 @@ "node": ">=6" } }, - "node_modules/pupa": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", - "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", - "dev": true, - "dependencies": { - "escape-goat": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", "dev": true, "funding": [ { @@ -6577,54 +5231,12 @@ } ] }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/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/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "node_modules/read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", - "dev": true, - "dependencies": { - "mute-stream": "~0.0.4" - }, - "engines": { - "node": ">=0.8" - } - }, "node_modules/read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", @@ -6727,32 +5339,6 @@ "node": ">=8" } }, - "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/rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", - "dev": true, - "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/regenerator-runtime": { "version": "0.14.0", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", @@ -6768,30 +5354,6 @@ "regexp-tree": "bin/regexp-tree" } }, - "node_modules/registry-auth-token": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", - "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", - "dev": true, - "dependencies": { - "rc": "1.2.8" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/registry-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", - "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", - "dev": true, - "dependencies": { - "rc": "^1.2.8" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/regjsparser": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", @@ -6813,12 +5375,6 @@ "jsesc": "bin/jsesc" } }, - "node_modules/remove-markdown": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/remove-markdown/-/remove-markdown-0.5.0.tgz", - "integrity": "sha512-x917M80K97K5IN1L8lUvFehsfhR8cYjGQ/yAMRI9E7JIKivtl5Emo5iD13DhMr+VojzMCiYk8V2byNPwT/oapg==", - "dev": true - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -6829,12 +5385,12 @@ } }, "node_modules/resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", + "version": "1.22.6", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz", + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", "dev": true, "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -6884,28 +5440,6 @@ "node": ">=10" } }, - "node_modules/responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", - "dev": true, - "dependencies": { - "lowercase-keys": "^1.0.0" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", @@ -6917,15 +5451,15 @@ } }, "node_modules/rimraf": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.0.tgz", - "integrity": "sha512-Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz", + "integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==", "dev": true, "dependencies": { - "glob": "^10.0.0" + "glob": "^10.3.7" }, "bin": { - "rimraf": "dist/cjs/src/bin.js" + "rimraf": "dist/esm/bin.mjs" }, "engines": { "node": ">=14" @@ -6944,19 +5478,19 @@ } }, "node_modules/rimraf/node_modules/glob": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", - "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.0", - "minipass": "^5.0.0", - "path-scurry": "^1.7.0" + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" }, "bin": { - "glob": "dist/cjs/src/bin.js" + "glob": "dist/esm/bin.mjs" }, "engines": { "node": ">=16 || 14 >=14.17" @@ -6966,9 +5500,9 @@ } }, "node_modules/rimraf/node_modules/minimatch": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", - "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -6980,24 +5514,15 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, "node_modules/run-con": { - "version": "1.2.11", - "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.11.tgz", - "integrity": "sha512-NEMGsUT+cglWkzEr4IFK21P4Jca45HqiAbIIZIBdX5+UZTB24Mb/21iNGgz9xZa8tL6vbW7CXmq7MFN42+VjNQ==", + "version": "1.2.12", + "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.12.tgz", + "integrity": "sha512-5257ILMYIF4RztL9uoZ7V9Q97zHtNHn5bN3NobeAnzB1P3ASLgg8qocM2u+R18ttp+VEM78N2LK8XcNVtnSRrg==", "dev": true, "dependencies": { "deep-extend": "^0.6.0", "ini": "~3.0.0", - "minimist": "^1.2.6", + "minimist": "^1.2.8", "strip-json-comments": "~3.1.1" }, "bin": { @@ -7036,26 +5561,6 @@ "tslib": "^2.1.0" } }, - "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": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", @@ -7065,16 +5570,10 @@ "regexp-tree": "~0.1.1" } }, - "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.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", + "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" @@ -7086,27 +5585,6 @@ "node": ">=10" } }, - "node_modules/semver-diff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", - "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", - "dev": true, - "dependencies": { - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/semver-diff/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/semver/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -7166,84 +5644,22 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/shelljs": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", - "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", - "dev": true, - "dependencies": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "bin": { - "shjs": "bin/shjs" - }, - "engines": { - "node": ">=4" - } - }, "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/simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", - "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/simple-get": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", - "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", - "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": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "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" @@ -7259,21 +5675,6 @@ "tslib": "^2.0.3" } }, - "node_modules/sort-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz", - "integrity": "sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==", - "dev": true, - "dependencies": { - "is-plain-obj": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -7326,15 +5727,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", - "dev": true - }, - "node_modules/speedometer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz", - "integrity": "sha512-lgxErLl/7A5+vgIIXsh9MbeukOaCb2axgQ+bKCdIE+ibNT4XNYGNCR1qFEGq6F+YDASXK3Fh/c5FgtZchFolxw==", + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz", + "integrity": "sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==", "dev": true }, "node_modules/sprintf-js": { @@ -7364,21 +5759,6 @@ "node": ">=8" } }, - "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "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-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", @@ -7521,15 +5901,18 @@ } }, "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==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { "has-flag": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/supports-preserve-symlinks-flag": { @@ -7564,70 +5947,12 @@ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/tinycolor2": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", "dev": true }, - "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/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -7643,15 +5968,6 @@ "node": ">=4" } }, - "node_modules/to-readable-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -7664,24 +5980,6 @@ "node": ">=8.0" } }, - "node_modules/token-transformer": { - "version": "0.0.27", - "resolved": "https://registry.npmjs.org/token-transformer/-/token-transformer-0.0.27.tgz", - "integrity": "sha512-IBClwoMFrOGrlTD9ql/wArgRCe1IpKbPVfYoLPkegS9kK5yAOz7O4U8VJeZbq6FjSy73C+zLmtz7H8V5k2LqjQ==", - "dev": true, - "dependencies": { - "yargs": "^17.4.1" - }, - "bin": { - "token-transformer": "index.js" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, "node_modules/tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", @@ -7692,9 +5990,9 @@ } }, "node_modules/ts-jest": { - "version": "29.1.0", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", - "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -7703,7 +6001,7 @@ "json5": "^2.2.3", "lodash.memoize": "4.x", "make-error": "1.x", - "semver": "7.x", + "semver": "^7.5.3", "yargs-parser": "^21.0.1" }, "bin": { @@ -7778,9 +6076,9 @@ } }, "node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", "dev": true }, "node_modules/tsutils": { @@ -7837,26 +6135,17 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, "node_modules/typescript": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", - "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { - "node": ">=12.20" + "node": ">=14.17" } }, "node_modules/uc.micro": { @@ -7865,24 +6154,6 @@ "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", "dev": true }, - "node_modules/unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, - "dependencies": { - "crypto-random-string": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/universal-user-agent": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", - "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", - "dev": true - }, "node_modules/universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -7893,9 +6164,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, "funding": [ { @@ -7922,34 +6193,6 @@ "browserslist": ">= 4.21.0" } }, - "node_modules/update-notifier": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", - "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", - "dev": true, - "dependencies": { - "boxen": "^5.0.0", - "chalk": "^4.1.0", - "configstore": "^5.0.1", - "has-yarn": "^2.1.0", - "import-lazy": "^2.1.0", - "is-ci": "^2.0.0", - "is-installed-globally": "^0.4.0", - "is-npm": "^5.0.0", - "is-yarn-global": "^0.3.0", - "latest-version": "^5.1.0", - "pupa": "^2.1.1", - "semver": "^7.3.4", - "semver-diff": "^3.1.1", - "xdg-basedir": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/yeoman/update-notifier?sponsor=1" - } - }, "node_modules/upper-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", @@ -7977,30 +6220,6 @@ "punycode": "^2.1.0" } }, - "node_modules/url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", - "dev": true, - "dependencies": { - "prepend-http": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/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/util-extend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", - "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", - "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", @@ -8008,25 +6227,19 @@ "dev": true }, "node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.2.tgz", + "integrity": "sha512-ZGBe7VAivuuoQXTeckpbYKTdtjXGcm3ZUHXC0PAk0CzFyuYvwi73a58iEKI3GkGD1c3EHc+EgfR1w5pgbfzJlQ==", "dev": true, "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "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", @@ -8046,31 +6259,6 @@ "makeerror": "1.0.12" } }, - "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/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -8086,36 +6274,6 @@ "node": ">= 8" } }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/widest-line": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", - "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", - "dev": true, - "dependencies": { - "string-width": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -8170,56 +6328,6 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/write-json-file": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-4.3.0.tgz", - "integrity": "sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==", - "dev": true, - "dependencies": { - "detect-indent": "^6.0.0", - "graceful-fs": "^4.1.15", - "is-plain-obj": "^2.0.0", - "make-dir": "^3.0.0", - "sort-keys": "^4.0.0", - "write-file-atomic": "^3.0.0" - }, - "engines": { - "node": ">=8.3" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/write-json-file/node_modules/write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "node_modules/xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "engines": { - "node": ">=0.4" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -8283,6184 +6391,5 @@ "url": "https://github.com/sponsors/sindresorhus" } } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dev": true, - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", - "dev": true, - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/compat-data": { - "version": "7.21.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz", - "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==", - "dev": true - }, - "@babel/core": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz", - "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-compilation-targets": "^7.21.5", - "@babel/helper-module-transforms": "^7.21.5", - "@babel/helpers": "^7.21.5", - "@babel/parser": "^7.21.8", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" - }, - "dependencies": { - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/generator": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", - "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", - "dev": true, - "requires": { - "@babel/types": "^7.21.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "dependencies": { - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true - } - } - }, - "@babel/helper-compilation-targets": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz", - "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.21.5", - "@babel/helper-validator-option": "^7.21.0", - "browserslist": "^4.21.3", - "lru-cache": "^5.1.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "@babel/helper-environment-visitor": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz", - "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==", - "dev": true - }, - "@babel/helper-function-name": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", - "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", - "dev": true, - "requires": { - "@babel/template": "^7.20.7", - "@babel/types": "^7.21.0" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-module-imports": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz", - "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==", - "dev": true, - "requires": { - "@babel/types": "^7.21.4" - } - }, - "@babel/helper-module-transforms": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz", - "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-module-imports": "^7.21.4", - "@babel/helper-simple-access": "^7.21.5", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz", - "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==", - "dev": true - }, - "@babel/helper-simple-access": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz", - "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==", - "dev": true, - "requires": { - "@babel/types": "^7.21.5" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-string-parser": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", - "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", - "dev": true - }, - "@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", - "dev": true - }, - "@babel/helper-validator-option": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", - "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", - "dev": true - }, - "@babel/helpers": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", - "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", - "dev": true, - "requires": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" - } - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.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" - } - }, - "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" - } - }, - "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 - }, - "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 - }, - "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 - }, - "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" - } - } - } - }, - "@babel/parser": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", - "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==", - "dev": true - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz", - "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz", - "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2" - } - }, - "@babel/runtime": { - "version": "7.23.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz", - "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.14.0" - } - }, - "@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" - } - }, - "@babel/traverse": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", - "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.5", - "@babel/types": "^7.21.5", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "dependencies": { - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - } - } - }, - "@babel/types": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", - "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", - "dev": true, - "requires": { - "@babel/helper-string-parser": "^7.21.5", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - } - }, - "@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 - }, - "@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" - }, - "dependencies": { - "@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" - } - } - } - }, - "@es-joy/jsdoccomment": { - "version": "0.37.1", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.37.1.tgz", - "integrity": "sha512-5vxWJ1gEkEF0yRd0O+uK6dHJf7adrxwQSX8PuRiPfFSAbNLnY0ZJfXaZucoz14Jj2N11xn2DnlEPwWRpYpvRjg==", - "dev": true, - "requires": { - "comment-parser": "1.3.1", - "esquery": "^1.5.0", - "jsdoc-type-pratt-parser": "~4.0.0" - } - }, - "@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^3.3.0" - } - }, - "@eslint-community/regexpp": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", - "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", - "dev": true - }, - "@eslint/eslintrc": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", - "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.5.1", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - } - }, - "@eslint/js": { - "version": "8.39.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.39.0.tgz", - "integrity": "sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==", - "dev": true - }, - "@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "requires": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "dependencies": { - "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 - }, - "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 - }, - "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" - } - }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dev": true, - "requires": { - "ansi-regex": "^6.0.1" - } - }, - "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" - } - } - } - }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "dependencies": { - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "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 - } - } - }, - "@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 - }, - "@jest/console": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz", - "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0" - } - }, - "@jest/core": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz", - "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==", - "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/reporters": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.5.0", - "jest-config": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-resolve-dependencies": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "jest-watcher": "^29.5.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "@jest/environment": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz", - "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==", - "dev": true, - "requires": { - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0" - } - }, - "@jest/expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==", - "dev": true, - "requires": { - "expect": "^29.5.0", - "jest-snapshot": "^29.5.0" - } - }, - "@jest/expect-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz", - "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==", - "dev": true, - "requires": { - "jest-get-type": "^29.4.3" - } - }, - "@jest/fake-timers": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz", - "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - } - }, - "@jest/globals": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz", - "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/types": "^29.5.0", - "jest-mock": "^29.5.0" - } - }, - "@jest/reporters": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz", - "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - } - }, - "@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", - "dev": true, - "requires": { - "@sinclair/typebox": "^0.25.16" - } - }, - "@jest/source-map": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz", - "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.15", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - } - }, - "@jest/test-result": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz", - "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==", - "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - } - }, - "@jest/test-sequencer": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz", - "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==", - "dev": true, - "requires": { - "@jest/test-result": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "slash": "^3.0.0" - } - }, - "@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - } - }, - "@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dev": true, - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "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.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - }, - "dependencies": { - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - } - } - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@octokit/auth-token": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.3.tgz", - "integrity": "sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA==", - "dev": true, - "requires": { - "@octokit/types": "^9.0.0" - } - }, - "@octokit/core": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.2.0.tgz", - "integrity": "sha512-AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg==", - "dev": true, - "requires": { - "@octokit/auth-token": "^3.0.0", - "@octokit/graphql": "^5.0.0", - "@octokit/request": "^6.0.0", - "@octokit/request-error": "^3.0.0", - "@octokit/types": "^9.0.0", - "before-after-hook": "^2.2.0", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/endpoint": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.5.tgz", - "integrity": "sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA==", - "dev": true, - "requires": { - "@octokit/types": "^9.0.0", - "is-plain-object": "^5.0.0", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/graphql": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.5.tgz", - "integrity": "sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ==", - "dev": true, - "requires": { - "@octokit/request": "^6.0.0", - "@octokit/types": "^9.0.0", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/openapi-types": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.1.0.tgz", - "integrity": "sha512-rnI26BAITDZTo5vqFOmA7oX4xRd18rO+gcK4MiTpJmsRMxAw0JmevNjPsjpry1bb9SVNo56P/0kbiyXXa4QluA==", - "dev": true - }, - "@octokit/plugin-paginate-rest": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.0.0.tgz", - "integrity": "sha512-Sq5VU1PfT6/JyuXPyt04KZNVsFOSBaYOAq2QRZUwzVlI10KFvcbUo8lR258AAQL1Et60b0WuVik+zOWKLuDZxw==", - "dev": true, - "requires": { - "@octokit/types": "^9.0.0" - } - }, - "@octokit/plugin-request-log": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", - "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", - "dev": true, - "requires": {} - }, - "@octokit/plugin-rest-endpoint-methods": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.0.1.tgz", - "integrity": "sha512-pnCaLwZBudK5xCdrR823xHGNgqOzRnJ/mpC/76YPpNP7DybdsJtP7mdOwh+wYZxK5jqeQuhu59ogMI4NRlBUvA==", - "dev": true, - "requires": { - "@octokit/types": "^9.0.0", - "deprecation": "^2.3.1" - } - }, - "@octokit/request": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-6.2.3.tgz", - "integrity": "sha512-TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA==", - "dev": true, - "requires": { - "@octokit/endpoint": "^7.0.0", - "@octokit/request-error": "^3.0.0", - "@octokit/types": "^9.0.0", - "is-plain-object": "^5.0.0", - "node-fetch": "^2.6.7", - "universal-user-agent": "^6.0.0" - } - }, - "@octokit/request-error": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz", - "integrity": "sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==", - "dev": true, - "requires": { - "@octokit/types": "^9.0.0", - "deprecation": "^2.0.0", - "once": "^1.4.0" - } - }, - "@octokit/rest": { - "version": "19.0.7", - "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.7.tgz", - "integrity": "sha512-HRtSfjrWmWVNp2uAkEpQnuGMJsu/+dBr47dRc5QVgsCbnIc1+GFEaoKBWkYG+zjrsHpSqcAElMio+n10c0b5JA==", - "dev": true, - "requires": { - "@octokit/core": "^4.1.0", - "@octokit/plugin-paginate-rest": "^6.0.0", - "@octokit/plugin-request-log": "^1.0.4", - "@octokit/plugin-rest-endpoint-methods": "^7.0.0" - } - }, - "@octokit/types": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-9.2.0.tgz", - "integrity": "sha512-xySzJG4noWrIBFyMu4lg4tu9vAgNg9S0aoLRONhAEz6ueyi1evBzb40HitIosaYS4XOexphG305IVcLrIX/30g==", - "dev": true, - "requires": { - "@octokit/openapi-types": "^17.1.0" - } - }, - "@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true - }, - "@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "dev": true - }, - "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", - "dev": true - }, - "@sinonjs/commons": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz", - "integrity": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==", - "dev": true, - "requires": { - "type-detect": "4.0.8" - } - }, - "@sinonjs/fake-timers": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz", - "integrity": "sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==", - "dev": true, - "requires": { - "@sinonjs/commons": "^2.0.0" - } - }, - "@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", - "dev": true, - "requires": { - "defer-to-connect": "^1.0.1" - } - }, - "@tokens-studio/sd-transforms": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.5.tgz", - "integrity": "sha512-fqojhdPuELoNBFlo3LsUmEVnvGAiczyF8R94OIKhjcRRoNGvFKEAFETxb61Nn4SFT+nRXLQ0D339xlD4BVjhEQ==", - "dev": true, - "requires": { - "@tokens-studio/types": "^0.2.1", - "color2k": "^2.0.1", - "colorjs.io": "^0.4.3", - "expr-eval": "^2.0.2", - "postcss-calc-ast-parser": "^0.1.4", - "style-dictionary": "^3.7.2" - } - }, - "@tokens-studio/types": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.2.tgz", - "integrity": "sha512-M4vgkDMZLQU/tlud9glZyAGYzjEh7qHoqC6tCDBFsA+qhdRPvBCs5J43XIr/YLFHxI1Zj0Qy0rWAxkCuv9JThw==", - "dev": true - }, - "@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.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", - "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", - "dev": true - }, - "@types/babel__core": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", - "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", - "dev": true, - "requires": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - "dev": true, - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - "dev": true, - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.18.5", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz", - "integrity": "sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==", - "dev": true, - "requires": { - "@babel/types": "^7.3.0" - } - }, - "@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "dev": true, - "requires": { - "@types/istanbul-lib-report": "*" - } - }, - "@types/jest": { - "version": "29.5.1", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.1.tgz", - "integrity": "sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ==", - "dev": true, - "requires": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" - } - }, - "@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", - "dev": true - }, - "@types/node": { - "version": "18.16.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.3.tgz", - "integrity": "sha512-OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q==", - "dev": true - }, - "@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", - "dev": true - }, - "@types/prettier": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", - "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", - "dev": true - }, - "@types/semver": { - "version": "7.3.13", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", - "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", - "dev": true - }, - "@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true - }, - "@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, - "@typescript-eslint/eslint-plugin": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.2.tgz", - "integrity": "sha512-yVrXupeHjRxLDcPKL10sGQ/QlVrA8J5IYOEWVqk0lJaSZP7X5DfnP7Ns3cc74/blmbipQ1htFNVGsHX6wsYm0A==", - "dev": true, - "requires": { - "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.2", - "@typescript-eslint/type-utils": "5.59.2", - "@typescript-eslint/utils": "5.59.2", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/parser": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.2.tgz", - "integrity": "sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ==", - "dev": true, - "peer": true, - "requires": { - "@typescript-eslint/scope-manager": "5.59.2", - "@typescript-eslint/types": "5.59.2", - "@typescript-eslint/typescript-estree": "5.59.2", - "debug": "^4.3.4" - } - }, - "@typescript-eslint/scope-manager": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.2.tgz", - "integrity": "sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.2", - "@typescript-eslint/visitor-keys": "5.59.2" - } - }, - "@typescript-eslint/type-utils": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.2.tgz", - "integrity": "sha512-b1LS2phBOsEy/T381bxkkywfQXkV1dWda/z0PhnIy3bC5+rQWQDS7fk9CSpcXBccPY27Z6vBEuaPBCKCgYezyQ==", - "dev": true, - "requires": { - "@typescript-eslint/typescript-estree": "5.59.2", - "@typescript-eslint/utils": "5.59.2", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/types": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.2.tgz", - "integrity": "sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.2.tgz", - "integrity": "sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.2", - "@typescript-eslint/visitor-keys": "5.59.2", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/utils": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.2.tgz", - "integrity": "sha512-kSuF6/77TZzyGPhGO4uVp+f0SBoYxCDf+lW3GKhtKru/L8k/Hd7NFQxyWUeY7Z/KGB2C6Fe3yf2vVi4V9TsCSQ==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.2", - "@typescript-eslint/types": "5.59.2", - "@typescript-eslint/typescript-estree": "5.59.2", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.2.tgz", - "integrity": "sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==", - "dev": true, - "requires": { - "@typescript-eslint/types": "5.59.2", - "eslint-visitor-keys": "^3.3.0" - } - }, - "acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "dev": true - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "requires": {} - }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", - "dev": true, - "requires": { - "string-width": "^4.1.0" - } - }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "requires": { - "type-fest": "^0.21.3" - }, - "dependencies": { - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true - } - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "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" - } - }, - "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" - } - }, - "application-config": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/application-config/-/application-config-2.0.0.tgz", - "integrity": "sha512-NC5/0guSZK3/UgUDfCk/riByXzqz0owL1L3r63JPSBzYk5QALrp3bLxbsR7qeSfvYfFmAhnp3dbqYsW3U9MpZQ==", - "dev": true, - "requires": { - "application-config-path": "^0.1.0", - "load-json-file": "^6.2.0", - "write-json-file": "^4.2.0" - } - }, - "application-config-path": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.1.tgz", - "integrity": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==", - "dev": true - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "are-docs-informative": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", - "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", - "dev": true - }, - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "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 - }, - "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 - }, - "async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "dev": true - }, - "babel-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz", - "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==", - "dev": true, - "requires": { - "@jest/transform": "^29.5.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.5.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - } - }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - } - }, - "babel-plugin-jest-hoist": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", - "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", - "dev": true, - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "dev": true, - "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - } - }, - "babel-preset-jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", - "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", - "dev": true, - "requires": { - "babel-plugin-jest-hoist": "^29.5.0", - "babel-preset-current-node-syntax": "^1.0.0" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "before-after-hook": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", - "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", - "dev": true - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "boxen": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", - "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", - "dev": true, - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "cli-boxes": "^2.2.1", - "string-width": "^4.2.2", - "type-fest": "^0.20.2", - "widest-line": "^3.1.0", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - } - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - } - }, - "bs-logger": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", - "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", - "dev": true, - "requires": { - "fast-json-stable-stringify": "2.x" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", - "dev": true - }, - "cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "dev": true, - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true - } - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dev": true, - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "caniuse-lite": { - "version": "1.0.30001482", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz", - "integrity": "sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==", - "dev": true - }, - "capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "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" - } - }, - "change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", - "dev": true, - "requires": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "changelog-parser": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/changelog-parser/-/changelog-parser-3.0.1.tgz", - "integrity": "sha512-1AEVJgnFEO4v5ukfEH/j9cr2Z39Y/GCieNi605azhufAolXF4vQAwZBY8BrUVRkvlI3gwe3i621/PIAW0zmmEQ==", - "dev": true, - "requires": { - "line-reader": "^0.2.4", - "remove-markdown": "^0.5.0" - } - }, - "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==", - "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 - }, - "ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "dev": true - }, - "cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", - "dev": true - }, - "clean-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", - "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - }, - "dependencies": { - "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 - } - } - }, - "cli-boxes": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", - "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", - "dev": true - }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-spinners": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.0.tgz", - "integrity": "sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==", - "dev": true - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "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" - } - }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true - }, - "clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dev": true, - "requires": { - "mimic-response": "^1.0.0" - }, - "dependencies": { - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true - } - } - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true - }, - "collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true - }, - "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 - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "color2k": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", - "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==", - "dev": true - }, - "colorjs.io": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.3.tgz", - "integrity": "sha512-Jr6NiWFZCuSECl23Bhe4jvDldQsE0ErnWrdl3xIUFy+Bkp0l8r5qt/iZlNH47/xxGP5izcyC8InjoUoI4Po+Pg==", - "dev": true - }, - "commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true - }, - "comment-parser": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz", - "integrity": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "concurrently": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-8.2.1.tgz", - "integrity": "sha512-nVraf3aXOpIcNud5pB9M82p1tynmZkrSGQ1p6X/VY8cJ+2LMVqAgXsJxYYefACSHbTYlm92O1xuhdGTjwoEvbQ==", - "dev": true, - "requires": { - "chalk": "^4.1.2", - "date-fns": "^2.30.0", - "lodash": "^4.17.21", - "rxjs": "^7.8.1", - "shell-quote": "^1.8.1", - "spawn-command": "0.0.2", - "supports-color": "^8.1.1", - "tree-kill": "^1.2.2", - "yargs": "^17.7.2" - }, - "dependencies": { - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "configstore": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", - "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" - }, - "dependencies": { - "write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - } - } - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "constant-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", - "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case": "^2.0.2" - } - }, - "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 - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "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" - } - }, - "crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true - }, - "date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "dev": true, - "requires": { - "@babel/runtime": "^7.21.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" - } - }, - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dev": true, - "requires": { - "mimic-response": "^3.1.0" - } - }, - "dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "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" - } - }, - "defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", - "dev": true - }, - "deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true - }, - "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-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "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 - }, - "diff-sequences": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", - "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", - "dev": true - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, - "requires": { - "is-obj": "^2.0.0" - } - }, - "duplexer3": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", - "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", - "dev": true - }, - "duplexify": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.2.tgz", - "integrity": "sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==", - "dev": true, - "requires": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.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 - }, - "electron-to-chromium": { - "version": "1.4.382", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.382.tgz", - "integrity": "sha512-czMavlW52VIPgutbVL9JnZIZuFijzsG1ww/1z2Otu1r1q+9Qe2bTsH3My3sZarlvwyqHM6+mnZfEnt2Vr4dsIg==", - "dev": true - }, - "emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", - "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 - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "entities": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", - "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", - "dev": true - }, - "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" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true - }, - "escape-goat": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", - "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", - "dev": true - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "eslint": { - "version": "8.39.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.39.0.tgz", - "integrity": "sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.0.2", - "@eslint/js": "8.39.0", - "@humanwhocodes/config-array": "^0.11.8", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.0", - "eslint-visitor-keys": "^3.4.0", - "espree": "^9.5.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "dependencies": { - "eslint-scope": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", - "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } - } - }, - "eslint-config-prettier": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz", - "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==", - "dev": true, - "requires": {} - }, - "eslint-plugin-jest": { - "version": "27.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz", - "integrity": "sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg==", - "dev": true, - "requires": { - "@typescript-eslint/utils": "^5.10.0" - } - }, - "eslint-plugin-jsdoc": { - "version": "43.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-43.1.1.tgz", - "integrity": "sha512-J2kjjsJ5vBXSyNzqJhceeSGTAgVgZHcPSJKo3vD4tNjUdfky98rR2VfZUDsS1GKL6isyVa8GWvr+Az7Vyg2HXA==", - "dev": true, - "requires": { - "@es-joy/jsdoccomment": "~0.37.1", - "are-docs-informative": "^0.0.2", - "comment-parser": "1.3.1", - "debug": "^4.3.4", - "escape-string-regexp": "^4.0.0", - "esquery": "^1.5.0", - "semver": "^7.5.0", - "spdx-expression-parse": "^3.0.1" - } - }, - "eslint-plugin-prettier": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", - "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", - "dev": true, - "requires": { - "prettier-linter-helpers": "^1.0.0" - } - }, - "eslint-plugin-unicorn": { - "version": "46.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", - "integrity": "sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.19.1", - "@eslint-community/eslint-utils": "^4.1.2", - "ci-info": "^3.6.1", - "clean-regexp": "^1.0.0", - "esquery": "^1.4.0", - "indent-string": "^4.0.0", - "is-builtin-module": "^3.2.0", - "jsesc": "^3.0.2", - "lodash": "^4.17.21", - "pluralize": "^8.0.0", - "read-pkg-up": "^7.0.1", - "regexp-tree": "^0.1.24", - "regjsparser": "^0.9.1", - "safe-regex": "^2.1.1", - "semver": "^7.3.8", - "strip-indent": "^3.0.0" - } - }, - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "eslint-visitor-keys": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", - "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", - "dev": true - }, - "espree": { - "version": "9.5.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", - "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", - "dev": true, - "requires": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.0" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - } - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "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" - } - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true - }, - "expect": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz", - "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==", - "dev": true, - "requires": { - "@jest/expect-utils": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0" - } - }, - "expr-eval": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", - "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", - "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.2.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", - "dev": true - }, - "fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "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" - }, - "dependencies": { - "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" - } - } - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "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" - } - }, - "fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "requires": { - "bser": "2.1.1" - } - }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - }, - "dependencies": { - "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 - } - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "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" - } - }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, - "dependencies": { - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "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, - "requires": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "dependencies": { - "signal-exit": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", - "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", - "dev": true - } - } - }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "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 - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "gauge": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-5.0.1.tgz", - "integrity": "sha512-CmykPMJGuNan/3S4kZOpvvPYSNqSHANiWnh9XcMU2pSjtBfF0XzZ2p1bFAxTbnFxyBuPxQYHhzwaoOmUdqzvxQ==", - "dev": true, - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^4.0.1", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - }, - "dependencies": { - "signal-exit": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz", - "integrity": "sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==", - "dev": true - } - } - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "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-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true - }, - "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==", - "dev": true - }, - "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 - }, - "gh-release": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/gh-release/-/gh-release-7.0.2.tgz", - "integrity": "sha512-5gVe+BHFa9OtsjOa72hFRBsfsCIIMYbba35wtEJIkAzZjPXQkUmpLhyrIYYdouh0JRTNNwZ4sDD7eiUhE8T/IQ==", - "dev": true, - "requires": { - "@octokit/rest": "^19.0.5", - "changelog-parser": "^3.0.0", - "deep-extend": "^0.6.0", - "gauge": "^v5.0.0", - "gh-release-assets": "^2.0.0", - "ghauth": "^5.0.0", - "github-url-to-object": "^4.0.4", - "inquirer": "^8.0.0", - "shelljs": "^0.8.4", - "update-notifier": "^5.0.0", - "yargs": "^17.0.0" - } - }, - "gh-release-assets": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/gh-release-assets/-/gh-release-assets-2.0.1.tgz", - "integrity": "sha512-KrhmYIA/5oQdfEl9vQ2yF6DOM2QOAjpCOsNKFkc7X3dOTefSixttW0ysot3noQ+3XL8NdkdC7z+mqfePzIwexg==", - "dev": true, - "requires": { - "async": "^3.2.0", - "mime": "^3.0.0", - "progress-stream": "^2.0.0", - "pumpify": "^2.0.1", - "simple-get": "^4.0.0", - "util-extend": "^1.0.1" - } - }, - "ghauth": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ghauth/-/ghauth-5.0.1.tgz", - "integrity": "sha512-WzgL12dczZX/VrvVTkoFAJLU3pb6PDT+TS60kLlaU51fuNEv6VoYpRXlnwIjkMIhqWead9+dLBEzj0E1ghYMkg==", - "dev": true, - "requires": { - "application-config": "^2.0.0", - "node-fetch": "^2.6.0", - "ora": "^4.0.5", - "read": "^1.0.7" - } - }, - "github-url-to-object": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/github-url-to-object/-/github-url-to-object-4.0.6.tgz", - "integrity": "sha512-NaqbYHMUAlPcmWFdrAB7bcxrNIiiJWJe8s/2+iOc9vlcHlwHqSGrPk+Yi3nu6ebTwgsZEa7igz+NH2vEq3gYwQ==", - "dev": true, - "requires": { - "is-url": "^1.1.0" - } - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", - "dev": true, - "requires": { - "ini": "2.0.0" - }, - "dependencies": { - "ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true - } - } - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "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" - } - }, - "got": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", - "dev": true, - "requires": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - }, - "dependencies": { - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", - "dev": true, - "requires": { - "mimic-response": "^1.0.0" - } - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true - } - } - }, - "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 - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-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 - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true - }, - "has-yarn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", - "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", - "dev": true - }, - "header-case": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", - "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", - "dev": true, - "requires": { - "capital-case": "^1.0.4", - "tslib": "^2.0.3" - } - }, - "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 - }, - "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 - }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "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" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "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" - } - }, - "import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==", - "dev": true - }, - "import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dev": true, - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "ini": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", - "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", - "dev": true - }, - "inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "requires": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - } - }, - "ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "requires": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - } - } - } - }, - "interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true - }, - "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-builtin-module": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", - "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", - "dev": true, - "requires": { - "builtin-modules": "^3.3.0" - } - }, - "is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "dev": true, - "requires": { - "ci-info": "^2.0.0" - }, - "dependencies": { - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true - } - } - }, - "is-core-module": { - "version": "2.12.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", - "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", - "dev": true, - "requires": { - "has": "^1.0.3" - } - }, - "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": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "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-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", - "dev": true, - "requires": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - } - }, - "is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true - }, - "is-npm": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", - "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", - "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-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "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-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-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true - }, - "is-url": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", - "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", - "dev": true - }, - "is-yarn-global": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", - "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - "dev": true - }, - "istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - "dev": true, - "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - } - }, - "istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - } - }, - "istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", - "dev": true, - "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - } - }, - "jackspeak": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.0.tgz", - "integrity": "sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ==", - "dev": true, - "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" - } - }, - "jest": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz", - "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==", - "dev": true, - "requires": { - "@jest/core": "^29.5.0", - "@jest/types": "^29.5.0", - "import-local": "^3.0.2", - "jest-cli": "^29.5.0" - } - }, - "jest-changed-files": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", - "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", - "dev": true, - "requires": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" - } - }, - "jest-circus": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz", - "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/expect": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.5.0", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.5.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - } - }, - "jest-cli": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz", - "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==", - "dev": true, - "requires": { - "@jest/core": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - } - }, - "jest-config": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz", - "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.5.0", - "@jest/types": "^29.5.0", - "babel-jest": "^29.5.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.5.0", - "jest-environment-node": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-runner": "^29.5.0", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - } - }, - "jest-diff": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz", - "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^29.4.3", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - } - }, - "jest-docblock": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", - "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", - "dev": true, - "requires": { - "detect-newline": "^3.0.0" - } - }, - "jest-each": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz", - "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "jest-util": "^29.5.0", - "pretty-format": "^29.5.0" - } - }, - "jest-environment-node": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz", - "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-mock": "^29.5.0", - "jest-util": "^29.5.0" - } - }, - "jest-get-type": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", - "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", - "dev": true - }, - "jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - } - }, - "jest-leak-detector": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz", - "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==", - "dev": true, - "requires": { - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - } - }, - "jest-matcher-utils": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz", - "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "pretty-format": "^29.5.0" - } - }, - "jest-message-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz", - "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.5.0", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.5.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - } - }, - "jest-mock": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz", - "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "jest-util": "^29.5.0" - } - }, - "jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "requires": {} - }, - "jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", - "dev": true - }, - "jest-resolve": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz", - "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.5.0", - "jest-validate": "^29.5.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" - } - }, - "jest-resolve-dependencies": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz", - "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==", - "dev": true, - "requires": { - "jest-regex-util": "^29.4.3", - "jest-snapshot": "^29.5.0" - } - }, - "jest-runner": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz", - "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==", - "dev": true, - "requires": { - "@jest/console": "^29.5.0", - "@jest/environment": "^29.5.0", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.4.3", - "jest-environment-node": "^29.5.0", - "jest-haste-map": "^29.5.0", - "jest-leak-detector": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-resolve": "^29.5.0", - "jest-runtime": "^29.5.0", - "jest-util": "^29.5.0", - "jest-watcher": "^29.5.0", - "jest-worker": "^29.5.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - } - }, - "jest-runtime": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz", - "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==", - "dev": true, - "requires": { - "@jest/environment": "^29.5.0", - "@jest/fake-timers": "^29.5.0", - "@jest/globals": "^29.5.0", - "@jest/source-map": "^29.4.3", - "@jest/test-result": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-mock": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-resolve": "^29.5.0", - "jest-snapshot": "^29.5.0", - "jest-util": "^29.5.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - } - }, - "jest-snapshot": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz", - "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.5.0", - "@jest/transform": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.5.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.5.0", - "jest-get-type": "^29.4.3", - "jest-matcher-utils": "^29.5.0", - "jest-message-util": "^29.5.0", - "jest-util": "^29.5.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.5.0", - "semver": "^7.3.5" - } - }, - "jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "jest-validate": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz", - "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.4.3", - "leven": "^3.1.0", - "pretty-format": "^29.5.0" - }, - "dependencies": { - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - } - } - }, - "jest-watcher": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz", - "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==", - "dev": true, - "requires": { - "@jest/test-result": "^29.5.0", - "@jest/types": "^29.5.0", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.5.0", - "string-length": "^4.0.1" - } - }, - "jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", - "dev": true, - "requires": { - "@types/node": "*", - "jest-util": "^29.5.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "js-sdsl": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", - "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", - "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": "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" - } - }, - "jsdoc-type-pratt-parser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", - "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", - "dev": true - }, - "jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "dev": true - }, - "json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", - "dev": true - }, - "json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", - "dev": true, - "requires": { - "json-buffer": "3.0.0" - } - }, - "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true - }, - "latest-version": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", - "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", - "dev": true, - "requires": { - "package-json": "^6.3.0" - } - }, - "leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "line-reader": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/line-reader/-/line-reader-0.2.4.tgz", - "integrity": "sha512-342xzyZZS9uTiKwHJcMacopVl/WjrMMCZS1Qg4Uhl/WBknWRrGFdKOIS1Kec6SaiTcZMtmuxWvvIbPXj/+FMjA==", - "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 - }, - "linkify-it": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz", - "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", - "dev": true, - "requires": { - "uc.micro": "^1.0.1" - } - }, - "load-json-file": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz", - "integrity": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.15", - "parse-json": "^5.0.0", - "strip-bom": "^4.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 - } - } - }, - "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.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "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 - }, - "log-symbols": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", - "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", - "dev": true, - "requires": { - "chalk": "^2.4.2" - }, - "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" - } - }, - "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" - } - }, - "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 - }, - "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 - }, - "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 - }, - "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" - } - } - } - }, - "lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "dev": true - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "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 - }, - "makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "requires": { - "tmpl": "1.0.5" - } - }, - "markdown-it": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", - "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", - "dev": true, - "requires": { - "argparse": "^2.0.1", - "entities": "~3.0.1", - "linkify-it": "^4.0.1", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" - } - }, - "markdownlint": { - "version": "0.28.2", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.28.2.tgz", - "integrity": "sha512-yYaQXoKKPV1zgrFsyAuZPEQoe+JrY9GDag9ObKpk09twx4OCU5lut+0/kZPrQ3W7w82SmgKhd7D8m34aG1unVw==", - "dev": true, - "requires": { - "markdown-it": "13.0.1", - "markdownlint-micromark": "0.1.2" - } - }, - "markdownlint-cli": { - "version": "0.34.0", - "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.34.0.tgz", - "integrity": "sha512-4G9I++VBTZkaye6Yfc/7dU6HQHcyldZEVB+bYyQJLcpJOHKk/q5ZpGqK80oKMIdlxzsA3aWOJLZ4DkoaoUWXbQ==", - "dev": true, - "requires": { - "commander": "~10.0.1", - "get-stdin": "~9.0.0", - "glob": "~10.2.2", - "ignore": "~5.2.4", - "js-yaml": "^4.1.0", - "jsonc-parser": "~3.2.0", - "markdownlint": "~0.28.2", - "minimatch": "~9.0.0", - "run-con": "~1.2.11" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "glob": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", - "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.0", - "minipass": "^5.0.0", - "path-scurry": "^1.7.0" - } - }, - "minimatch": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", - "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "markdownlint-micromark": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.2.tgz", - "integrity": "sha512-jRxlQg8KpOfM2IbCL9RXM8ZiYWz2rv6DlZAnGv8ASJQpUh6byTBnEsbuMZ6T2/uIgntyf7SKg/mEaEBo1164fQ==", - "dev": true - }, - "mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", - "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" - } - }, - "mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "dev": true - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "dev": true - }, - "min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true - }, - "minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dev": true, - "requires": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dev": true, - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", - "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.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-url": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", - "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", - "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" - } - }, - "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, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, - "requires": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - } - }, - "ora": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz", - "integrity": "sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==", - "dev": true, - "requires": { - "chalk": "^3.0.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.2.0", - "is-interactive": "^1.0.0", - "log-symbols": "^3.0.0", - "mute-stream": "0.0.8", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "dependencies": { - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - } - } - }, - "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 - }, - "p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", - "dev": true - }, - "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-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" - } - }, - "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 - }, - "package-json": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", - "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", - "dev": true, - "requires": { - "got": "^9.6.0", - "registry-auth-token": "^4.0.0", - "registry-url": "^5.0.0", - "semver": "^6.2.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "dev": true, - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - } - }, - "pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", - "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", - "dev": true, - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "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-scurry": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.7.0.tgz", - "integrity": "sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg==", - "dev": true, - "requires": { - "lru-cache": "^9.0.0", - "minipass": "^5.0.0" - }, - "dependencies": { - "lru-cache": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.1.tgz", - "integrity": "sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==", - "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 - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", - "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-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - } - } - }, - "pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", - "dev": true - }, - "postcss-calc-ast-parser": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", - "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", - "dev": true, - "requires": { - "postcss-value-parser": "^3.3.1" - } - }, - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", - "dev": true - }, - "prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "dev": true - }, - "prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", - "dev": true, - "requires": { - "fast-diff": "^1.1.2" - } - }, - "pretty-format": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz", - "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true - } - } - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "progress-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-2.0.0.tgz", - "integrity": "sha512-xJwOWR46jcXUq6EH9yYyqp+I52skPySOeHfkxOZ2IY1AiBi/sFJhbhAKHoV3OTw/omQ45KTio9215dRJ2Yxd3Q==", - "dev": true, - "requires": { - "speedometer": "~1.0.0", - "through2": "~2.0.3" - } - }, - "prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dev": true, - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-2.0.1.tgz", - "integrity": "sha512-m7KOje7jZxrmutanlkS1daj1dS6z6BgslzOXmcSEpIlCxM3VJH7lG5QLeck/6hgF6F4crFf01UtQmNsJfweTAw==", - "dev": true, - "requires": { - "duplexify": "^4.1.1", - "inherits": "^2.0.3", - "pump": "^3.0.0" - } - }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true - }, - "pupa": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", - "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", - "dev": true, - "requires": { - "escape-goat": "^2.0.0" - } - }, - "pure-rand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", - "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", - "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 - }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true - } - } - }, - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "dev": true - }, - "read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", - "dev": true, - "requires": { - "mute-stream": "~0.0.4" - } - }, - "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-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true - } - } - }, - "readable-stream": { - "version": "3.6.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" - } - }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", - "dev": true, - "requires": { - "resolve": "^1.1.6" - } - }, - "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-tree": { - "version": "0.1.27", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", - "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", - "dev": true - }, - "registry-auth-token": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", - "integrity": "sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==", - "dev": true, - "requires": { - "rc": "1.2.8" - } - }, - "registry-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", - "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", - "dev": true, - "requires": { - "rc": "^1.2.8" - } - }, - "regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true - } - } - }, - "remove-markdown": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/remove-markdown/-/remove-markdown-0.5.0.tgz", - "integrity": "sha512-x917M80K97K5IN1L8lUvFehsfhR8cYjGQ/yAMRI9E7JIKivtl5Emo5iD13DhMr+VojzMCiYk8V2byNPwT/oapg==", - "dev": true - }, - "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 - }, - "resolve": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", - "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", - "dev": true, - "requires": { - "is-core-module": "^2.11.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" - }, - "dependencies": { - "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-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 - }, - "resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", - "dev": true - }, - "responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", - "dev": true, - "requires": { - "lowercase-keys": "^1.0.0" - } - }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "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 - }, - "rimraf": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.0.tgz", - "integrity": "sha512-Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g==", - "dev": true, - "requires": { - "glob": "^10.0.0" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "glob": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.2.tgz", - "integrity": "sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==", - "dev": true, - "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.0", - "minipass": "^5.0.0", - "path-scurry": "^1.7.0" - } - }, - "minimatch": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz", - "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true - }, - "run-con": { - "version": "1.2.11", - "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.11.tgz", - "integrity": "sha512-NEMGsUT+cglWkzEr4IFK21P4Jca45HqiAbIIZIBdX5+UZTB24Mb/21iNGgz9xZa8tL6vbW7CXmq7MFN42+VjNQ==", - "dev": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~3.0.0", - "minimist": "^1.2.6", - "strip-json-comments": "~3.1.1" - } - }, - "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" - } - }, - "rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "requires": { - "tslib": "^2.1.0" - } - }, - "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": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", - "integrity": "sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==", - "dev": true, - "requires": { - "regexp-tree": "~0.1.1" - } - }, - "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.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", - "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - }, - "dependencies": { - "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" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } - }, - "semver-diff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", - "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", - "dev": true, - "requires": { - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "sentence-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", - "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", - "dev": true, - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "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 - }, - "shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "dev": true - }, - "shelljs": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", - "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", - "dev": true, - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - } - }, - "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 - }, - "simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", - "dev": true - }, - "simple-get": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", - "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", - "dev": true, - "requires": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "dev": true, - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "sort-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz", - "integrity": "sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==", - "dev": true, - "requires": { - "is-plain-obj": "^2.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "spawn-command": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", - "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", - "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.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", - "dev": true - }, - "speedometer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz", - "integrity": "sha512-lgxErLl/7A5+vgIIXsh9MbeukOaCb2axgQ+bKCdIE+ibNT4XNYGNCR1qFEGq6F+YDASXK3Fh/c5FgtZchFolxw==", - "dev": true - }, - "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-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "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-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "dev": true, - "requires": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "string-width-cjs": { - "version": "npm:string-width@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" - } - }, - "strip-ansi-cjs": { - "version": "npm:strip-ansi@6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true - }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true - }, - "strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dev": true, - "requires": { - "min-indent": "^1.0.0" - } - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "style-dictionary": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.8.0.tgz", - "integrity": "sha512-wHlB/f5eO3mDcYv6WtOz6gvQC477jBKrwuIXe+PtHskTCBsJdAOvL8hCquczJxDui2TnwpeNE+2msK91JJomZg==", - "dev": true, - "requires": { - "chalk": "^4.0.0", - "change-case": "^4.1.2", - "commander": "^8.3.0", - "fs-extra": "^10.0.0", - "glob": "^7.2.0", - "json5": "^2.2.2", - "jsonc-parser": "^3.0.0", - "lodash": "^4.17.15", - "tinycolor2": "^1.4.1" - }, - "dependencies": { - "commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "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" - } - }, - "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 - }, - "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, - "requires": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "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": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "tinycolor2": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", - "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", - "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" - } - }, - "tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true - }, - "to-readable-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "token-transformer": { - "version": "0.0.27", - "resolved": "https://registry.npmjs.org/token-transformer/-/token-transformer-0.0.27.tgz", - "integrity": "sha512-IBClwoMFrOGrlTD9ql/wArgRCe1IpKbPVfYoLPkegS9kK5yAOz7O4U8VJeZbq6FjSy73C+zLmtz7H8V5k2LqjQ==", - "dev": true, - "requires": { - "yargs": "^17.4.1" - } - }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "dev": true - }, - "ts-jest": { - "version": "29.1.0", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.0.tgz", - "integrity": "sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==", - "dev": true, - "requires": { - "bs-logger": "0.x", - "fast-json-stable-stringify": "2.x", - "jest-util": "^29.0.0", - "json5": "^2.2.3", - "lodash.memoize": "4.x", - "make-error": "1.x", - "semver": "7.x", - "yargs-parser": "^21.0.1" - } - }, - "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" - } - }, - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==", - "dev": true - }, - "tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } - } - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - }, - "typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "requires": { - "is-typedarray": "^1.0.0" - } - }, - "typescript": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", - "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", - "dev": true - }, - "uc.micro": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", - "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", - "dev": true - }, - "unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, - "requires": { - "crypto-random-string": "^2.0.0" - } - }, - "universal-user-agent": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", - "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", - "dev": true - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - }, - "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", - "dev": true, - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - } - }, - "update-notifier": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", - "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", - "dev": true, - "requires": { - "boxen": "^5.0.0", - "chalk": "^4.1.0", - "configstore": "^5.0.1", - "has-yarn": "^2.1.0", - "import-lazy": "^2.1.0", - "is-ci": "^2.0.0", - "is-installed-globally": "^0.4.0", - "is-npm": "^5.0.0", - "is-yarn-global": "^0.3.0", - "latest-version": "^5.1.0", - "pupa": "^2.1.1", - "semver": "^7.3.4", - "semver-diff": "^3.1.1", - "xdg-basedir": "^4.0.0" - } - }, - "upper-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", - "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "upper-case-first": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", - "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", - "dev": true, - "requires": { - "tslib": "^2.0.3" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", - "dev": true, - "requires": { - "prepend-http": "^2.0.0" - } - }, - "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 - }, - "util-extend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", - "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", - "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 - }, - "v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - }, - "dependencies": { - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "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" - } - }, - "walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "dev": true, - "requires": { - "makeerror": "1.0.12" - } - }, - "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" - } - }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "widest-line": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", - "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", - "dev": true, - "requires": { - "string-width": "^4.0.0" - } - }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true - }, - "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" - } - }, - "wrap-ansi-cjs": { - "version": "npm:wrap-ansi@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" - } - }, - "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 - }, - "write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - } - }, - "write-json-file": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-4.3.0.tgz", - "integrity": "sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ==", - "dev": true, - "requires": { - "detect-indent": "^6.0.0", - "graceful-fs": "^4.1.15", - "is-plain-obj": "^2.0.0", - "make-dir": "^3.0.0", - "sort-keys": "^4.0.0", - "write-file-atomic": "^3.0.0" - }, - "dependencies": { - "write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - } - } - }, - "xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true - }, - "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": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "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" - } - }, - "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 - }, - "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 - } } } diff --git a/packages/calcite-design-tokens/package.json b/packages/calcite-design-tokens/package.json index 333d52631fc..01df4be836f 100644 --- a/packages/calcite-design-tokens/package.json +++ b/packages/calcite-design-tokens/package.json @@ -51,25 +51,25 @@ "test": "jest" }, "devDependencies": { - "concurrently": "8.2.1", - "@tokens-studio/sd-transforms": "0.8.2", - "@types/jest": "29.5.0", - "@types/node": "18.15.11", - "@typescript-eslint/eslint-plugin": "5.59.2", + "@tokens-studio/sd-transforms": "0.8.7", + "@types/jest": "29.5.5", + "@types/node": "18.18.3", + "@typescript-eslint/eslint-plugin": "5.62.0", "change-case": "4.1.2", - "eslint": "8.39.0", - "eslint-config-prettier": "8.8.0", - "eslint-plugin-jest": "27.2.1", - "eslint-plugin-jsdoc": "43.1.1", + "concurrently": "8.2.1", + "eslint": "8.50.0", + "eslint-config-prettier": "8.10.0", + "eslint-plugin-jest": "27.4.2", + "eslint-plugin-jsdoc": "43.2.0", "eslint-plugin-prettier": "4.2.1", - "eslint-plugin-unicorn": "46.0.0", - "jest": "29.5.0", + "eslint-plugin-unicorn": "46.0.1", + "jest": "29.7.0", "markdownlint-cli": "0.34.0", "prettier": "2.8.8", - "rimraf": "5.0.0", - "style-dictionary": "3.7.1", - "ts-jest": "29.0.5", + "rimraf": "5.0.5", + "style-dictionary": "3.8.0", + "ts-jest": "29.1.1", "ts-node": "10.9.1", - "typescript": "5.0.2" + "typescript": "5.2.2" } } From 545406aa1c07c4508f749186e970af5efb68110a Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 4 Oct 2023 13:49:06 -0700 Subject: [PATCH 685/696] docs: remove unnecessary comments --- .../calcite-design-tokens/support/token-transformer/sd-run.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/calcite-design-tokens/support/token-transformer/sd-run.ts b/packages/calcite-design-tokens/support/token-transformer/sd-run.ts index 244bffed646..f3cd8a8cd7e 100644 --- a/packages/calcite-design-tokens/support/token-transformer/sd-run.ts +++ b/packages/calcite-design-tokens/support/token-transformer/sd-run.ts @@ -35,9 +35,7 @@ export const run = async ( sourceReferencesOnly: false }; - // Here we are registering the Transforms provided by Token Studio however, - // we need to pass "expand: false" so that we can use our own custom JSON file parser. - // any references to "ts/..." below are references to these Token Studio transformers + // Here we are registering the Transforms provided by Token Studio // https://github.com/tokens-studio/sd-transforms await registerTransforms(StyleDictionary, { expand: false }); From 67dd05f8fc75d7e7ed7e51d4918d34f930836be7 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 5 Oct 2023 11:48:54 -0700 Subject: [PATCH 686/696] ci: rename bin/run.js to support/run.ts --- packages/calcite-design-tokens/{bin/run.js => support/run.ts} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename packages/calcite-design-tokens/{bin/run.js => support/run.ts} (100%) diff --git a/packages/calcite-design-tokens/bin/run.js b/packages/calcite-design-tokens/support/run.ts similarity index 100% rename from packages/calcite-design-tokens/bin/run.js rename to packages/calcite-design-tokens/support/run.ts From aaf99f3f23d3d52a265ea756f499eca91bdbe849 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 5 Oct 2023 11:55:18 -0700 Subject: [PATCH 687/696] fix: token-transformer run to use esm --- packages/calcite-design-tokens/.gitignore | 18 ++++++++++++++++++ packages/calcite-design-tokens/support/run.ts | 13 +++++++++---- .../calcite-design-tokens/tsconfig.prod.json | 9 --------- 3 files changed, 27 insertions(+), 13 deletions(-) create mode 100644 packages/calcite-design-tokens/.gitignore delete mode 100644 packages/calcite-design-tokens/tsconfig.prod.json diff --git a/packages/calcite-design-tokens/.gitignore b/packages/calcite-design-tokens/.gitignore new file mode 100644 index 00000000000..75e794e0d04 --- /dev/null +++ b/packages/calcite-design-tokens/.gitignore @@ -0,0 +1,18 @@ +# Logs +logs +*.log +**/*.bak +**/*.js + +# Dependency directory +# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- +node_modules + +# macOS metadata +.DS_Store + +# Node Package distribution +dist + +# Transformation Directory +tools/token-transformer/**/*.js diff --git a/packages/calcite-design-tokens/support/run.ts b/packages/calcite-design-tokens/support/run.ts index 88846ce552a..e0498586449 100644 --- a/packages/calcite-design-tokens/support/run.ts +++ b/packages/calcite-design-tokens/support/run.ts @@ -1,13 +1,18 @@ import { readFileSync } from "fs"; -import { getThemes } from "../tools/dist/getThemes.js"; -import { run } from "../tools/dist/sd-run.js"; +import { resolve, dirname } from "path"; +import { fileURLToPath } from "url"; +import { getThemes } from "./token-transformer/getThemes.js"; +import { run } from "./token-transformer/sd-run.js"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); /** * Get all themes defined int the tokens/$themes.json and generate a Style Dictionary output for each theme */ -const rawData = readFileSync("tokens/$themes.json", { encoding: "utf-8" }); +const rawData = readFileSync(resolve(__dirname, '../src/$themes.json'), { encoding: "utf-8" }); const data = JSON.parse(rawData); getThemes(data).then((themes) => - Promise.all(themes.map((theme) => run("tokens", "dist", theme))) + Promise.all(themes.map((theme) => run("src", "dist", theme))) ); diff --git a/packages/calcite-design-tokens/tsconfig.prod.json b/packages/calcite-design-tokens/tsconfig.prod.json deleted file mode 100644 index 1c9541b9de6..00000000000 --- a/packages/calcite-design-tokens/tsconfig.prod.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "./tsconfig", - "compilerOptions": { - "target": "ES2018", - "outDir": "./tools/dist", - "sourceMap": true - }, - "exclude": ["**/*.test.*", "support/**"] -} From 91db3d2d7384ae04b8582a2c5dbc9912270fab3d Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 5 Oct 2023 12:01:41 -0700 Subject: [PATCH 688/696] ci: autofix linting errors --- packages/calcite-design-tokens/CHANGELOG.md | 2 +- .../calcite-design-tokens/CONTRIBUTING.md | 2 +- packages/calcite-design-tokens/README.md | 2 +- .../calcite-design-tokens/package-lock.json | 2483 ++++++++++++++++- packages/calcite-design-tokens/package.json | 2 + packages/calcite-design-tokens/support/run.ts | 6 +- .../support/token-transformer/format/scss.ts | 1 + .../parse/expandComposites.ts | 1 + .../support/token-transformer/sd-run.ts | 1 + .../transform/nameCamelCase.ts | 1 + .../transform/nameKebabCase.ts | 1 + .../utils/compositeTokens.ts | 2 + .../convertTokenToStyleDictionaryFormat.ts | 1 + .../token-transformer/utils/matchList.ts | 1 + .../token-transformer/utils/parseName.ts | 1 + .../token-transformer/utils/parseTokenPath.ts | 1 + 16 files changed, 2457 insertions(+), 51 deletions(-) diff --git a/packages/calcite-design-tokens/CHANGELOG.md b/packages/calcite-design-tokens/CHANGELOG.md index 6dbcbeea72b..d1303b1b80d 100644 --- a/packages/calcite-design-tokens/CHANGELOG.md +++ b/packages/calcite-design-tokens/CHANGELOG.md @@ -9,4 +9,4 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Uses @token-studio tokens format - Add css platform -- Add scss platform \ No newline at end of file +- Add scss platform diff --git a/packages/calcite-design-tokens/CONTRIBUTING.md b/packages/calcite-design-tokens/CONTRIBUTING.md index de28c2bcc8e..412b1d2ad37 100644 --- a/packages/calcite-design-tokens/CONTRIBUTING.md +++ b/packages/calcite-design-tokens/CONTRIBUTING.md @@ -38,4 +38,4 @@ Designers working in Figma will need to manually open a PR through GitHub after ### Wait for reviewers -All Token PRs require sign-off from a Calcite Designer and Engineer before merging into main. \ No newline at end of file +All Token PRs require sign-off from a Calcite Designer and Engineer before merging into main. diff --git a/packages/calcite-design-tokens/README.md b/packages/calcite-design-tokens/README.md index 733a2408ddf..3bebdd1ddd6 100644 --- a/packages/calcite-design-tokens/README.md +++ b/packages/calcite-design-tokens/README.md @@ -28,4 +28,4 @@ These are the published asset files generated by the token transformer: | Calcite Light | @esri/calcite-design-tokens/css/calcite-light | @esri/calcite-design-tokens/scss/calcite-light | | Calcite Dark | @esri/calcite-design-tokens/css/calcite-dark | @esri/calcite-design-tokens/scss/calcite-dark | | Calcite Brand Light | @esri/calcite-design-tokens/css/brand-light | @esri/calcite-design-tokens/scss/brand-light | -| Calcite Brand Dark | @esri/calcite-design-tokens/css/brand-dark | @esri/calcite-design-tokens/scss/brand-dark | \ No newline at end of file +| Calcite Brand Dark | @esri/calcite-design-tokens/css/brand-dark | @esri/calcite-design-tokens/scss/brand-dark | diff --git a/packages/calcite-design-tokens/package-lock.json b/packages/calcite-design-tokens/package-lock.json index a9e7a1c47d6..45fcaea6e74 100644 --- a/packages/calcite-design-tokens/package-lock.json +++ b/packages/calcite-design-tokens/package-lock.json @@ -8,6 +8,7 @@ "name": "@esri/calcite-design-tokens", "version": "1.0.0", "devDependencies": { + "@cspell/eslint-plugin": "^7.3.7", "@tokens-studio/sd-transforms": "0.8.7", "@types/jest": "29.5.5", "@types/node": "18.18.3", @@ -16,6 +17,7 @@ "concurrently": "8.2.1", "eslint": "8.50.0", "eslint-config-prettier": "8.10.0", + "eslint-plugin-import": "^2.28.1", "eslint-plugin-jest": "27.4.2", "eslint-plugin-jsdoc": "43.2.0", "eslint-plugin-prettier": "4.2.1", @@ -725,6 +727,430 @@ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, + "node_modules/@cspell/cspell-bundled-dicts": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-7.3.7.tgz", + "integrity": "sha512-Mw7J0RAWGpEup/+eIePw3wi+OlMGNicrD1r9OhdgIgO6sHEi01ibS/RzNNbC7UziLaYEHi8+WfLyGzmp1ZISrQ==", + "dev": true, + "dependencies": { + "@cspell/dict-ada": "^4.0.2", + "@cspell/dict-aws": "^4.0.0", + "@cspell/dict-bash": "^4.1.2", + "@cspell/dict-companies": "^3.0.24", + "@cspell/dict-cpp": "^5.0.5", + "@cspell/dict-cryptocurrencies": "^4.0.0", + "@cspell/dict-csharp": "^4.0.2", + "@cspell/dict-css": "^4.0.10", + "@cspell/dict-dart": "^2.0.3", + "@cspell/dict-django": "^4.1.0", + "@cspell/dict-docker": "^1.1.7", + "@cspell/dict-dotnet": "^5.0.0", + "@cspell/dict-elixir": "^4.0.3", + "@cspell/dict-en_us": "^4.3.8", + "@cspell/dict-en-common-misspellings": "^1.0.2", + "@cspell/dict-en-gb": "1.1.33", + "@cspell/dict-filetypes": "^3.0.1", + "@cspell/dict-fonts": "^4.0.0", + "@cspell/dict-fsharp": "^1.0.0", + "@cspell/dict-fullstack": "^3.1.5", + "@cspell/dict-gaming-terms": "^1.0.4", + "@cspell/dict-git": "^2.0.0", + "@cspell/dict-golang": "^6.0.3", + "@cspell/dict-haskell": "^4.0.1", + "@cspell/dict-html": "^4.0.5", + "@cspell/dict-html-symbol-entities": "^4.0.0", + "@cspell/dict-java": "^5.0.6", + "@cspell/dict-k8s": "^1.0.1", + "@cspell/dict-latex": "^4.0.0", + "@cspell/dict-lorem-ipsum": "^4.0.0", + "@cspell/dict-lua": "^4.0.1", + "@cspell/dict-node": "^4.0.3", + "@cspell/dict-npm": "^5.0.10", + "@cspell/dict-php": "^4.0.3", + "@cspell/dict-powershell": "^5.0.2", + "@cspell/dict-public-licenses": "^2.0.4", + "@cspell/dict-python": "^4.1.9", + "@cspell/dict-r": "^2.0.1", + "@cspell/dict-ruby": "^5.0.0", + "@cspell/dict-rust": "^4.0.1", + "@cspell/dict-scala": "^5.0.0", + "@cspell/dict-software-terms": "^3.3.2", + "@cspell/dict-sql": "^2.1.1", + "@cspell/dict-svelte": "^1.0.2", + "@cspell/dict-swift": "^2.0.1", + "@cspell/dict-typescript": "^3.1.2", + "@cspell/dict-vue": "^3.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/cspell-pipe": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-7.3.7.tgz", + "integrity": "sha512-ZO8v3EwGhjUvhPo1S48+CKv7EPXMoYF7LGERB34K8EXFByb9+J74ojMYj9UgLRV68lFTrDFde3bHoZPPVS1FsA==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/cspell-resolver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-7.3.7.tgz", + "integrity": "sha512-WWZcTI5f2cCjr1yRDTMkcVg7Meil3s+0aaKcLCDTGQf9J2UWWjpqDJ6M6keYei3paAjxW2Pk03IRNNwdA3+igQ==", + "dev": true, + "dependencies": { + "global-dirs": "^3.0.1" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/cspell-service-bus": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-7.3.7.tgz", + "integrity": "sha512-pnDOFpjht7dZYydMygcf0brCSk5BGRvbeWRH6MaMhd+3CdyzyEvtZG3IbBQVNyVvDTA2c/K3rljOAo8y3/lpnw==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/cspell-types": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-7.3.7.tgz", + "integrity": "sha512-zM2BuZJ3UUgPwF78bssggi8X20nmW3a95EmbNJKfbO6Zf2ui7UMzeP3BwpCZk30A/EixGlFhLf6Xd+eBT/DQqw==", + "dev": true, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/dict-ada": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.0.2.tgz", + "integrity": "sha512-0kENOWQeHjUlfyId/aCM/mKXtkEgV0Zu2RhUXCBr4hHo9F9vph+Uu8Ww2b0i5a4ZixoIkudGA+eJvyxrG1jUpA==", + "dev": true + }, + "node_modules/@cspell/dict-aws": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.0.tgz", + "integrity": "sha512-1YkCMWuna/EGIDN/zKkW+j98/55mxigftrSFgsehXhPld+ZMJM5J9UuBA88YfL7+/ETvBdd7mwW6IwWsC+/ltQ==", + "dev": true + }, + "node_modules/@cspell/dict-bash": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.1.2.tgz", + "integrity": "sha512-AEBWjbaMaJEyAjOHW0F15P2izBjli2cNerG3NjuVH7xX/HUUeNoTj8FF1nwpMufKwGQCvuyO2hCmkVxhJ0y55Q==", + "dev": true + }, + "node_modules/@cspell/dict-companies": { + "version": "3.0.26", + "resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.26.tgz", + "integrity": "sha512-BGRZ/Uykx+IgQoTGqvRqbBMQy7QSuY0pbTHgtmKtc1scgzZMJQKMDwyuE6LJzlhdlrV7TsVY0lyXREybnDpQPQ==", + "dev": true + }, + "node_modules/@cspell/dict-cpp": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-5.0.6.tgz", + "integrity": "sha512-2z9JqWgsRYROnqeMj1k1L1taSQQHMhqfU6EqDNApsEQT3naznKntV8KKyybr2YSz0bIG9fMbzVv0GoQBbLgD9A==", + "dev": true + }, + "node_modules/@cspell/dict-cryptocurrencies": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-4.0.0.tgz", + "integrity": "sha512-EiZp91ATyRxTmauIQfOX9adLYCunKjHEh092rrM7o2eMXP9n7zpXAL9BK7LviL+LbB8VDOm21q+s83cKrrRrsg==", + "dev": true + }, + "node_modules/@cspell/dict-csharp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.2.tgz", + "integrity": "sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==", + "dev": true + }, + "node_modules/@cspell/dict-css": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.12.tgz", + "integrity": "sha512-vGBgPM92MkHQF5/2jsWcnaahOZ+C6OE/fPvd5ScBP72oFY9tn5GLuomcyO0z8vWCr2e0nUSX1OGimPtcQAlvSw==", + "dev": true + }, + "node_modules/@cspell/dict-dart": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.0.3.tgz", + "integrity": "sha512-cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw==", + "dev": true + }, + "node_modules/@cspell/dict-data-science": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-1.0.11.tgz", + "integrity": "sha512-TaHAZRVe0Zlcc3C23StZqqbzC0NrodRwoSAc8dis+5qLeLLnOCtagYQeROQvDlcDg3X/VVEO9Whh4W/z4PAmYQ==", + "dev": true + }, + "node_modules/@cspell/dict-django": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.1.0.tgz", + "integrity": "sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w==", + "dev": true + }, + "node_modules/@cspell/dict-docker": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.7.tgz", + "integrity": "sha512-XlXHAr822euV36GGsl2J1CkBIVg3fZ6879ZOg5dxTIssuhUOCiV2BuzKZmt6aIFmcdPmR14+9i9Xq+3zuxeX0A==", + "dev": true + }, + "node_modules/@cspell/dict-dotnet": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.0.tgz", + "integrity": "sha512-EOwGd533v47aP5QYV8GlSSKkmM9Eq8P3G/eBzSpH3Nl2+IneDOYOBLEUraHuiCtnOkNsz0xtZHArYhAB2bHWAw==", + "dev": true + }, + "node_modules/@cspell/dict-elixir": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.3.tgz", + "integrity": "sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==", + "dev": true + }, + "node_modules/@cspell/dict-en_us": { + "version": "4.3.8", + "resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.8.tgz", + "integrity": "sha512-rCPsbDHuRnFUbzWAY6O1H9+cLZt5FNQwjPVw2TdQZfipdb0lim984aLGY+nupi1iKC3lfjyd5SVUgmSZEG1QNA==", + "dev": true + }, + "node_modules/@cspell/dict-en-common-misspellings": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-1.0.2.tgz", + "integrity": "sha512-jg7ZQZpZH7+aAxNBlcAG4tGhYF6Ksy+QS5Df73Oo+XyckBjC9QS+PrRwLTeYoFIgXy5j3ICParK5r3MSSoL4gw==", + "dev": true + }, + "node_modules/@cspell/dict-en-gb": { + "version": "1.1.33", + "resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz", + "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==", + "dev": true + }, + "node_modules/@cspell/dict-filetypes": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.1.tgz", + "integrity": "sha512-8z8mY1IbrTyTRumx2vvD9yzRhNMk9SajM/GtI5hdMM2pPpNSp25bnuauzjRf300eqlqPY2MNb5MmhBFO014DJw==", + "dev": true + }, + "node_modules/@cspell/dict-fonts": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.0.tgz", + "integrity": "sha512-t9V4GeN/m517UZn63kZPUYP3OQg5f0OBLSd3Md5CU3eH1IFogSvTzHHnz4Wqqbv8NNRiBZ3HfdY/pqREZ6br3Q==", + "dev": true + }, + "node_modules/@cspell/dict-fsharp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.0.0.tgz", + "integrity": "sha512-dHPkMHwW4dWv3Lv9VWxHuVm4IylqvcfRBSnZ7usJTRThraetSVrOPIJwr6UJh7F5un/lGJx2lxWVApf2WQaB/A==", + "dev": true + }, + "node_modules/@cspell/dict-fullstack": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.1.5.tgz", + "integrity": "sha512-6ppvo1dkXUZ3fbYn/wwzERxCa76RtDDl5Afzv2lijLoijGGUw5yYdLBKJnx8PJBGNLh829X352ftE7BElG4leA==", + "dev": true + }, + "node_modules/@cspell/dict-gaming-terms": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.4.tgz", + "integrity": "sha512-hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg==", + "dev": true + }, + "node_modules/@cspell/dict-git": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-2.0.0.tgz", + "integrity": "sha512-n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==", + "dev": true + }, + "node_modules/@cspell/dict-golang": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.3.tgz", + "integrity": "sha512-KiNnjAeqDBq6zH4s46hzBrKgqIrkSZ9bbHzQ54PbHfe+jurZkSZ4lXz6E+315RNh2TkRLcNppFvaZqJvKZXomA==", + "dev": true + }, + "node_modules/@cspell/dict-haskell": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.1.tgz", + "integrity": "sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==", + "dev": true + }, + "node_modules/@cspell/dict-html": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.5.tgz", + "integrity": "sha512-p0brEnRybzSSWi8sGbuVEf7jSTDmXPx7XhQUb5bgG6b54uj+Z0Qf0V2n8b/LWwIPJNd1GygaO9l8k3HTCy1h4w==", + "dev": true + }, + "node_modules/@cspell/dict-html-symbol-entities": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.0.tgz", + "integrity": "sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==", + "dev": true + }, + "node_modules/@cspell/dict-java": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.6.tgz", + "integrity": "sha512-kdE4AHHHrixyZ5p6zyms1SLoYpaJarPxrz8Tveo6gddszBVVwIUZ+JkQE1bWNLK740GWzIXdkznpUfw1hP9nXw==", + "dev": true + }, + "node_modules/@cspell/dict-k8s": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.1.tgz", + "integrity": "sha512-gc5y4Nm3hVdMZNBZfU2M1AsAmObZsRWjCUk01NFPfGhFBXyVne41T7E62rpnzu5330FV/6b/TnFcPgRmak9lLw==", + "dev": true + }, + "node_modules/@cspell/dict-latex": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-4.0.0.tgz", + "integrity": "sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==", + "dev": true + }, + "node_modules/@cspell/dict-lorem-ipsum": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.0.tgz", + "integrity": "sha512-1l3yjfNvMzZPibW8A7mQU4kTozwVZVw0AvFEdy+NcqtbxH+TvbSkNMqROOFWrkD2PjnKG0+Ea0tHI2Pi6Gchnw==", + "dev": true + }, + "node_modules/@cspell/dict-lua": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.2.tgz", + "integrity": "sha512-eeC20Q+UnHcTVBK6pgwhSjGIVugO2XqU7hv4ZfXp2F9DxGx1RME0+1sKX4qAGhdFGwOBsEzb2fwUsAEP6Mibpg==", + "dev": true + }, + "node_modules/@cspell/dict-node": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-4.0.3.tgz", + "integrity": "sha512-sFlUNI5kOogy49KtPg8SMQYirDGIAoKBO3+cDLIwD4MLdsWy1q0upc7pzGht3mrjuyMiPRUV14Bb0rkVLrxOhg==", + "dev": true + }, + "node_modules/@cspell/dict-npm": { + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.12.tgz", + "integrity": "sha512-T/+WeQmtbxo7ad6hrdI8URptYstKJP+kXyWJZfuVJJGWJQ7yubxrI5Z5AfM+Dh/ff4xHmdzapxD9adaEQ727uw==", + "dev": true + }, + "node_modules/@cspell/dict-php": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.3.tgz", + "integrity": "sha512-PxtSmWJCDEB4M8R9ER9ijxBum/tvUqYT26QeuV58q2IFs5IrPZ6hocQKvnFGXItjCWH4oYXyAEAAzINlBC4Opg==", + "dev": true + }, + "node_modules/@cspell/dict-powershell": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.2.tgz", + "integrity": "sha512-IHfWLme3FXE7vnOmMncSBxOsMTdNWd1Vcyhag03WS8oANSgX8IZ+4lMI00mF0ptlgchf16/OU8WsV4pZfikEFw==", + "dev": true + }, + "node_modules/@cspell/dict-public-licenses": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.4.tgz", + "integrity": "sha512-KjsfuGwMWvPkp6s0nR+s4mZc9SQhh1tHDOyQZfEVRwi+2ev7f8l7R6ts9sP2Mplb8UcxwO6YmKwxHjN+XHoMoA==", + "dev": true + }, + "node_modules/@cspell/dict-python": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.1.9.tgz", + "integrity": "sha512-JMA4v/ZPJWuDt3PPFz+23VIY3iDIB+xOTQ6nw+WkcJU5yr6FUl5zMU9ModKrgujg3jGRuuJqofErZVPqHNHYAA==", + "dev": true, + "dependencies": { + "@cspell/dict-data-science": "^1.0.11" + } + }, + "node_modules/@cspell/dict-r": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.0.1.tgz", + "integrity": "sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==", + "dev": true + }, + "node_modules/@cspell/dict-ruby": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.1.tgz", + "integrity": "sha512-rruTm7Emhty/BSYavSm8ZxRuVw0OBqzJkwIFXcV0cX7To8D1qbmS9HFHRuRg8IL11+/nJvtdDz+lMFBSmPUagQ==", + "dev": true + }, + "node_modules/@cspell/dict-rust": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.1.tgz", + "integrity": "sha512-xJSSzHDK2z6lSVaOmMxl3PTOtfoffaxMo7fTcbZUF+SCJzfKbO6vnN9TCGX2sx1RHFDz66Js6goz6SAZQdOwaw==", + "dev": true + }, + "node_modules/@cspell/dict-scala": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.0.tgz", + "integrity": "sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==", + "dev": true + }, + "node_modules/@cspell/dict-software-terms": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.3.4.tgz", + "integrity": "sha512-+WpBcJmhPl+jZEEGqgeiyDeJuCJ/M2TuVPaHJJI83LQLvLf1z4/5dkHXU7fUkimpxXFJWWR1DlWLA3+PKBeTfg==", + "dev": true + }, + "node_modules/@cspell/dict-sql": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.1.1.tgz", + "integrity": "sha512-v1mswi9NF40+UDUMuI148YQPEQvWjac72P6ZsjlRdLjEiQEEMEsTQ+zlkIdnzC9QCNyJaqD5Liq9Mn78/8Zxtw==", + "dev": true + }, + "node_modules/@cspell/dict-svelte": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.2.tgz", + "integrity": "sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==", + "dev": true + }, + "node_modules/@cspell/dict-swift": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.1.tgz", + "integrity": "sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==", + "dev": true + }, + "node_modules/@cspell/dict-typescript": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.1.2.tgz", + "integrity": "sha512-lcNOYWjLUvDZdLa0UMNd/LwfVdxhE9rKA+agZBGjL3lTA3uNvH7IUqSJM/IXhJoBpLLMVEOk8v1N9xi+vDuCdA==", + "dev": true + }, + "node_modules/@cspell/dict-vue": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.0.tgz", + "integrity": "sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==", + "dev": true + }, + "node_modules/@cspell/dynamic-import": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-7.3.7.tgz", + "integrity": "sha512-ac52OLDMYBHkRQ8XzihOWnyfqri3M84ELTZdqBhR5YGcHW/mxKhsmXqudA980SdRRKaicD39yhX4idAFb4AsDg==", + "dev": true, + "dependencies": { + "import-meta-resolve": "^3.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/eslint-plugin": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/@cspell/eslint-plugin/-/eslint-plugin-7.3.7.tgz", + "integrity": "sha512-0C3DK+HMLT0Bnhfp+fvlfO2v3edW3m8b1HMtOuCZ9ymFS89D8HzPxTzCVMCMo7e365vmoEExenEPIgtfQWUtvw==", + "dev": true, + "dependencies": { + "@cspell/cspell-types": "7.3.7", + "cspell-lib": "7.3.7", + "estree-walker": "^3.0.3", + "synckit": "^0.8.5" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspell/strong-weak-map": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-7.3.7.tgz", + "integrity": "sha512-n+jRgwH0wU+HsfqgCGVzPmWnZl4SyhtvPxusKwXj6L/STGdt8IP2rYl1PFOtyvgjPjh8xXe/jRrq7zH07btiKA==", + "dev": true, + "engines": { + "node": ">=16" + } + }, "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", @@ -1425,6 +1851,26 @@ "node": ">=14" } }, + "node_modules/@pkgr/utils": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", + "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "fast-glob": "^3.3.0", + "is-glob": "^4.0.3", + "open": "^9.1.0", + "picocolors": "^1.0.0", + "tslib": "^2.6.0" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, "node_modules/@sinclair/typebox": { "version": "0.27.8", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", @@ -1539,6 +1985,12 @@ "@babel/types": "^7.20.7" } }, + "node_modules/@types/estree": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.2.tgz", + "integrity": "sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==", + "dev": true + }, "node_modules/@types/graceful-fs": { "version": "4.1.7", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.7.tgz", @@ -1588,6 +2040,12 @@ "integrity": "sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==", "dev": true }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, "node_modules/@types/node": { "version": "18.18.3", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.3.tgz", @@ -1947,6 +2405,44 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, + "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-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-timsort": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz", + "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==", + "dev": true + }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", @@ -1956,51 +2452,139 @@ "node": ">=8" } }, - "node_modules/babel-jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", - "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "node_modules/array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", "dev": true, "dependencies": { - "@jest/transform": "^29.7.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.6.3", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">= 0.4" }, - "peerDependencies": { - "@babel/core": "^7.8.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "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": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dev": true, "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", + "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/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/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" @@ -2078,6 +2662,27 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, + "node_modules/big-integer": { + "version": "1.6.51", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", + "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "dev": true, + "dependencies": { + "big-integer": "^1.6.44" + }, + "engines": { + "node": ">= 5.10.0" + } + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -2171,6 +2776,34 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/bundle-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", + "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", + "dev": true, + "dependencies": { + "run-applescript": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -2329,6 +2962,43 @@ "node": ">=0.8.0" } }, + "node_modules/clear-module": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/clear-module/-/clear-module-4.1.2.tgz", + "integrity": "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==", + "dev": true, + "dependencies": { + "parent-module": "^2.0.0", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clear-module/node_modules/parent-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-2.0.0.tgz", + "integrity": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==", + "dev": true, + "dependencies": { + "callsites": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/clear-module/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/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", @@ -2398,6 +3068,22 @@ "node": ">=14" } }, + "node_modules/comment-json": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.2.3.tgz", + "integrity": "sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==", + "dev": true, + "dependencies": { + "array-timsort": "^1.0.3", + "core-util-is": "^1.0.3", + "esprima": "^4.0.1", + "has-own-prop": "^2.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/comment-parser": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz", @@ -2440,6 +3126,37 @@ "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" } }, + "node_modules/configstore": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", + "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", + "dev": true, + "dependencies": { + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/yeoman/configstore?sponsor=1" + } + }, + "node_modules/configstore/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, "node_modules/constant-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", @@ -2457,6 +3174,27 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz", + "integrity": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==", + "dev": true, + "dependencies": { + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/create-jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", @@ -2498,6 +3236,234 @@ "node": ">= 8" } }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "dev": true, + "dependencies": { + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/crypto-random-string/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/cspell-dictionary": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-7.3.7.tgz", + "integrity": "sha512-mJ0h2BGxYEqb/1FxKD50WuufKhDaCaIk8pwZQryqazXQCvoTpla0yud3KO61Cke92za8z37Rfb+5xATlywEfaw==", + "dev": true, + "dependencies": { + "@cspell/cspell-pipe": "7.3.7", + "@cspell/cspell-types": "7.3.7", + "cspell-trie-lib": "7.3.7", + "fast-equals": "^4.0.3", + "gensequence": "^6.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/cspell-dictionary/node_modules/fast-equals": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-4.0.3.tgz", + "integrity": "sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==", + "dev": true + }, + "node_modules/cspell-glob": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-7.3.7.tgz", + "integrity": "sha512-DJX5wJ5dhcNzyycukZst+WtbIdpCLTL7DaKS0EKW/57QjzMwwMBgpsF89ufnreGHB8dHrPF85epF9qyOI1SRNg==", + "dev": true, + "dependencies": { + "micromatch": "^4.0.5" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/cspell-grammar": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-7.3.7.tgz", + "integrity": "sha512-4cyJ4Alq/wBGTctH7fNTbY9EZCihm11fbrGSYVe8w+msRNx6W8rugsMX009aHiw9zlvGrMAeTD08YFPnBVdfpA==", + "dev": true, + "dependencies": { + "@cspell/cspell-pipe": "7.3.7", + "@cspell/cspell-types": "7.3.7" + }, + "bin": { + "cspell-grammar": "bin.mjs" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/cspell-io": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-7.3.7.tgz", + "integrity": "sha512-zqGGllG/OM3Of7zaOELdrSoBpCyG9nJuSRCzLfKgnCG4g2zpoMfDZknJaY9VjZODHP99PvYWooF8E6kVxT34Fw==", + "dev": true, + "dependencies": { + "@cspell/cspell-service-bus": "7.3.7", + "node-fetch": "^2.7.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/cspell-lib": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-7.3.7.tgz", + "integrity": "sha512-KuFn0WTwmK50Ij1KVaXVuheleSOfv3oFIO3PfMuFg7llkfPfaRawF0b61da/EFGckU/hUc8uHRbBuGELlDo3tA==", + "dev": true, + "dependencies": { + "@cspell/cspell-bundled-dicts": "7.3.7", + "@cspell/cspell-pipe": "7.3.7", + "@cspell/cspell-resolver": "7.3.7", + "@cspell/cspell-types": "7.3.7", + "@cspell/dynamic-import": "7.3.7", + "@cspell/strong-weak-map": "7.3.7", + "clear-module": "^4.1.2", + "comment-json": "^4.2.3", + "configstore": "^6.0.0", + "cosmiconfig": "8.0.0", + "cspell-dictionary": "7.3.7", + "cspell-glob": "7.3.7", + "cspell-grammar": "7.3.7", + "cspell-io": "7.3.7", + "cspell-trie-lib": "7.3.7", + "fast-equals": "^5.0.1", + "find-up": "^6.3.0", + "gensequence": "^6.0.0", + "import-fresh": "^3.3.0", + "resolve-from": "^5.0.0", + "vscode-languageserver-textdocument": "^1.0.11", + "vscode-uri": "^3.0.7" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/cspell-lib/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/cspell-lib/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/cspell-lib/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/cspell-lib/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/cspell-lib/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/cspell-lib/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/cspell-lib/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/cspell-trie-lib": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-7.3.7.tgz", + "integrity": "sha512-Vv8TdTMZD3DE79SorTwn5NoWj8JD7DnYMeUK+5S6JDNLy4Ck+kTEPN6Ic9hvLAxuDmQjmoZI3TizrWvuCG66aA==", + "dev": true, + "dependencies": { + "@cspell/cspell-pipe": "7.3.7", + "@cspell/cspell-types": "7.3.7", + "gensequence": "^6.0.0" + }, + "engines": { + "node": ">=16" + } + }, "node_modules/date-fns": { "version": "2.30.0", "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", @@ -2560,13 +3526,200 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-browser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", + "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "dev": true, + "dependencies": { + "bundle-name": "^3.0.0", + "default-browser-id": "^3.0.0", + "execa": "^7.1.1", + "titleize": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "dev": true, + "dependencies": { + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser/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/default-browser/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/default-browser/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/default-browser/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/default-browser/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/default-browser/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/default-browser/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/default-browser/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/define-data-property": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.0.tgz", + "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", + "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-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/detect-newline": { @@ -2630,6 +3783,21 @@ "tslib": "^2.0.3" } }, + "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==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", @@ -2681,6 +3849,99 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/es-abstract": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.2.tgz", + "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", + "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.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.1", + "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-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "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.12.3", + "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.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + } + }, + "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", @@ -2768,6 +4029,113 @@ "eslint": ">=7.0.0" } }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.28.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", + "has": "^1.0.3", + "is-core-module": "^2.13.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/eslint-plugin-jest": { "version": "27.4.2", "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.4.2.tgz", @@ -3000,6 +4368,15 @@ "node": ">=4.0" } }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -3075,6 +4452,15 @@ "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", "dev": true }, + "node_modules/fast-equals": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz", + "integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/fast-glob": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", @@ -3208,6 +4594,15 @@ "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", "dev": true }, + "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/foreground-child": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", @@ -3270,6 +4665,48 @@ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "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/gensequence": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gensequence/-/gensequence-6.0.0.tgz", + "integrity": "sha512-8WwuywE9pokJRAcg2QFR/plk3cVPebSUqRPzpGQh3WQ0wIiHAw+HyOQj5IuHyUTQBHpBKFoB2JUMu9zT3vJ16Q==", + "dev": true, + "engines": { + "node": ">=16" + } + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -3288,6 +4725,21 @@ "node": "6.* || 8.* || >= 10.*" } }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", @@ -3321,6 +4773,22 @@ "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/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -3353,6 +4821,30 @@ "node": ">=10.13.0" } }, + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "dev": true, + "dependencies": { + "ini": "2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/globals": { "version": "13.22.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", @@ -3368,6 +4860,21 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "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", @@ -3388,6 +4895,18 @@ "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", @@ -3409,13 +4928,82 @@ "node": ">= 0.4.0" } }, + "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": "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": ">=8" + } + }, + "node_modules/has-own-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz", + "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "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/header-case": { @@ -3493,6 +5081,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/import-meta-resolve": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-3.0.0.tgz", + "integrity": "sha512-4IwhLhNNA8yy445rPjD/lWh++7hMDOml2eHtd58eG7h+qK3EryMuuRbsHGPikCoAgIkkDnckKfWSk2iDla/ejg==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -3536,12 +5134,68 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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-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-builtin-module": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", @@ -3557,6 +5211,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "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-core-module": { "version": "2.13.0", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", @@ -3569,6 +5235,36 @@ "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-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -3608,12 +5304,42 @@ "node": ">=0.10.0" } }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-mergeable-object": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.1.tgz", "integrity": "sha512-CPduJfuGg8h8vW74WOxHtHmtQutyQBzR+3MjQ6iDHIYdbOnm1YC7jv43SqCoU8OPGTJD4nibmiryA4kmogbGrA==", "dev": true }, + "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", @@ -3623,6 +5349,30 @@ "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-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", @@ -3632,6 +5382,34 @@ "node": ">=8" } }, + "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", @@ -3644,6 +5422,102 @@ "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-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-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-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "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-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-wsl/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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", @@ -4732,6 +6606,26 @@ "tslib": "^2.0.3" } }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", @@ -4770,20 +6664,102 @@ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "engines": { - "node": ">=0.10.0" + "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.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "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/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "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/object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" } }, - "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==", + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", "dev": true, "dependencies": { - "path-key": "^3.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/once": { @@ -4810,6 +6786,24 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/open": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", + "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "dev": true, + "dependencies": { + "default-browser": "^4.0.0", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/optionator": { "version": "0.9.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", @@ -5354,6 +7348,23 @@ "regexp-tree": "bin/regexp-tree" } }, + "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/regjsparser": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", @@ -5375,6 +7386,15 @@ "jsesc": "bin/jsesc" } }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -5514,6 +7534,21 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/run-applescript": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", + "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/run-con": { "version": "1.2.12", "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.12.tgz", @@ -5561,6 +7596,24 @@ "tslib": "^2.1.0" } }, + "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-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", @@ -5570,6 +7623,20 @@ "regexp-tree": "~0.1.1" } }, + "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/semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", @@ -5614,6 +7681,20 @@ "upper-case-first": "^2.0.2" } }, + "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", @@ -5644,6 +7725,20 @@ "url": "https://github.com/sponsors/ljharb" } }, + "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", @@ -5801,6 +7896,51 @@ "node": ">=8" } }, + "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": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -5927,6 +8067,22 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/synckit": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", + "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "dev": true, + "dependencies": { + "@pkgr/utils": "^2.3.1", + "tslib": "^2.5.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -5953,6 +8109,18 @@ "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", "dev": true }, + "node_modules/titleize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", + "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -5980,6 +8148,12 @@ "node": ">=8.0" } }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, "node_modules/tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", @@ -6075,6 +8249,39 @@ } } }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/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/tslib": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", @@ -6135,6 +8342,80 @@ "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/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, "node_modules/typescript": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", @@ -6154,6 +8435,36 @@ "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", "dev": true }, + "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/unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "dev": true, + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -6163,6 +8474,15 @@ "node": ">= 10.0.0" } }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/update-browserslist-db": { "version": "1.0.13", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", @@ -6250,6 +8570,18 @@ "spdx-expression-parse": "^3.0.0" } }, + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz", + "integrity": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==", + "dev": true + }, + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "dev": true + }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -6259,6 +8591,22 @@ "makeerror": "1.0.12" } }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -6274,6 +8622,41 @@ "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-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dev": true, + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -6328,6 +8711,18 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/xdg-basedir": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", + "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", diff --git a/packages/calcite-design-tokens/package.json b/packages/calcite-design-tokens/package.json index 01df4be836f..4df8dba7d5f 100644 --- a/packages/calcite-design-tokens/package.json +++ b/packages/calcite-design-tokens/package.json @@ -51,6 +51,7 @@ "test": "jest" }, "devDependencies": { + "@cspell/eslint-plugin": "^7.3.7", "@tokens-studio/sd-transforms": "0.8.7", "@types/jest": "29.5.5", "@types/node": "18.18.3", @@ -59,6 +60,7 @@ "concurrently": "8.2.1", "eslint": "8.50.0", "eslint-config-prettier": "8.10.0", + "eslint-plugin-import": "^2.28.1", "eslint-plugin-jest": "27.4.2", "eslint-plugin-jsdoc": "43.2.0", "eslint-plugin-prettier": "4.2.1", diff --git a/packages/calcite-design-tokens/support/run.ts b/packages/calcite-design-tokens/support/run.ts index e0498586449..1854a79f78e 100644 --- a/packages/calcite-design-tokens/support/run.ts +++ b/packages/calcite-design-tokens/support/run.ts @@ -10,9 +10,7 @@ const __dirname = dirname(__filename); /** * Get all themes defined int the tokens/$themes.json and generate a Style Dictionary output for each theme */ -const rawData = readFileSync(resolve(__dirname, '../src/$themes.json'), { encoding: "utf-8" }); +const rawData = readFileSync(resolve(__dirname, "../src/$themes.json"), { encoding: "utf-8" }); const data = JSON.parse(rawData); -getThemes(data).then((themes) => - Promise.all(themes.map((theme) => run("src", "dist", theme))) -); +getThemes(data).then((themes) => Promise.all(themes.map((theme) => run("src", "dist", theme)))); diff --git a/packages/calcite-design-tokens/support/token-transformer/format/scss.ts b/packages/calcite-design-tokens/support/token-transformer/format/scss.ts index afd217c5d16..87d769427fe 100644 --- a/packages/calcite-design-tokens/support/token-transformer/format/scss.ts +++ b/packages/calcite-design-tokens/support/token-transformer/format/scss.ts @@ -7,6 +7,7 @@ const regexFileNameWithoutExtension = /\w+(?=\.\w+$)/gi; /** * Exports SCSS style formats + * * @param {object} fileInfo the file object * @param {Dictionary} fileInfo.dictionary the Style Dictionary object * @param {File} fileInfo.file information about the file to be generated diff --git a/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.ts b/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.ts index 631af1967aa..53cf311284d 100644 --- a/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.ts +++ b/packages/calcite-design-tokens/support/token-transformer/parse/expandComposites.ts @@ -13,6 +13,7 @@ import { convertTokenToStyleDictionaryFormat } from "../utils/convertTokenToStyl /** * Figma Token Studio creates an odd type of composite token where the "value" may contain an object of "key: value" pairs rather than a sting. * Here we will lift these composite tokens up to match the Style Dictionary format. + * * @param {DeepKeyTokenMap} dictionary the raw JSON object in the token files. We will assume this is a token object generated by Figma Token Studio and may require composite tokens to be expanded. * @param {string} filePath the absolute file path to the JSON token file. * @param {TransformOptions} transformOpts the options passed in from the Style Dictionary config and runner diff --git a/packages/calcite-design-tokens/support/token-transformer/sd-run.ts b/packages/calcite-design-tokens/support/token-transformer/sd-run.ts index f3cd8a8cd7e..4598d02bf2f 100644 --- a/packages/calcite-design-tokens/support/token-transformer/sd-run.ts +++ b/packages/calcite-design-tokens/support/token-transformer/sd-run.ts @@ -11,6 +11,7 @@ import { Theme } from "./getThemes.js"; /** * Style Dictionary runner configuration overrides. + * * @param {string} tokenDir the directory containing design token files * @param {string} buildPath the directory to write generated assets to * @param {Theme} theme the theme configuration to use to generate the platform asset files diff --git a/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts b/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts index eb641d8bf38..5e4c7817a32 100644 --- a/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts +++ b/packages/calcite-design-tokens/support/token-transformer/transform/nameCamelCase.ts @@ -5,6 +5,7 @@ import { parseTokenPath } from "../utils/parseTokenPath.js"; /** * Convert token name to camel case + * * @param {TransformedToken} token Style Dictionary token object * @param {Options} options Style Dictionary format options * @returns {string} an updated name for the token which will be used for the final output diff --git a/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts b/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts index 29056bbb77b..a0e9d6169c9 100644 --- a/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts +++ b/packages/calcite-design-tokens/support/token-transformer/transform/nameKebabCase.ts @@ -5,6 +5,7 @@ import { parseTokenPath } from "../utils/parseTokenPath.js"; /** * convert token name to kebab case + * * @param {TransformedToken} token Style Dictionary token object * @param {Options} options Style Dictionary format options * @returns {string} an updated name for the token which will be used for the final output diff --git a/packages/calcite-design-tokens/support/token-transformer/utils/compositeTokens.ts b/packages/calcite-design-tokens/support/token-transformer/utils/compositeTokens.ts index dfb2bb469a9..45ef71e2c26 100644 --- a/packages/calcite-design-tokens/support/token-transformer/utils/compositeTokens.ts +++ b/packages/calcite-design-tokens/support/token-transformer/utils/compositeTokens.ts @@ -37,6 +37,7 @@ const typeMaps = { /** * Get type from type map + * * @param {string} key type * @param {DesignToken} compositeToken a Style Dictionary token * @returns {string} approved token type @@ -45,6 +46,7 @@ export const getType = (key: string, compositeToken: DesignToken): string => typ /** * This is a recursive function to dig into composite tokens and lift up the token values in a Style Dictionary format. + * * @param {DesignToken} compositeToken the composite token object * @param {boolean} isShadow is a drop shadow? * @param {Function} handleValue a function to determine how the final token value string should be passed to Style Dictionary diff --git a/packages/calcite-design-tokens/support/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts b/packages/calcite-design-tokens/support/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts index 54e09e22c75..e08a5e34790 100644 --- a/packages/calcite-design-tokens/support/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts +++ b/packages/calcite-design-tokens/support/token-transformer/utils/convertTokenToStyleDictionaryFormat.ts @@ -1,6 +1,7 @@ /** * Some tokens defined in Figma Token Studio do not used the common { [variable.name] } for token references. * This function loops over each value, finds custom token references and converts them to the expected Style Dictionary format. + * * @param {RegExp} customReferenceTokenIndicator a regex to find the token references * @returns {Function} to convert the token to the reference format expected by Style Dictionary "{ [variable.name] }" */ diff --git a/packages/calcite-design-tokens/support/token-transformer/utils/matchList.ts b/packages/calcite-design-tokens/support/token-transformer/utils/matchList.ts index 0ebfe185432..429d23426ef 100644 --- a/packages/calcite-design-tokens/support/token-transformer/utils/matchList.ts +++ b/packages/calcite-design-tokens/support/token-transformer/utils/matchList.ts @@ -1,5 +1,6 @@ /** * Find the string in a list + * * @param {string} str the string to find in the list * @param {string[]} list the list of strings to match with the provided string * @param {RegExp} regexExclude a regular expression defining strings that should always be excluded diff --git a/packages/calcite-design-tokens/support/token-transformer/utils/parseName.ts b/packages/calcite-design-tokens/support/token-transformer/utils/parseName.ts index 83cfa3ef24d..3779e9e0e3b 100644 --- a/packages/calcite-design-tokens/support/token-transformer/utils/parseName.ts +++ b/packages/calcite-design-tokens/support/token-transformer/utils/parseName.ts @@ -2,6 +2,7 @@ import { paramCase } from "change-case"; /** * Used to set the file name for the generated theme file. + * * @param {string} name the file name passed from the themes object * @param {string} prefix an optional prefix for each file name * @returns {string} a kebab-case file name from the passed name, optionally starting with a prefix diff --git a/packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts b/packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts index 776552a618d..2735715bd04 100644 --- a/packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts +++ b/packages/calcite-design-tokens/support/token-transformer/utils/parseTokenPath.ts @@ -1,6 +1,7 @@ /** * Replaces the word "color" with "ui" when it is the first value in the path and removes the word "default" from the final token names. * This puts generated tokens in alignment with the theme variable names in Calcite-Colors + * * @param {string[]} path the path to each token value in the Style Dictionary token object * @returns {string[]} an updated token path */ From 37669a08afbcb25e81d97b119010c0d45c307949 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 4 Oct 2023 10:42:15 -0700 Subject: [PATCH 689/696] ci: fix design-token dev dependencies # Conflicts: # package-lock.json # packages/calcite-design-tokens/package.json # packages/calcite-design-tokens/support/token-transformer/sd-run.ts --- package.json | 19 ++++++++------- packages/calcite-design-tokens/.gitignore | 18 -------------- packages/calcite-design-tokens/package.json | 24 ------------------- .../support/token-transformer/sd-run.ts | 5 +++- 4 files changed, 15 insertions(+), 51 deletions(-) delete mode 100644 packages/calcite-design-tokens/.gitignore diff --git a/package.json b/package.json index ae83a29574f..3dea99d58c6 100644 --- a/package.json +++ b/package.json @@ -38,15 +38,16 @@ "@storybook/html": "6.5.16", "@storybook/storybook-deployer": "2.8.16", "@storybook/testing-library": "0.2.1", + "@tokens-studio/sd-transforms": "0.8.2", "@types/dedent": "0.7.0", "@types/eslint": "8.40.2", "@types/estree": "1.0.2", - "@types/jest": "27.0.3", "@types/jest-axe": "3.5.6", + "@types/jest": "27.0.3", "@types/lodash-es": "4.17.9", "@types/node": "^18.0.0", - "@types/react": "^16.7.6", "@types/react-dom": "^16.0.9", + "@types/react": "^16.7.6", "@types/semver": "7.5.2", "@types/shell-quote": "1.7.1", "@types/sortablejs": "1.15.2", @@ -57,15 +58,15 @@ "autoprefixer": "10.4.16", "axe-core": "4.7.2", "babel-loader": "8.3.0", + "change-case": "4.1.2", "cheerio": "1.0.0-rc.10", "chokidar": "3.5.3", "chromatic": "6.19.9", "concurrently": "7.6.0", "conventional-changelog-conventionalcommits": "5.0.0", - "cpy": "10.0.0", "cpy-cli": "5.0.0", + "cpy": "10.0.0", "dedent": "0.7.0", - "eslint": "8.44.0", "eslint-config-prettier": "8.8.0", "eslint-plugin-import": "2.27.5", "eslint-plugin-jest": "27.2.3", @@ -73,10 +74,11 @@ "eslint-plugin-prettier": "4.2.1", "eslint-plugin-react": "7.33.2", "eslint-plugin-unicorn": "46.0.1", + "eslint": "8.44.0", "husky": "8.0.3", - "jest": "27.4.5", "jest-axe": "7.0.1", "jest-cli": "27.4.5", + "jest": "27.4.5", "lerna": "7.1.5", "lint-staged": "13.2.3", "markdownlint-cli": "0.34.0", @@ -84,19 +86,20 @@ "prettier": "2.8.8", "puppeteer": "10.0.0", "quicktype-core": "23.0.75", - "react": "^16.13.1", "react-dom": "^16.13.1", + "react": "^16.13.1", "rimraf": "5.0.1", "rollup": "3.26.0", "semver": "7.5.4", "shell-quote": "1.8.1", "stencil-eslint-core": "0.3.1", - "storybook": "6.5.16", "storybook-addon-themes": "6.1.0", "storybook-rtl-addon": "0.3.3", - "stylelint": "15.10.3", + "storybook": "6.5.16", + "style-dictionary": "3.7.1", "stylelint-config-recommended-scss": "12.0.0", "stylelint-use-logical-spec": "5.0.0", + "stylelint": "15.10.3", "tailwindcss": "3.3.3", "ts-jest": "27.1.5", "ts-node": "10.9.1", diff --git a/packages/calcite-design-tokens/.gitignore b/packages/calcite-design-tokens/.gitignore deleted file mode 100644 index 75e794e0d04..00000000000 --- a/packages/calcite-design-tokens/.gitignore +++ /dev/null @@ -1,18 +0,0 @@ -# Logs -logs -*.log -**/*.bak -**/*.js - -# Dependency directory -# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- -node_modules - -# macOS metadata -.DS_Store - -# Node Package distribution -dist - -# Transformation Directory -tools/token-transformer/**/*.js diff --git a/packages/calcite-design-tokens/package.json b/packages/calcite-design-tokens/package.json index 4df8dba7d5f..f9942e1ebd0 100644 --- a/packages/calcite-design-tokens/package.json +++ b/packages/calcite-design-tokens/package.json @@ -49,29 +49,5 @@ "lint:ts": "eslint --ext .ts,.tsx --fix . && prettier --write \"**/*.ts?(x)\" >/dev/null", "lint": "concurrently npm:lint:*", "test": "jest" - }, - "devDependencies": { - "@cspell/eslint-plugin": "^7.3.7", - "@tokens-studio/sd-transforms": "0.8.7", - "@types/jest": "29.5.5", - "@types/node": "18.18.3", - "@typescript-eslint/eslint-plugin": "5.62.0", - "change-case": "4.1.2", - "concurrently": "8.2.1", - "eslint": "8.50.0", - "eslint-config-prettier": "8.10.0", - "eslint-plugin-import": "^2.28.1", - "eslint-plugin-jest": "27.4.2", - "eslint-plugin-jsdoc": "43.2.0", - "eslint-plugin-prettier": "4.2.1", - "eslint-plugin-unicorn": "46.0.1", - "jest": "29.7.0", - "markdownlint-cli": "0.34.0", - "prettier": "2.8.8", - "rimraf": "5.0.5", - "style-dictionary": "3.8.0", - "ts-jest": "29.1.1", - "ts-node": "10.9.1", - "typescript": "5.2.2" } } diff --git a/packages/calcite-design-tokens/support/token-transformer/sd-run.ts b/packages/calcite-design-tokens/support/token-transformer/sd-run.ts index cd9ecbc51bb..f2e152513fd 100644 --- a/packages/calcite-design-tokens/support/token-transformer/sd-run.ts +++ b/packages/calcite-design-tokens/support/token-transformer/sd-run.ts @@ -38,7 +38,10 @@ export const run = async ( // Here we are registering the Transforms provided by Token Studio // https://github.com/tokens-studio/sd-transforms - await registerTransforms(StyleDictionary, { expand: false }); + // @ts-expect-error - @token-studio does not keep their types up to date. + await registerTransforms(StyleDictionary, { + expand: false, + }); // Register custom formatter https://amzn.github.io/style-dictionary/#/formats?id=custom-formats StyleDictionary.registerFormat({ From 2c331b6ece73446244d9031f491215dd01664dde Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 4 Oct 2023 10:44:08 -0700 Subject: [PATCH 690/696] ci: update release-please for design-tokens --- .release-please-manifest.json | 1 + release-please-config.json | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9175208a9de..a65330cf73b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,6 @@ { "packages/calcite-components": "1.9.0", "packages/calcite-components-react": "1.9.0", + "packages/calcite-design-tokens": "1.0.0", "packages/eslint-plugin-calcite-components": "0.2.2" } diff --git a/release-please-config.json b/release-please-config.json index afdac6ce85e..28e2262a17d 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -11,6 +11,9 @@ "packages/calcite-components-react": { "component": "@esri/calcite-components-react" }, + "packages/calcite-design-tokens": { + "component": "@esri/calcite-design-tokens" + }, "packages/eslint-plugin-calcite-components": { "component": "@esri/eslint-plugin-calcite-components" } From ed176b612b18f24c24654c0582fc99de2f031410 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Wed, 4 Oct 2023 10:46:32 -0700 Subject: [PATCH 691/696] ci: add design-tokens to syncLinkedPackageVersions --- support/syncLinkedPackageVersions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/syncLinkedPackageVersions.ts b/support/syncLinkedPackageVersions.ts index 8a24abf1516..3429689ed2f 100644 --- a/support/syncLinkedPackageVersions.ts +++ b/support/syncLinkedPackageVersions.ts @@ -1,4 +1,4 @@ -(async function(): Promise { +(async function (): Promise { try { const childProcess = await import("child_process"); const { promisify } = await import("util"); @@ -11,7 +11,7 @@ const LINKED_VERSIONS_HEAD_PACKAGE = "@esri/calcite-components"; // next releases will be blocked if HEAD's version is less than a TRACKING package's version - const LINKED_VERSIONS_TRACKING_PACKAGES = ["@esri/calcite-components-react"]; + const LINKED_VERSIONS_TRACKING_PACKAGES = ["@esri/calcite-components-react", "@esri/calcite-design-tokens"]; interface PackageData { name: string; From d03cf331aa3a9d3e66761ab9f5c65f9d5ef01b7f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 5 Oct 2023 09:17:43 -0700 Subject: [PATCH 692/696] fix: delete unnecessary workflows --- .github/workflows/sync_from_airtable.yml | 371 ----------------------- .github/workflows/sync_to_airtable.yml | 187 ------------ 2 files changed, 558 deletions(-) delete mode 100644 .github/workflows/sync_from_airtable.yml delete mode 100644 .github/workflows/sync_to_airtable.yml diff --git a/.github/workflows/sync_from_airtable.yml b/.github/workflows/sync_from_airtable.yml deleted file mode 100644 index 153b8b08768..00000000000 --- a/.github/workflows/sync_from_airtable.yml +++ /dev/null @@ -1,371 +0,0 @@ -name: Sync from Airtable - -on: - repository_dispatch: - types: [airtable-update] - -env: - DATA: ${{ toJSON(github.event.client_payload.data) }} - NUMBER: ${{ github.event.client_payload.number }} - TITLE: ${{ github.event.client_payload.title }} - OWNER: "Esri" - REPO: "calcite-design-tokens" - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.client_payload.number }} - cancel-in-progress: true - -jobs: - existing_issue: - name: Find Existing Issue - runs-on: ubuntu-latest - outputs: - github_issue: ${{ steps.find-existing-issue.outputs.result }} - steps: - - uses: actions/github-script@v6 - id: find-existing-issue - env: - NUMBER: "${{env.NUMBER}}" - OWNER: "${{env.OWNER}}" - REPO: "${{env.REPO}}" - TITLE: "${{env.TITLE}}" - ACTION: "${{github.event.client_payload.action}}" - with: - result-encoding: string - script: | - const { NUMBER, OWNER, REPO, ACTION, TITLE } = process.env; - try { - const issue = await github.rest.issues.get({ - issue_number: NUMBER, - owner: OWNER, - repo: REPO, - }); - - return issue.status === 200 ? JSON.stringify(issue) : ''; - } catch (error) { - return ''; - } - - assigned_unassigned: - name: Assign or Unassign - needs: existing_issue - if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'assigned/unassigned') - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - env: - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} - DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} - with: - script: | - const { DATA, NUMBER, OWNER, REPO, } = process.env; - const { assignees } = JSON.parse(DATA); - if (assignees) { - const issue = JSON.parse(process.env.ISSUE); - const ghAssignees = issue.data.assignees.map((assignee) => assignee.login); - const { removeAssignees, addAssignees } = assignees.reduce((acc, labelName, idx) => { - const currentIdx = acc.priorAssignees.indexOf(labelName); - - if (currentIdx === -1) { - acc.addAssignees.push(labelName); - } else { - // Keep the label indices from the priorLabel list - acc.keepAssignees[currentIdx] = labelName; - } - - if (idx === labels.length - 1) { - // We are in our final loop. Remove empty indices from keepAssignees and set those priorAssignees for removal. - acc.keepAssignees = acc.keepAssignees.filter((label, keepLabelIdx) => { - if (label === undefined) { - acc.removeAssignees.push(acc.priorAssignees[keepLabelIdx]); - return false; - } - - return true; - }) - } - - return acc; - }, { keepAssignees: new Array(issue.data.assignees.length), removeAssignees: [], addAssignees: [], priorAssignees: issue.data.assignees.map((assignee) => assignee.login)}); - - if (addAssignees.length > 0) { - await github.rest.issues.addAssignees({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - assignees: addAssignees - }); - core.info('Assignees Added: ', addAssignees.join(',')) - } - if (removeAssignees.length > 0) { - await github.rest.issues.removeAssignees({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - assignees: removeAssignees - }); - core.info('Assignees Removed: ', removeAssignees.join(',')) - } - } - - labeled_unlabeled: - name: Labeled or Unlabeled - needs: existing_issue - if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'labeled/unlabeled') - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - env: - DATA: ${{ fromJSON(env.DATA) }} - ISSUE: ${{ needs.existing_issue.outputs.github_issue }} - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} - with: - script: | - const { DATA, NUMBER, ISSUE, OWNER, REPO } = process.env; - const { labels } = JSON.parse(DATA); - if (labels) { - const issue = JSON.parse(process.env.ISSUE); - const { removeLabels, addLabels } = labels.reduce((acc, labelName, idx) => { - const currentIdx = acc.priorLabels.indexOf(labelName); - - if (currentIdx === -1) { - acc.addLabels.push(labelName); - } else { - // Keep the label indices from the priorLabel list - acc.keepLabels[currentIdx] = labelName; - } - - if (idx === labels.length - 1) { - // We are in our final loop. Remove empty indices from keepLabels and set those priorLabels for removal. - acc.keepLabels = acc.keepLabels.filter((label, keepLabelIdx) => { - if (label === undefined) { - acc.removeLabels.push(acc.priorLabels[keepLabelIdx]); - return false; - } - return true; - }) - } - - return acc; - - }, { keepLabels: new Array(issue.data.labels.length), removeLabels: [], addLabels: [], priorLabels: issue.data.labels.map((label) => label.name)}); - - if (addLabels.length > 0) { - await Promise.all(addLabels.map(async (label) => { - try { - await github.rest.issues.getLabel({ - owner: OWNER, - repo: REPO, - name: label - }); - await github.rest.issues.addLabels({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - labels: label - }); - core.info(`Label added: ${label})`) - } catch (error) { - try { - await github.rest.issues.createLabel({ - owner: OWNER, - repo: REPO, - name: label - }); - core.info(`Label created: ${label}`) - await github.rest.issues.addLabels({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - labels: label - }); - core.info(`Label added: ${label}`) - } catch (error) { - throw new Error(error); - } - } - })) - - try { - await github.rest.issues.addLabels({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - labels: addLabels - }) - core.info(`Labels added: ${addLabels}`) - } catch (error) { - throw new Error(error); - } - } - - if (removeLabels.length > 0) { - try { - await Promise.all(removeLabels.map(async (name) => { - await github.rest.issues.removeLabel({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - name - }); - core.info(`Remove Label: ${name}`) - })); - } catch (err) { - throw new Error(err); - } - } - } - - milestoned_demilestoned: - name: Milestoned or Demilestoned - needs: existing_issue - if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'milestoned/demilestoned') - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - env: - DATA: ${{ fromJSON(env.DATA) }} - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} - with: - script: | - const { DATA, NUMBER, OWNER, REPO } = process.env; - const { milestone } = JSON.parse(DATA); - const repoName = `${OWNER}/${REPO}`; - try { - if (milestone) { - const { repo, milestone_number } = milestone; - if (repoName === repo) { - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - milestone: milestone_number || null, - }); - core.info(`Issue ${ NUMBER }'s Milestone updated to ${ milestone_number }`) - } else { - throw new Error(`This milestone only exists in ${milestone.repo}.`) - } - } else { - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - milestone: null, - }); - core.info(`Issue ${ NUMBER }'s Milestone updated to 'null'`) - } - } catch (error) { - throw new Error(error); - } - - open_closed: - name: Opened, Reopened, or Closed - needs: existing_issue - if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'opened/closed') - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - env: - DATA: ${{ fromJSON(env.DATA) }} - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} - with: - script: | - const { DATA, NUMBER, OWNER, REPO } = process.env; - const { state } = JSON.parse(DATA); - - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - state, - }); - - edited: - name: Edited - needs: existing_issue - if: needs.existing_issue.outputs.github_issue != '' && fromJSON(needs.existing_issue.outputs.github_issue).status == 200 && (github.event.client_payload.action == 'edited') - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - env: - DATA: ${{ fromJSON(env.DATA) }} - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} - with: - script: | - const { DATA, NUMBER, OWNER, REPO, ISSUE } = process.env; - const issue = JSON.parse(ISSUE); - const { body, title } = JSON.parse(DATA); - - if (issue.title === title && issue.body === body) { - return true; - } - - await github.rest.issues.update({ - owner: OWNER, - repo: REPO, - issue_number: NUMBER, - body, - title, - }); - new_issue: - name: Create New Issue - needs: existing_issue - if: needs.existing_issue.outputs.github_issue == '' - runs-on: ubuntu-latest - steps: - - uses: actions/github-script@v6 - env: - DATA: ${{ fromJSON(env.DATA) }} - NUMBER: ${{env.NUMBER}} - OWNER: ${{env.OWNER}} - REPO: ${{env.REPO}} - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const { DATA, NUMBER, OWNER, REPO, WEBHOOK, SECRET } = process.env; - const data = JSON.parse(DATA); - const issueCreateObject = { - owner: OWNER, - repo: REPO, - assignees: data.assignees, - body: data.body, - labels: data.labels, - milestone: Number(data.milestone) || null, - title: data.title - }; - - try { - const newIssue = await github.rest.issues.create(issueCreateObject); - - /* Send new issue number back to Airtable */ - await fetch(WEBHOOK, { - body: { - action: 'opened', - data: JSON.stringify(newIssue), - owner: OWNER, - repo: REPO, - number: `${newIssue.number}`, - secret: SECRET, - title: newIssue.title, - }, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - } catch (err) { - core.info(JSON.stringify(issueCreateObject, null, 4)) - throw new Error(err) - } diff --git a/.github/workflows/sync_to_airtable.yml b/.github/workflows/sync_to_airtable.yml deleted file mode 100644 index 5a5f126bea9..00000000000 --- a/.github/workflows/sync_to_airtable.yml +++ /dev/null @@ -1,187 +0,0 @@ -name: Sync to Airtable - -on: - issues: - types: [assigned, closed, demilestoned, edited, labeled, milestoned, opened, reopened, unassigned, unlabeled] - -jobs: - issue_assigned: - runs-on: ubuntu-latest - if: github.event.action == 'assigned' || github.event.action == 'unassigned' - steps: - - name: Set Data - id: set-assigned-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const { action, issue, repository } = context.payload; - const body = JSON.stringify({ - action, - data: JSON.stringify({ assignees: issue.assignees }), - owner: repository.owner.login, - repo: repository.name, - number: issue.number.toString(), - secret: process.env.SECRET, - title: issue.title, - }); - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - issue_closed: - runs-on: ubuntu-latest - if: github.event.action == 'closed' - steps: - - name: Set Data - id: set-closed-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const { action, issue, repository } = context.payload; - const body = JSON.stringify({ - action, - data: issue.closed_at, - owner: repository.owner.login, - repo: repository.name, - number: issue.number.toString(), - secret: process.env.SECRET, - title: issue.title, - }); - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - issue_milestoned: - runs-on: ubuntu-latest - if: github.event.action == 'demilestoned' || github.event.action == 'milestoned' - steps: - - name: Set Data - id: set-demilestoned-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const { action, issue, repository } = context.payload; - const body = JSON.stringify({ - action, - data: JSON.stringify(issue.milestone || null), - owner: repository.owner.login, - repo: repository.name, - number: issue.number.toString(), - secret: process.env.SECRET, - title: issue.title, - }); - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - issue_edited: - runs-on: ubuntu-latest - if: github.event.action == 'edited' - steps: - - name: Set Data - id: set-edited-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const { action, issue, changes, repository } = context.payload; - const body = JSON.stringify({ - action, - changes: JSON.stringify(changes || null), - data: JSON.stringify(Object.keys(changes).reduce((acc, key) => { - acc[key] = issue[key] - return acc; - }, {})), - owner: repository.owner.login, - repo: repository.name, - number: issue.number.toString(), - secret: process.env.SECRET, - title: changes['title'] - ? changes['title'].from - : issue.title, - }); - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - issue_labeled: - runs-on: ubuntu-latest - if: github.event.action == 'labeled' || github.event.action == 'unlabeled' - steps: - - name: Set Data - id: set-labeled-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const { action, issue, repository } = context.payload; - const body = JSON.stringify({ - action, - data: JSON.stringify({labels: issue.labels}), - owner: repository.owner.login, - repo: repository.name, - number: issue.number.toString(), - secret: process.env.SECRET, - title: issue.title, - }); - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); - issue_opened: - runs-on: ubuntu-latest - if: github.event.action == 'opened' || github.event.action == 'reopened' - steps: - - name: Set Data - id: set-opened-data - uses: actions/github-script@v6 - env: - SECRET: ${{ secrets.AIRTABLE_KEY }} - WEBHOOK: ${{ secrets.AIRTABLE_WEBHOOK }} - with: - script: | - const { action, issue, repository } = context.payload; - const body = JSON.stringify({ - action, - data: JSON.stringify(issue), - owner: repository.owner.login, - repo: repository.name, - number: issue.number.toString(), - secret: process.env.SECRET, - title: issue.title, - }); - return fetch(process.env.WEBHOOK, { - body, - headers: { - "Content-Type": "application/json" - }, - method: "POST" - }); From c309b233cf58b84b58f36be7e3ff29cfc6fe320b Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 5 Oct 2023 12:34:45 -0700 Subject: [PATCH 693/696] fix: resolve dependency modules within monorepo --- package-lock.json | 747 +++++++++++++++++- .../token-transformer/format/scss.test.ts | 58 -- .../token-transformer/utils/sortAllTokens.ts | 4 +- 3 files changed, 741 insertions(+), 68 deletions(-) delete mode 100644 packages/calcite-design-tokens/support/token-transformer/format/scss.test.ts diff --git a/package-lock.json b/package-lock.json index 6854411ac70..e9d2fb5fe86 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,6 +25,7 @@ "@storybook/html": "6.5.16", "@storybook/storybook-deployer": "2.8.16", "@storybook/testing-library": "0.2.1", + "@tokens-studio/sd-transforms": "0.8.2", "@types/dedent": "0.7.0", "@types/eslint": "8.40.2", "@types/estree": "1.0.2", @@ -44,6 +45,7 @@ "autoprefixer": "10.4.16", "axe-core": "4.7.2", "babel-loader": "8.3.0", + "change-case": "4.1.2", "cheerio": "1.0.0-rc.10", "chokidar": "3.5.3", "chromatic": "6.19.9", @@ -81,6 +83,7 @@ "storybook": "6.5.16", "storybook-addon-themes": "6.1.0", "storybook-rtl-addon": "0.3.3", + "style-dictionary": "3.7.1", "stylelint": "15.10.3", "stylelint-config-recommended-scss": "12.0.0", "stylelint-use-logical-spec": "5.0.0", @@ -3098,10 +3101,8 @@ "link": true }, "node_modules/@esri/calcite-design-tokens": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@esri/calcite-design-tokens/-/calcite-design-tokens-1.0.0.tgz", - "integrity": "sha512-iO4tj5aWZwGFRlaEz+XcR8EWjBU8aIJDNtSVfpF0lUFaEEvk+Cic/Zq0wjTuZElCKWiKQkat7YghZVuXgQ8wQw==", - "dev": true + "resolved": "packages/calcite-design-tokens", + "link": true }, "node_modules/@esri/calcite-ui-icons": { "version": "3.24.6", @@ -9192,6 +9193,145 @@ "@testing-library/dom": ">=7.21.4" } }, + "node_modules/@tokens-studio/sd-transforms": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.2.tgz", + "integrity": "sha512-X++MFWn3NaLOgmN1cHSW41ER9Xq8w8ioCM8+K2OjXYbPWKdPI18zFQf9ZxGcKpz/AxCs5zV2v/ZdvX5V3IfPSA==", + "dev": true, + "dependencies": { + "@tokens-studio/types": "^0.2.1", + "color2k": "^2.0.1", + "colorjs.io": "^0.4.3", + "expr-eval": "^2.0.2", + "postcss-calc-ast-parser": "^0.1.4", + "style-dictionary": "^3.7.2" + }, + "engines": { + "node": ">=15.14.0" + } + }, + "node_modules/@tokens-studio/sd-transforms/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/@tokens-studio/sd-transforms/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/@tokens-studio/sd-transforms/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/@tokens-studio/sd-transforms/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/@tokens-studio/sd-transforms/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/@tokens-studio/sd-transforms/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@tokens-studio/sd-transforms/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/@tokens-studio/sd-transforms/node_modules/style-dictionary": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.8.0.tgz", + "integrity": "sha512-wHlB/f5eO3mDcYv6WtOz6gvQC477jBKrwuIXe+PtHskTCBsJdAOvL8hCquczJxDui2TnwpeNE+2msK91JJomZg==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.2", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.1" + }, + "bin": { + "style-dictionary": "bin/style-dictionary" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@tokens-studio/sd-transforms/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/@tokens-studio/types": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.5.tgz", + "integrity": "sha512-pJ0zWxGnEjca4dznFIHC9/oXuovu3DKHUhLDNJVzTRZEVXhWkIRIUbjDwIRihxBr39c776W+3thYvWMgChT0Rw==", + "dev": true + }, "node_modules/@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", @@ -12655,6 +12795,17 @@ } ] }, + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, "node_modules/capture-exit": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", @@ -12700,6 +12851,26 @@ "node": ">=4" } }, + "node_modules/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -13317,6 +13488,12 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, + "node_modules/color2k": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", + "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==", + "dev": true + }, "node_modules/colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", @@ -13329,6 +13506,12 @@ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true }, + "node_modules/colorjs.io": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.5.tgz", + "integrity": "sha512-yCtUNCmge7llyfd/Wou19PMAcf5yC3XXhgFoAh6zsO2pGswhUPBaaUh8jzgHnXtXuZyFKzXZNAnyF5i+apICow==", + "dev": true + }, "node_modules/columnify": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", @@ -13707,6 +13890,17 @@ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, "node_modules/constants-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", @@ -17487,6 +17681,12 @@ "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", "dev": true }, + "node_modules/expr-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", + "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", + "dev": true + }, "node_modules/express": { "version": "4.18.2", "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", @@ -19635,6 +19835,16 @@ "he": "bin/he" } }, + "node_modules/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/highlight.js": { "version": "10.7.3", "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", @@ -30138,6 +30348,16 @@ "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", "dev": true }, + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", @@ -30408,6 +30628,24 @@ "node": "^10 || ^12 || >=14" } }, + "node_modules/postcss-calc-ast-parser": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", + "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^3.3.1" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/postcss-calc-ast-parser/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, "node_modules/postcss-flexbugs-fixes": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz", @@ -33662,6 +33900,17 @@ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true }, + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, "node_modules/serialize-javascript": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", @@ -33957,6 +34206,16 @@ "npm": ">= 3.0.0" } }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -35056,6 +35315,122 @@ "node": ">=4" } }, + "node_modules/style-dictionary": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.1.tgz", + "integrity": "sha512-yYU9Z/J8Znj9T9oJVjo8VOYamrOxv0UbBKPjhSt+PharxrhyQCM4RWb71fgEfv2pK9KO8G83/0ChDNQZ1mn0wQ==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.0", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.1" + }, + "bin": { + "style-dictionary": "bin/style-dictionary" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/style-dictionary/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/style-dictionary/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/style-dictionary/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/style-dictionary/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/style-dictionary/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/style-dictionary/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/style-dictionary/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/style-dictionary/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/style-loader": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", @@ -36569,6 +36944,12 @@ "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", "dev": true }, + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", + "dev": true + }, "node_modules/titleize": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", @@ -38109,6 +38490,24 @@ "node": ">=8" } }, + "node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -40489,6 +40888,9 @@ "react-dom": ">=16.7" } }, + "packages/calcite-design-tokens": { + "version": "1.0.0" + }, "packages/eslint-plugin-calcite-components": { "name": "@esri/eslint-plugin-calcite-components", "version": "0.2.3-next.4", @@ -42727,10 +43129,7 @@ } }, "@esri/calcite-design-tokens": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@esri/calcite-design-tokens/-/calcite-design-tokens-1.0.0.tgz", - "integrity": "sha512-iO4tj5aWZwGFRlaEz+XcR8EWjBU8aIJDNtSVfpF0lUFaEEvk+Cic/Zq0wjTuZElCKWiKQkat7YghZVuXgQ8wQw==", - "dev": true + "version": "file:packages/calcite-design-tokens" }, "@esri/calcite-ui-icons": { "version": "3.24.6", @@ -47291,6 +47690,111 @@ "dev": true, "requires": {} }, + "@tokens-studio/sd-transforms": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/@tokens-studio/sd-transforms/-/sd-transforms-0.8.2.tgz", + "integrity": "sha512-X++MFWn3NaLOgmN1cHSW41ER9Xq8w8ioCM8+K2OjXYbPWKdPI18zFQf9ZxGcKpz/AxCs5zV2v/ZdvX5V3IfPSA==", + "dev": true, + "requires": { + "@tokens-studio/types": "^0.2.1", + "color2k": "^2.0.1", + "colorjs.io": "^0.4.3", + "expr-eval": "^2.0.2", + "postcss-calc-ast-parser": "^0.1.4", + "style-dictionary": "^3.7.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" + } + }, + "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 + }, + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.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 + }, + "style-dictionary": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.8.0.tgz", + "integrity": "sha512-wHlB/f5eO3mDcYv6WtOz6gvQC477jBKrwuIXe+PtHskTCBsJdAOvL8hCquczJxDui2TnwpeNE+2msK91JJomZg==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.2", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.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" + } + } + } + }, + "@tokens-studio/types": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@tokens-studio/types/-/types-0.2.5.tgz", + "integrity": "sha512-pJ0zWxGnEjca4dznFIHC9/oXuovu3DKHUhLDNJVzTRZEVXhWkIRIUbjDwIRihxBr39c776W+3thYvWMgChT0Rw==", + "dev": true + }, "@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", @@ -50013,6 +50517,17 @@ "integrity": "sha512-hfS5tE8bnNiNvEOEkm8HElUHroYwlqMMENEzELymy77+tJ6m+gA2krtHl5hxJaj71OlpC2cHZbdSMX1/YEqEkA==", "dev": true }, + "capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, "capture-exit": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", @@ -50045,6 +50560,26 @@ "supports-color": "^5.3.0" } }, + "change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dev": true, + "requires": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -50496,6 +51031,12 @@ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true }, + "color2k": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.2.tgz", + "integrity": "sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==", + "dev": true + }, "colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", @@ -50508,6 +51049,12 @@ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true }, + "colorjs.io": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.4.5.tgz", + "integrity": "sha512-yCtUNCmge7llyfd/Wou19PMAcf5yC3XXhgFoAh6zsO2pGswhUPBaaUh8jzgHnXtXuZyFKzXZNAnyF5i+apICow==", + "dev": true + }, "columnify": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz", @@ -50802,6 +51349,17 @@ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, + "constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, "constants-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", @@ -53699,6 +54257,12 @@ "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", "dev": true }, + "expr-eval": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", + "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==", + "dev": true + }, "express": { "version": "4.18.2", "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", @@ -55353,6 +55917,16 @@ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true }, + "header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, "highlight.js": { "version": "10.7.3", "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", @@ -63381,6 +63955,16 @@ "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", "dev": true }, + "path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "path-dirname": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", @@ -63569,6 +64153,23 @@ "source-map-js": "^1.0.2" } }, + "postcss-calc-ast-parser": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/postcss-calc-ast-parser/-/postcss-calc-ast-parser-0.1.4.tgz", + "integrity": "sha512-CebpbHc96zgFjGgdQ6BqBy6XIUgRx1xXWCAAk6oke02RZ5nxwo9KQejTg8y7uYEeI9kv8jKQPYjoe6REsY23vw==", + "dev": true, + "requires": { + "postcss-value-parser": "^3.3.1" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + } + } + }, "postcss-flexbugs-fixes": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz", @@ -66052,6 +66653,17 @@ } } }, + "sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, "serialize-javascript": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", @@ -66290,6 +66902,16 @@ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", "dev": true }, + "snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -67168,6 +67790,91 @@ "through": "^2.3.4" } }, + "style-dictionary": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.1.tgz", + "integrity": "sha512-yYU9Z/J8Znj9T9oJVjo8VOYamrOxv0UbBKPjhSt+PharxrhyQCM4RWb71fgEfv2pK9KO8G83/0ChDNQZ1mn0wQ==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.0", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.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" + } + } + } + }, "style-loader": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", @@ -68315,6 +69022,12 @@ "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", "dev": true }, + "tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", + "dev": true + }, "titleize": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", @@ -69428,6 +70141,24 @@ } } }, + "upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, + "upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + } + }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", diff --git a/packages/calcite-design-tokens/support/token-transformer/format/scss.test.ts b/packages/calcite-design-tokens/support/token-transformer/format/scss.test.ts deleted file mode 100644 index ad9f1f9a20e..00000000000 --- a/packages/calcite-design-tokens/support/token-transformer/format/scss.test.ts +++ /dev/null @@ -1,58 +0,0 @@ -const createPropertyFormatterCallback = jest.fn((token) => `--${token.name}: blue;`); -const formattedVariables = jest.fn((tokens) => tokens.dictionary.allTokens.map(createPropertyFormatterCallback)); -const fileHeader = jest.fn(() => ""); - -jest.mock("style-dictionary", () => { - const originalModule = jest.requireActual("style-dictionary"); - return { - __esModule: false, - ...originalModule, - formatHelpers: { - formattedVariables, - fileHeader, - }, - }; -}); - -import { formatSCSS } from "./scss"; - -const mockTokens = [ - { - name: "core-token-example", - value: "blue", - path: ["core", "token", "example"], - original: { - value: "blue", - }, - filePath: "core.json", - isSource: true, - }, -]; -const transformedTokens = mockTokens.reduce((acc, v) => { - acc[v.name] = v; - return acc; -}, {}); - -const mock = { - dictionary: { - allTokens: mockTokens, - tokens: transformedTokens, - allProperties: mockTokens, - properties: transformedTokens, - usesReference: () => true, - getReferences: () => mockTokens, - }, - file: { - destination: "calciteLight.scss", - }, - formattedTokenSet: [`@mixin calcite-theme-light() {`, "--core-token-example: blue"], - options: {}, -}; - -describe("formatting CSS Variable output", () => { - it("should format values", () => { - const cssFile = formatSCSS({ dictionary: mock.dictionary, file: mock.file, options: mock.options }); - expect(cssFile).toContain(mock.formattedTokenSet[0]); - expect(cssFile).toContain(mock.formattedTokenSet[1]); - }); -}); diff --git a/packages/calcite-design-tokens/support/token-transformer/utils/sortAllTokens.ts b/packages/calcite-design-tokens/support/token-transformer/utils/sortAllTokens.ts index fee8ced6f76..99d9c5e7d6a 100644 --- a/packages/calcite-design-tokens/support/token-transformer/utils/sortAllTokens.ts +++ b/packages/calcite-design-tokens/support/token-transformer/utils/sortAllTokens.ts @@ -1,11 +1,11 @@ import { Dictionary } from "style-dictionary/types/Dictionary"; -import StyleDictionary from "style-dictionary"; +import { default as StyleDictionary } from "style-dictionary"; import { TransformedToken } from "style-dictionary/types/TransformedToken"; export function sortAllTokens(dictionary: Dictionary, outputReferences: boolean): TransformedToken[] { let tokens = dictionary.allTokens; if (outputReferences) { - tokens = [...dictionary.allTokens].sort(StyleDictionary.formatHelpers.sortByReference(dictionary)); + tokens = [...dictionary.allTokens].sort(StyleDictionary.formatHelpers["sortByReference"](dictionary)); } return tokens; From b1fda1f69817b71f210d380c6145e3eedc3da72f Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Thu, 5 Oct 2023 15:20:46 -0700 Subject: [PATCH 694/696] ci: update chromatic workflow --- .github/workflows/chromatic.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 9db7452624b..0d6924e18d0 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -18,6 +18,7 @@ jobs: with: node-version-file: package.json - run: npm install + - run: npm --workspace="packages/calcite-design-tokens" run build - name: Publish to Chromatic uses: chromaui/action@v1 with: From 11f8b56001b9678c3d06ee6231f488c53234cb2c Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 9 Oct 2023 10:04:44 -0700 Subject: [PATCH 695/696] fix: remove template components from tokens --- package-lock.json | 1 + .../src/component/[template-comp-name].json | 177 ------------- .../src/component/accordion_backup.json | 238 ------------------ .../src/component/action-bar-grid.json | 25 -- .../src/component/action-bar.json | 25 -- .../src/component/action-pad-grid.json | 25 -- .../src/component/action-pad.json | 25 -- .../src/component/action.json | 25 -- .../src/component/block-section.json | 25 -- .../src/component/block.json | 25 -- .../src/component/card.json | 25 -- .../src/component/color-picker.json | 25 -- .../src/component/date-picker.json | 25 -- .../src/component/filter.json | 25 -- .../src/component/input-date-picker.json | 25 -- .../src/component/input-datetime-local.json | 25 -- .../src/component/input-email.json | 25 -- .../src/component/input-file.json | 25 -- .../src/component/input-month.json | 25 -- .../src/component/input-number.json | 25 -- .../src/component/input-password.json | 25 -- .../src/component/input-search.json | 25 -- .../src/component/input-telephone.json | 25 -- .../src/component/input-text.json | 25 -- .../src/component/input-week.json | 25 -- .../src/component/modal.json | 25 -- .../src/component/pagination.json | 25 -- .../src/component/panel-header.json | 25 -- .../src/component/slider-histogram.json | 25 -- .../src/component/slider.json | 25 -- .../src/component/tab-title.json | 25 -- .../src/component/tabs.json | 25 -- .../src/component/textarea.json | 25 -- .../src/component/time-picker.json | 25 -- 34 files changed, 1 insertion(+), 1190 deletions(-) delete mode 100644 packages/calcite-design-tokens/src/component/[template-comp-name].json delete mode 100644 packages/calcite-design-tokens/src/component/accordion_backup.json diff --git a/package-lock.json b/package-lock.json index 076b71f85e4..886d63e855d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -40889,6 +40889,7 @@ } }, "packages/calcite-design-tokens": { + "name": "@esri/calcite-design-tokens", "version": "1.0.0" }, "packages/eslint-plugin-calcite-components": { diff --git a/packages/calcite-design-tokens/src/component/[template-comp-name].json b/packages/calcite-design-tokens/src/component/[template-comp-name].json deleted file mode 100644 index 28be1f3d8f3..00000000000 --- a/packages/calcite-design-tokens/src/component/[template-comp-name].json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "[comp-name]": { - "font": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - }, - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.1.dark", - "type": "color" - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.background.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.background.dark", - "type": "color" - } - } - }, - "foreground": { - "light": { - "value": "$semantic.ui.color.foreground.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.2.dark", - "type": "color" - } - }, - "border-radius": { - "sm": { - "value": "$core.border.border-radius.4", - "type": "borderRadius" - }, - "md": { - "value": "$core.border.border-radius.5", - "type": "borderRadius" - }, - "lg": { - "value": "$core.border.border-radius.6", - "type": "borderRadius" - } - }, - "border-width": { - "sm": { - "value": "$core.border.border-width.1", - "type": "borderWidth" - }, - "md": { - "value": "$core.border.border-width.2", - "type": "borderWidth" - }, - "lg": { - "value": "$core.border.border-width.4", - "type": "borderWidth" - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.11", - "type": "sizing" - } - }, - "space-between": { - "sm": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.11", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.14", - "type": "spacing" - } - }, - "space-around": { - "sm": { - "value": "$core.spacing.7", - "type": "spacing" - }, - "md": { - "value": "$core.spacing.9", - "type": "spacing" - }, - "lg": { - "value": "$core.spacing.11", - "type": "spacing" - } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - } - } -} diff --git a/packages/calcite-design-tokens/src/component/accordion_backup.json b/packages/calcite-design-tokens/src/component/accordion_backup.json deleted file mode 100644 index c384a7c7cbd..00000000000 --- a/packages/calcite-design-tokens/src/component/accordion_backup.json +++ /dev/null @@ -1,238 +0,0 @@ -{ - "accordion": { - "heading": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - }, - "description": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "font": { - "sm": { - "value": "$semantic.font.default.bold.-2h", - "type": "typography" - }, - "md": { - "value": "$semantic.font.default.bold.-1h", - "type": "typography" - }, - "lg": { - "value": "$semantic.font.default.bold.0h", - "type": "typography" - } - }, - "icon": { - "default": { - "light": { - "value": "$semantic.ui.color.text.3.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.3.dark", - "type": "color" - } - }, - "expanded": { - "light": { - "value": "$semantic.ui.color.text.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.text.1.dark", - "type": "color" - } - } - }, - "background": { - "default": { - "light": { - "value": "$semantic.ui.color.foreground.1.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.foreground.1.dark", - "type": "color" - } - } - }, - "comp-size": { - "sm": { - "value": "$core.sizing.9", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.11", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.14", - "type": "sizing" - } - }, - "icon-size": { - "sm": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "md": { - "value": "$core.sizing.7", - "type": "sizing" - }, - "lg": { - "value": "$core.sizing.9", - "type": "sizing" - } - }, - "default": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - } - } - }, - "minimal": { - "space-between": { - "sm": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.5}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.7}", - "type": "spacing" - } - }, - "text": { - "space-between": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.1}", - "type": "spacing" - } - } - }, - "space-around": { - "top-bottom": { - "sm": { - "value": "{core.spacing.1}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.3}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.5}", - "type": "spacing" - } - }, - "left-right": { - "sm": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "md": { - "value": "{core.spacing.none}", - "type": "spacing" - }, - "lg": { - "value": "{core.spacing.none}", - "type": "spacing" - } - } - } - }, - "border-width": { - "value": "{core.border.border-width.0}", - "type": "borderWidth" - }, - "border": { - "light": { - "value": "$semantic.ui.color.border.2.light", - "type": "color" - }, - "dark": { - "value": "$semantic.ui.color.border.2.dark", - "type": "color" - } - } - } -} diff --git a/packages/calcite-design-tokens/src/component/action-bar-grid.json b/packages/calcite-design-tokens/src/component/action-bar-grid.json index 8a749941084..5322ee46fa7 100644 --- a/packages/calcite-design-tokens/src/component/action-bar-grid.json +++ b/packages/calcite-design-tokens/src/component/action-bar-grid.json @@ -61,31 +61,6 @@ "value": "$core.spacing.none", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } diff --git a/packages/calcite-design-tokens/src/component/action-bar.json b/packages/calcite-design-tokens/src/component/action-bar.json index 6ecd954804c..c8ee0cda60a 100644 --- a/packages/calcite-design-tokens/src/component/action-bar.json +++ b/packages/calcite-design-tokens/src/component/action-bar.json @@ -61,31 +61,6 @@ "value": "$core.spacing.none", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } diff --git a/packages/calcite-design-tokens/src/component/action-pad-grid.json b/packages/calcite-design-tokens/src/component/action-pad-grid.json index 049b053aefa..6c25daf4a56 100644 --- a/packages/calcite-design-tokens/src/component/action-pad-grid.json +++ b/packages/calcite-design-tokens/src/component/action-pad-grid.json @@ -62,31 +62,6 @@ "type": "spacing" } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "shadow": { "sm": { "value": "{core.box-shadow.1}", diff --git a/packages/calcite-design-tokens/src/component/action-pad.json b/packages/calcite-design-tokens/src/component/action-pad.json index 1dc431ea4df..738d3f29afd 100644 --- a/packages/calcite-design-tokens/src/component/action-pad.json +++ b/packages/calcite-design-tokens/src/component/action-pad.json @@ -62,31 +62,6 @@ "type": "spacing" } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "shadow": { "sm": { "value": "{core.box-shadow.1}", diff --git a/packages/calcite-design-tokens/src/component/action.json b/packages/calcite-design-tokens/src/component/action.json index 208fd000389..431ce958e1d 100644 --- a/packages/calcite-design-tokens/src/component/action.json +++ b/packages/calcite-design-tokens/src/component/action.json @@ -118,31 +118,6 @@ "type": "spacing" } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "indicator-size": { "sm": { "value": "$core.sizing.3", diff --git a/packages/calcite-design-tokens/src/component/block-section.json b/packages/calcite-design-tokens/src/component/block-section.json index b00dd8e69e8..9f25113987e 100644 --- a/packages/calcite-design-tokens/src/component/block-section.json +++ b/packages/calcite-design-tokens/src/component/block-section.json @@ -114,31 +114,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "chevron-size": { "md": { "value": "$core.sizing.7", diff --git a/packages/calcite-design-tokens/src/component/block.json b/packages/calcite-design-tokens/src/component/block.json index 792ee23c212..3276f9e7a70 100644 --- a/packages/calcite-design-tokens/src/component/block.json +++ b/packages/calcite-design-tokens/src/component/block.json @@ -170,31 +170,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "chevron-size": { "md": { "value": "$core.sizing.7", diff --git a/packages/calcite-design-tokens/src/component/card.json b/packages/calcite-design-tokens/src/component/card.json index 4c5d9b52f93..876fe993bbb 100644 --- a/packages/calcite-design-tokens/src/component/card.json +++ b/packages/calcite-design-tokens/src/component/card.json @@ -80,31 +80,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "space-around": { "md": { "value": "$core.spacing.5", diff --git a/packages/calcite-design-tokens/src/component/color-picker.json b/packages/calcite-design-tokens/src/component/color-picker.json index bfb2d7acbac..eb85ed9490b 100644 --- a/packages/calcite-design-tokens/src/component/color-picker.json +++ b/packages/calcite-design-tokens/src/component/color-picker.json @@ -143,31 +143,6 @@ "value": "$core.spacing.7", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } diff --git a/packages/calcite-design-tokens/src/component/date-picker.json b/packages/calcite-design-tokens/src/component/date-picker.json index 1ac23bcfbe5..dfec9a09543 100644 --- a/packages/calcite-design-tokens/src/component/date-picker.json +++ b/packages/calcite-design-tokens/src/component/date-picker.json @@ -290,31 +290,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "day": { "space-between": { "sm": { diff --git a/packages/calcite-design-tokens/src/component/filter.json b/packages/calcite-design-tokens/src/component/filter.json index d25b6c24588..972424d84fe 100644 --- a/packages/calcite-design-tokens/src/component/filter.json +++ b/packages/calcite-design-tokens/src/component/filter.json @@ -140,31 +140,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "space-around": { "left-right": { "sm": { diff --git a/packages/calcite-design-tokens/src/component/input-date-picker.json b/packages/calcite-design-tokens/src/component/input-date-picker.json index 527f475ed77..cd09c9aa1b7 100644 --- a/packages/calcite-design-tokens/src/component/input-date-picker.json +++ b/packages/calcite-design-tokens/src/component/input-date-picker.json @@ -198,31 +198,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "arrow-size": { "sm": { "value": "$core.sizing.7", diff --git a/packages/calcite-design-tokens/src/component/input-datetime-local.json b/packages/calcite-design-tokens/src/component/input-datetime-local.json index fe38c1f122f..551b2c784ed 100644 --- a/packages/calcite-design-tokens/src/component/input-datetime-local.json +++ b/packages/calcite-design-tokens/src/component/input-datetime-local.json @@ -218,31 +218,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/input-email.json b/packages/calcite-design-tokens/src/component/input-email.json index f8d1a851cd0..7db385cf697 100644 --- a/packages/calcite-design-tokens/src/component/input-email.json +++ b/packages/calcite-design-tokens/src/component/input-email.json @@ -232,31 +232,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/input-file.json b/packages/calcite-design-tokens/src/component/input-file.json index af0aea503cd..45e66bb131b 100644 --- a/packages/calcite-design-tokens/src/component/input-file.json +++ b/packages/calcite-design-tokens/src/component/input-file.json @@ -232,31 +232,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/input-month.json b/packages/calcite-design-tokens/src/component/input-month.json index d19a3456868..d7ac4c10250 100644 --- a/packages/calcite-design-tokens/src/component/input-month.json +++ b/packages/calcite-design-tokens/src/component/input-month.json @@ -232,31 +232,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/input-number.json b/packages/calcite-design-tokens/src/component/input-number.json index 184ce785e4e..5e9a74390fe 100644 --- a/packages/calcite-design-tokens/src/component/input-number.json +++ b/packages/calcite-design-tokens/src/component/input-number.json @@ -232,31 +232,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/input-password.json b/packages/calcite-design-tokens/src/component/input-password.json index 8c35f83cc57..4cebb82f487 100644 --- a/packages/calcite-design-tokens/src/component/input-password.json +++ b/packages/calcite-design-tokens/src/component/input-password.json @@ -232,31 +232,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/input-search.json b/packages/calcite-design-tokens/src/component/input-search.json index ace08815333..aa97e315a20 100644 --- a/packages/calcite-design-tokens/src/component/input-search.json +++ b/packages/calcite-design-tokens/src/component/input-search.json @@ -232,31 +232,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/input-telephone.json b/packages/calcite-design-tokens/src/component/input-telephone.json index 1c029ef0fbb..674543b561e 100644 --- a/packages/calcite-design-tokens/src/component/input-telephone.json +++ b/packages/calcite-design-tokens/src/component/input-telephone.json @@ -232,31 +232,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/input-text.json b/packages/calcite-design-tokens/src/component/input-text.json index dd72337b355..3dc7bee8df8 100644 --- a/packages/calcite-design-tokens/src/component/input-text.json +++ b/packages/calcite-design-tokens/src/component/input-text.json @@ -232,31 +232,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/input-week.json b/packages/calcite-design-tokens/src/component/input-week.json index 6c4766ec929..a963ddc9872 100644 --- a/packages/calcite-design-tokens/src/component/input-week.json +++ b/packages/calcite-design-tokens/src/component/input-week.json @@ -232,31 +232,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "opacity": { "placeholder": { "light": { diff --git a/packages/calcite-design-tokens/src/component/modal.json b/packages/calcite-design-tokens/src/component/modal.json index 1d232964f5a..245b209e5f0 100644 --- a/packages/calcite-design-tokens/src/component/modal.json +++ b/packages/calcite-design-tokens/src/component/modal.json @@ -216,31 +216,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "border-width": { "default": { "sm": { diff --git a/packages/calcite-design-tokens/src/component/pagination.json b/packages/calcite-design-tokens/src/component/pagination.json index 8aa9787ce6d..84453f3bb27 100644 --- a/packages/calcite-design-tokens/src/component/pagination.json +++ b/packages/calcite-design-tokens/src/component/pagination.json @@ -147,31 +147,6 @@ "value": "$core.spacing.11", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } diff --git a/packages/calcite-design-tokens/src/component/panel-header.json b/packages/calcite-design-tokens/src/component/panel-header.json index b8df3ab480e..ecf5ed905ff 100644 --- a/packages/calcite-design-tokens/src/component/panel-header.json +++ b/packages/calcite-design-tokens/src/component/panel-header.json @@ -83,31 +83,6 @@ "type": "spacing" } } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } diff --git a/packages/calcite-design-tokens/src/component/slider-histogram.json b/packages/calcite-design-tokens/src/component/slider-histogram.json index 60d588ac191..925f7e77f2d 100644 --- a/packages/calcite-design-tokens/src/component/slider-histogram.json +++ b/packages/calcite-design-tokens/src/component/slider-histogram.json @@ -176,31 +176,6 @@ "type": "spacing" } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "tick": { "default": { "background": { diff --git a/packages/calcite-design-tokens/src/component/slider.json b/packages/calcite-design-tokens/src/component/slider.json index 360133f67fa..bee96cfa2b7 100644 --- a/packages/calcite-design-tokens/src/component/slider.json +++ b/packages/calcite-design-tokens/src/component/slider.json @@ -176,31 +176,6 @@ "type": "spacing" } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "tick": { "default": { "background": { diff --git a/packages/calcite-design-tokens/src/component/tab-title.json b/packages/calcite-design-tokens/src/component/tab-title.json index 042fe740f66..372276c6a2f 100644 --- a/packages/calcite-design-tokens/src/component/tab-title.json +++ b/packages/calcite-design-tokens/src/component/tab-title.json @@ -212,31 +212,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "border": { "active": { "light": { diff --git a/packages/calcite-design-tokens/src/component/tabs.json b/packages/calcite-design-tokens/src/component/tabs.json index 29efecc555e..3c97c1795b6 100644 --- a/packages/calcite-design-tokens/src/component/tabs.json +++ b/packages/calcite-design-tokens/src/component/tabs.json @@ -226,31 +226,6 @@ } } }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } - }, "border": { "active": { "light": { diff --git a/packages/calcite-design-tokens/src/component/textarea.json b/packages/calcite-design-tokens/src/component/textarea.json index d81a12e450a..720944bf5fd 100644 --- a/packages/calcite-design-tokens/src/component/textarea.json +++ b/packages/calcite-design-tokens/src/component/textarea.json @@ -195,31 +195,6 @@ "type": "spacing" } } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } diff --git a/packages/calcite-design-tokens/src/component/time-picker.json b/packages/calcite-design-tokens/src/component/time-picker.json index 4914a1f891d..1a3a20711ee 100644 --- a/packages/calcite-design-tokens/src/component/time-picker.json +++ b/packages/calcite-design-tokens/src/component/time-picker.json @@ -133,31 +133,6 @@ "value": "$core.spacing.11", "type": "spacing" } - }, - "[specific-element]": { - "font": { - "sm": { - "value": { - "typography": "$[comp-name].font.sm", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "md": { - "value": { - "typography": "$[comp-name].font.md", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - }, - "lg": { - "value": { - "typography": "$[comp-name].font.lg", - "fontWeights": "$core.font.font-weight.medium-italic" - }, - "type": "composition" - } - } } } } From 601ce736ca315ee6d96cf5a31a1f95c56b5ee225 Mon Sep 17 00:00:00 2001 From: Ali Stump Date: Mon, 9 Oct 2023 10:06:38 -0700 Subject: [PATCH 696/696] ci(tokens): update package.json with correct urls remove missing JS files (will be in v2) point repo and bugs urls to calcite-design-system --- packages/calcite-design-tokens/package.json | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/packages/calcite-design-tokens/package.json b/packages/calcite-design-tokens/package.json index f9942e1ebd0..9cf1aaf3dd9 100644 --- a/packages/calcite-design-tokens/package.json +++ b/packages/calcite-design-tokens/package.json @@ -2,17 +2,15 @@ "name": "@esri/calcite-design-tokens", "version": "1.0.0", "description": "Esri's Calcite Design System Tokens", - "homepage": "https://github.com/Esri/calcite-design-tokens", "keywords": [ "Calcite", "Calcite Design System", "design tokens", "tokens" ], - "main": "./dist/js/calcite-headless.js", + "main": "./dist/scss/calcite-headless.scss", "type": "module", "exports": { - ".": "./dist/js/calcite-headless.js", "./css": "./dist/css/calcite-headless.css", "./css/brand/dark": "./dist/css/brand-dark.css", "./css/brand/light": "./dist/css/brand-light.css", @@ -24,22 +22,17 @@ "./scss/brand/light": "./dist/scss/brand-light.scss", "./scss/calcite/dark": "./dist/scss/calcite-dark.scss", "./scss/calcite/light": "./dist/scss/calcite-light.scss", - "./scss/headless": "./dist/scss/calcite-headless.scss", - "./js/brand/dark": "./dist/js/brand-dark.js", - "./js/brand/light": "./dist/js/brand-light.js", - "./js/calcite/dark": "./dist/js/calcite-dark.js", - "./js/calcite/light": "./dist/js/calcite-light.js", - "./js/headless": "./dist/js/calcite-headless.js" + "./scss/headless": "./dist/scss/calcite-headless.scss" }, "repository": { "type": "git", - "url": "git://github.com/Esri/calcite-design-tokens.git" + "url": "git://github.com/Esri/calcite-design-system.git" }, "author": { "name": "Esri" }, "bugs": { - "url": "https://github.com/Esri/calcite-design-tokens/issues" + "url": "https://github.com/Esri/calcite-design-system/issues" }, "scripts": { "build": "ts-node --esm support/run.ts",